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
|
#apps_outer {
background: transparent;
border: none;
}
#apps_outer::after {
display: none;
}
#apps_path {
fill: #fff;
}
#apps_outer:hover #apps_path {
opacity: .75;
}
#apps_outer:active #apps_path, #apps_outer:focus #apps_path {
opacity: .5;
}
.app-icon {
width: 24px;
height: 24px;
vertical-align: middle;
margin-right: 5px;
filter: invert(1);
}
.app-title {
vertical-align: middle;
}
.nav-item.dropdown {
float: right;
display: block;
position: fixed;
right: 10px;
}
.nav-item.dropdown, .nav-item.dropdown * {
outline: none !important;
}
#apps, #apps * {
color: #212529 !important;
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
#apps {
filter: invert(1);
}
#separator {
margin-top: 59px;
}
|