-
Notifications
You must be signed in to change notification settings - Fork 13
/
admin_sidebar_style.css
91 lines (71 loc) · 1.45 KB
/
admin_sidebar_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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
.sidenav {
width: 256px;
background-color: #eee;
height: 90vh;
float: left;
overflow-y: auto;
box-shadow: 1px 1px 5px #888888;
}
.sidenav a {
font-family: OpenSans-Regular;
font-size: 19px;
color: #212121;
display: block;
padding: 22px 16px;
text-decoration: none;
}
.sidenav a:hover {
background-color: #ddd;
}
.sidenav a[id="label"] {
font-family: OpenSans-Bold;
font-size: 22px;
color: #212121;
display: block;
padding: 11px;
text-decoration: none;
border-top: 1px solid #212121;
border-bottom: 1px solid #212121;
}
.sidenav a[id="label"]:hover {
background-color: transparent;
}
.sidenav a.active {
background-color: #ccc;
}
/* Sticky Sidebar */
.sidenav-fixed {
height: auto;
top: 53px;
z-index: 100;
bottom: 0;
position: fixed;
}
.sidenav a[id="closebtn"]
{
display: none;
}
@media screen and (max-width: 855px) {
.sidenav {
height: 100vh;
width: 0;
margin-top: -53px;
z-index: 100;
top: 131px;
background-color: #eee;
overflow-x: hidden;
transition: 0.5s;
box-shadow: 3px 3px 20px #000000;
}
.sidenav a[id="closebtn"] {
font-family: OpenSans-Regular;
font-size: 19px;
color: #212121;
display: block;
margin-left: 200px;
}
.sidenav.sidenav-fixed.responsive {
top: 53px;
z-index: 100;
}
}