blob: a9f3b6d897b073fbf37922dcf1f2b587cd3dc966 (
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
51
52
53
|
@import "bulma";
.expander
{
position: absolute;
font-size: 1.5rem;
transform: rotate(0deg);
top: -3px;
left: 0;
&::before
{
content: "\203A";
}
&.expanded
{
left: 4px;
top: 2px;
transform: rotate(90deg);
}
}
.sidebar
{
display: flex;
position: fixed;
overflow-x: hidden;
overflow-y: auto;
ul
{
li
{
line-height: 2rem;
padding-left: 1em;
position: relative;
a
{
color: $text;
&:not(.expander)
{
&:hover
{
text-decoration: underline;
}
}
}
}
}
}
|