blob: c3ae24c2ff5e85e239ad7e0cce000d6621841c31 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
.bar {
background-color: transparent;
color: $tx;
font-family: 'FiraCode Nerd Font';
}
.song, .cava {
background-color: $bg;
color: $tx;
padding: 0 16px;
}
.song {
border-radius: 24px 4px 4px 24px;
}
.cava {
border-radius: 4px 24px 24px 4px;
}
.status {
background-color: $bg;
border-radius: 999px;
padding: 0 12px;
}
.status > * {
margin: 0 8px;
}
.volume { color: $re; }
.network { color: $or; }
.brightness { color: $ye; }
.battery { color: $gr; }
.clock { color: $bl; }
.power {
color: $pu;
font-size: 1.5em;
}
.tags {
background-color: $bg;
border-radius: 999px;
padding: 8px;
}
.tags button {
color: $tx;
border: 2.5px solid $ui3;
border-radius: 999px;
padding: 8px 8px;
margin: 0 3px;
}
.tags .focused {
background-color: $ui3;
}
.tags .occupied {
border-color: $re;
}
.tags .occupied.focused {
background-color: $re;
}
scale {
padding: 0 16px;
}
scale trough {
min-width: 100px;
background-color: $re;
}
|