-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSideBarstyle.css
More file actions
66 lines (56 loc) · 1.24 KB
/
SideBarstyle.css
File metadata and controls
66 lines (56 loc) · 1.24 KB
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
.main {
margin-left: 140px; Same width as the sidebar + left position in px
font-size: 28px; Increased text to enable scrolling
padding: 0px 10px;
font-size: 45px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 400px;}
.sidenav a {font-size: 18px;}
}
body {margin:0}
#icon-bar {
width: 90px;
top: 31%;
background-color: #832;
position: fixed;
display: none;
}
#icon-bar i {
font-size: 20px;
}
#icon-bar a {
display: block;
text-align: center;
padding: 6px;
transition: all 0.3s ease;
color: white;
font-size: 16px;
}
#icon-bar a:hover {
background-color: #000;
}
.active {
background-color: #832;
}
.st0{fill:white;}
.container {
display: inline-block;
cursor: pointer;
}
.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #333;
margin: 6px 0;
transition: 0.4s;
}
.change .bar1 {
-webkit-transform: rotate(-45deg) translate(-9px, 6px);
transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
-webkit-transform: rotate(45deg) translate(-8px, -8px);
transform: rotate(45deg) translate(-8px, -8px);
}