blob: 470b730c1bbc9cad53c362c3ea6cce27728675eb (
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
|
* {
border: none;
border-radius: 0;
/*font-family: "PragmataPro Liga";*/
font-family: "Input";
font-size: 13px;
min-height: 0;
}
window#waybar {
background: rgba(43, 48, 59, 0.5);
color: white;
}
window#waybar > box {
padding: 0 8px 0 0;
}
#hardware * {
margin: 0px 4px 0 4px;
}
tooltip {
background: rgba(43, 48, 59, 0.5);
border: 1px solid rgba(100, 114, 125, 0.5);
}
tooltip label {
color: white;
}
#workspaces button {
padding: 0 3px;
background: transparent;
color: white;
}
#workspaces button.focused {
background: #658594;
}
#mode {
background: #64727D;
border-bottom: 3px solid white;
}
@keyframes blink {
to {
color: red;
}
}
#battery.warning:not(.charging) {
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: steps(12);
animation-iteration-count: infinite;
animation-direction: alternate;
}
|