blob: 8842b2876009e18aa7fc87fa305511398c279798 (
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
75
76
|
* {
font-family: 'SauceCodePro NF';
}
window {
background: #282828;
}
#pulseaudio {
font-size: 12px;
}
#bluetooth {
padding-left: 10px;
padding-right: 10px;
font-size: 12px;
}
#workspaces {
padding: 0px;
}
#workspaces button {
padding: 0px;
border-radius: 0px;
min-width: 20px;
min-height: 20px;
border: none;
font-size: 12px;
}
#workspaces button.active {
background: #b16286;
color: #1d2021;
}
#workspaces button:hover {
background: #3c3836;
padding: 0px;
border: none;
}
#workspaces button.active:hover {
background: #b16286;
padding: 0px;
}
#battery {
background: #458588;
color: #282828;
margin-right: 5px;
padding-left: 5px;
padding-right: 5px;
}
#battery.charging {
background: #689d6a;
}
#battery.warning:not(.charging) {
background: #fe8019;
}
#battery.critical:not(.charging) {
background: #fb4934;
}
.modules-left {
margin-top: 0px;
}
.modules-right {
padding-left: 5px;
padding-right: 5px;
background: #3c3836;
}
|