blob: e4565c8886338b53508ebaa3f2d33645970fe1d4 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
* {
border-radius: 0;
border: none;
margin: 0;
min-height: 0;
padding: 0;
}
#waybar {
font-family: Source Code Pro;
font-size: 15px;
}
window#waybar {
background-color: rgba(43, 48, 59, 0.9);
color: #ffffff;
}
#workspaces button {
padding: 0 3px;
background-color: transparent;
color: #888888;
}
#workspaces button.focused {
background-color: #285577;
border: 1px solid #4c7899;
color: #ffffff;
}
#workspaces button.urgent {
background-color: #900000;
border: 1px solid #2f343a;
color: #ffffff;
}
#clock,
#battery,
#network,
#pulseaudio,
#tray,
#mode {
padding-left: 10px;
padding-right: 10px;
}
#mode {
/* No styles */
}
#tray {
/* No styles */
}
#clock {
/* No styles */
}
#battery {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#battery.discharging {
color: #90a1ad;
}
#battery.charging {
color: #fffff8;
}
#battery.warning {
border-bottom: 2px solid #ff9e21;
}
#battery.critical {
border-bottom: 2px solid #ff3121;
}
#network {
/* No styles */
}
#network.disconnected {
color: orange;
}
#pulseaudio {
/* No styles */
}
#pulseaudio.muted {
color: #90a1ad;
}
|