blob: e4c4baa6a50aed59ad59a15b4b5963441f20cb93 (
plain) (
blame)
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
|
* {
font-family: Terminus;
}
window#waybar {
background-color: #111;
color: #d8d8d8;
}
button {
box-shadow: inset 0 -3px transparent;
border: none;
border-radius: 0;
}
button:hover {
background: inherit;
box-shadow: inset 0 -3px #d8d8d8;
}
#tags button {
color: #6c6c6c;
}
#tags button:hover {
text-shadow: inherit;
}
#tags button.focused {
box-shadow: inset 0 -3px #d8d8d8;
}
#tags button.urgent {
color: #f33;
}
#tags button.occupied {
color: #d8d8d8;
}
#memory.warning {
color: #f93;
}
#memory.critical {
color: #f33;
}
#battery.low {
color: #f33;
}
#network,
#tray,
#cpu,
#memory,
#wireplumber,
#battery,
#backlight,
#custom-clock {
padding: 0 10px;
}
|