blob: a42db219f5d06a310b4ef1ecbed2b690f737d1a4 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
* {
font-family: UbuntuMono Nerd Font Mono;
font-weight: 500;
font-size: 16px;
}
window#waybar {
background-color: rgba(27, 27, 27, 1);
color: #f2f0fa;
transition-property: background-color;
transition-duration: .5s;
}
button {
box-shadow: inset 0 -3px transparent;
border: none;
border-radius: 0px;
}
button:hover {
background: inherit;
}
#custom-launcher {
margin: 0 10px;
padding: 0 10px;
}
#workspaces {
border-radius: 10px;
background-color: #f2f0fa;
color: #272727;
padding: 0 10px;
}
#workspaces button {
padding: 0 10px;
color: #272727;
background-color: #f2f0fa;
}
#workspaces button.active {
color: #272727;
background-color: #f2f0fa;
}
#workspaces button.urgent {
color: #272727;
background-color: #f2f0fa;
}
#clock {
padding: 0 10px;
margin: 0 10px;
color: #f2f0fa;
border-radius: 0px;
}
#battery,
#cpu,
#backlight,
#tray {
padding: 0 10px;
margin: 0 0px;
background-color: #f2f0fa;
color: #272727;
}
#battery {
border-radius: 0px 10px 10px 0px;
}
#cpu {
border-radius: 10px 0px 0px 10px;
}
#tray {
border-radius: 10px;
margin: 0 10px;
}
#window,
#workspaces {
margin: 0 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
#battery.critical:not(.charging) {
background-color: #f53c3c;
color: #ffffff;
}
label:focus {
background-color: #000000;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
|