blob: a63c23acaaaf2bc2221cb45b27b38b5c827a0618 (
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
|
/* GTK Colours */
@define-color fg #eee;
@define-color mg #444;
@define-color bg #000;
* {
font-family: HackNerdFont, monospace;
font-size: 12px;
/* font-weight: normal; */
/* box-shadow: none; */
transition-property: background;
transition-duration: .5s;
}
button {
padding: 0;
}
label {
padding: 0 8px;
}
#waybar {
background: transparent;
}
#workspaces {
padding: 0;
}
#custom-menu {
padding:0 14px 0 10px;
}
#custom-menu:hover {
background: @fg;
color: @bg;
}
#tray {
padding: 0 8px;
}
|