blob: e3d93d128cf14d171836da0941fcee70195b877c (
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
|
#nav-header {
display: grid;
grid-template-columns: 64px 1fr;
margin: 30px 20px;
cursor: default;
}
#nav-header-icon {
background: rgba(17, 17, 17, .5);
width: 64px;
height: 64px;
border-radius: 999px;
}
#nav-header-names-outer {
margin-left: 15px;
display: flex;
align-items: center;
}
.nav-item-icon {
vertical-align: middle;
width: 24px;
margin-left: 10px;
}
.nav-item-name {
vertical-align: middle;
margin-left: 5px;
}
.nav-item {
padding: 7px 0;
border-left: 3px solid transparent;
border-radius: 5px;
margin-left: 5px;
cursor: default;
}
.nav-item.selected {
background: rgba(200, 200, 200, .25);
border-left: 3px solid var(--codename-light);
}
.nav-item:not(.selected):hover {
background: rgba(200, 200, 200, .1);
}
.nav-item:not(.selected):focus, .nav-item:not(.selected):active {
background: rgba(200, 200, 200, .25);
}
|