blob: 72b781069ac2191da345e3698846f3f508f166d4 (
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
|
/* GTK Colours */
@define-color fg #eee;
@define-color mg #888;
@define-color bg #000;
* {
font-family: "Hack Nerd Font", monospace;
font-size: 12px;
font-weight: normal;
text-shadow: none;
box-shadow: none;
transition-property: background;
transition-duration: .5s;
}
/* Colours */
/* #clock { color: lightblue; } */
/* #clock.calendar { color: pink; }*/
/* #wireplumber { color: #f1c40f; }*/
/* #battery { color: mediumpurple; }*/
/* #network.linked{ color: seagreen; }*/
/* #network.disconnected{ color: red; }*/
/* #bluetooth { color: royalblue; }*/
/* Bar */
window#waybar {
color: @fg;
background: rgba(0,0,0,0.8);
border-top: 1px solid rgba(255,255,255,0.3);
}
window#waybar.hidded {
opacity: 0.0;
}
/* Labels */
label.module {
padding: 4px 10px 2px 10px;
}
label:hover {
color: white;
}
/* Tray */
#tray {
background: @bg;
border: 1px solid @fg;
border-radius: 5px;
padding: 0 8px;
}
/* MENU */
#custom-menu {
padding:0 18px 0 14px;
}
#custom-menu:hover {
background: @fg;
color: @bg;
}
/* TASKBAR */
/*
#taskbar button {
color: @mg;
padding: 4px 10px 4px 10px;
border-radius: 0;
}
#taskbar button:hover {
color: @bg;
background: @fg;
}
*/
/* WORKSPACES & TASKBAR*/
#workspaces button,
#taskbar button {
color: @mg;
padding: 4px 10px 2px 10px;
border-radius: 0;
border:none;
}
#workspaces button:hover,
#workspaces button.focused:hover,
#taskbar button:hover {
color: @bg;
background: @fg;
}
#workspaces button.focused {
color: @fg;
}
#workspaces button.urgent {
color: red;
}
|