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
77
78
79
80
81
82
83
84
85
86
87
88
89
|
@keyframes blink {
to {
color: #FFF;
box-shadow: inset 0 -3px #FFF;
}
}
* {
font-family: "Iosevka Smooth";
font-size: 16px;
}
window#waybar {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
transition-property: background-color;
transition-duration: .5s;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each button name */
border: none;
border-radius: 0;
}
button:hover {
background: inherit;
}
#workspaces {
margin: 0 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#workspaces button {
color: #FFF;
padding: 0 5px;
background-color: transparent;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
}
#workspaces button.active {
background-color: rgba(0, 0, 0, 0.4);
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#backlight,
#battery,
#clock,
#custom-disk,
#custom-keyboard,
#network,
#wireplumber {
padding: 0 5px;
color: #FFF;
}
button:hover,
#workspaces button.active {
color: #FFF;
box-shadow: inset 0 -3px #FAA14F;
}
#battery.critical:not(.charging) {
color: #F53C3C;
box-shadow: inset 0 -3px #F53C3C;
animation-name: blink;
animation-duration: 0.65s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
|