-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (62 loc) · 1.17 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
;
}
body {
background: rgb(230, 230, 230);
}
.header {
display: flex;
position: relative;
}
.header .sidebar {
position: fixed;
width: 200px;
height: 100%;
background: rgb(6, 5, 61);
}
.sidebar .item h1 {
background: rgb(250, 205, 3);
color: #fff;
text-align: center;
padding: 10px;
margin-bottom: 0;
}
.sidebar li {
margin-top: 2px;
padding: 15px;
color: grey;
position: inherit;
}
.elemnts {
border-left: 1px solid transparent;
}
.elemnts .icons {
width: 25px;
color: rgb(250, 205, 3);
}
.elemnts:hover {
cursor: pointer;
color: rgb(250, 205, 3);
border-left-color: rgb(250, 205, 3);
background: rgb(36, 36, 75);
}
.top {
width: 100%-200px;
margin-left: 200px;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
}
.top .header1 {
padding: 15px;
background: rgb(255, 255, 255);
color: rgb(56, 55, 55);
text-align: center;
margin-bottom: 0;
}