blob: 76741642c0fec2381f4b536ff70fced6868eb7df (
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
|
* {
font-family: Iosevka Nerd Font;
font-size: 10pt;
min-height: 0;
}
#waybar {
background: @base;
color: @text;
}
#workspaces,
#clock,
#battery,
#wireplumber,
#bluetooth.connected,
#custom-power {
color: @text;
background: @surface0;
padding: 0.5rem 1rem;
border-radius: 1rem;
margin: 5px 0;
}
#workspaces button {
color: @lavender;
border-radius: 1rem;
padding: 0rem 0.75rem;
}
#workspaces button.active {
color: @sky;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: none;
border: none;
border-color: transparent;
padding: 0 0.75rem;
margin: 0;
}
#window {
font-size: 12pt;
}
#custom-launcher {
color: @blue;
font-size: 12pt;
padding: 0;
margin: 0;
margin-left: 1rem;
margin-right: 1rem;
}
#bluetooth.connected {
color: @blue;
}
#wireplumber {
color: @maroon;
border-radius: 1rem 0 0 1rem;
margin-left: 1rem;
}
#battery {
color: @green;
border-radius: 0;
}
#clock {
color: @blue;
border-radius: 0 1rem 1rem 0;
margin-right: 1rem;
}
#custom-power {
color: @rosewater;
margin-right: 1rem;
/* border: @rosewater 1px solid; */
}
|