blob: 49ca5afeafc710073c2b2ef450d0300b98718fb4 (
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
|
* {
font-family: "Hack Nerd Font", "Hack", monospace;
font-size: 12px;
box-shadow: none;
}
window#waybar {
background-color: #000;
border-bottom: 1px solid #444;
color: #eee;
transition-property: background-color;
transition-duration: .5s;
}
/* WORKSPACES */
#workspaces button {
padding: 0 8px;
background-color: transparent;
color: #aaa;
border: 1px solid black;
border-radius: 5px;
margin: 1px 0;
}
#workspaces button:hover {
background: #fff;
color: #000;
border: 1px solid black;
}
#workspaces button.focused {
border: 1px solid white;
box-shadow: none;
color: #fff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
/* PULSEAUDIO SLIDER */
#pulseaudio-slider slider {
min-height: 0px;
min-width: 0px;
opacity: 0;
background-image: none;
border: none;
box-shadow: none;
}
#pulseaudio-slider trough {
min-height: 10px;
min-width: 80px;
border-radius: 5px;
background-color: black;
}
#pulseaudio-slider highlight {
min-width: 10px;
border-radius: 5px;
background-color: green;
}
|