blob: 3755d4d01b172665dc21bdd5916435668b7787ef (
plain)
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
|
.wrapper {
display: flex;
width: 100%;
}
#sidebar {
width: 250px;
position: fixed;
/** Needs sticky navbar to work. */
top: 55px;
left: 0;
height: 100vh;
z-index: 999;
background: rgb(255, 255, 255, 0.35);
transition: all 0.3s;
}
#sidebar .sidebar-header {
padding: 20px;
/** TODO
background: #6d7fcc;
*/
}
#sidebar ul.components {
padding: 20px 0;
}
#sidebar ul p {
padding: 10px;
}
#sidebar ul li a {
padding: 10px;
font-size: 1.1em;
display: block;
}
#sidebar ul li a:hover {
/** TODO
color: #7386D5;
background: #fff;
*/
}
#sidebar ul li.active > a, a[aria-expanded="true"] {
/** TODO
color: #fff;
background: #6d7fcc;
*/
}
|