blob: 7d0143ac1d5ae8ae8de4d6156df9598717a96f09 (
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
|
* {
font-family: Material Design Icons, Rubik Medium;
font-size: 14px;
color: @base05;
}
window#waybar {
border-radius: 10px;
background: @base01;
border: 3px solid @base02;
}
#battery {
margin-right: 6px;
}
#workspaces button label {
font-size: 15px;
color: @base05;
transition: all 100ms ease-out;
}
#workspaces button.active label {
font-weight: bolder;
color: @base0A;
transition: all 100ms ease-out;
}
#battery {
color: @base0A;
}
|