-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
143 lines (127 loc) · 2.49 KB
/
style.css
File metadata and controls
143 lines (127 loc) · 2.49 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*style_11*/
* {
border: none;
border-radius: 0;
font-family: "Font Awesome 5 Free", Roboto, Helvetica, Arial, sans-serif;
font-size: 14px;
min-height: 0;
}
window#waybar {
background: #3c3836;
color: #ebdbb2;
}
tooltip {
border-radius: 12px;
background-color: #504945;
border: 1px solid #d65d0e;
}
/* Modules: Base Style */
#clock,
#custom-countdown,
#custom-todo,
#backlight,
#pulseaudio,
#custom-clip,
#custom-taskmanager,
#custom-galculator,
#custom-snip,
#tray,
#idle_inhibitor,
#custom-power,
#custom-reboot,
#custom-quit,
#custom-lock,
#custom-launcher {
background: #504945;
padding: 3px 13px;
margin: 4px;
border-radius: 6px;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Modules: App Launcher Strip */
#custom-chrome,
#custom-terminal,
#custom-code,
#custom-music,
#custom-thunar {
background: #504945;
padding: 3px 13px;
margin-top: 4px;
margin-bottom: 4px;
margin-right: 2px;
border-radius: 0;
transition: background-color 0.3s ease, color 0.3s ease;
}
#custom-chrome {
margin-left: 0;
border-radius: 6px 0 0 6px;
}
#custom-thunar {
margin-right: 4px;
border-radius: 0 6px 6px 0;
}
/* Modules: Hover Effects */
#custom-launcher:hover,
#backlight:hover,
#custom-todo:hover,
#clock:hover,
#custom-countdown:hover,
#pulseaudio:hover,
#custom-clip:hover,
#custom-snip:hover,
#custom-chrome:hover,
#custom-terminal:hover,
#custom-code:hover,
#custom-taskmanager:hover,
#custom-galculator:hover,
#custom-music:hover,
#custom-thunar:hover,
#tray:hover,
#idle_inhibitor:hover,
#custom-power:hover,
#custom-reboot:hover,
#custom-quit:hover,
#custom-lock:hover {
background: #d65d0e;
color: #3c3836;
}
/* Modules: Specific Styles */
#custom-countdown,
#custom-todo,
#clock {
background: #fbf1c7;
color: #3c3836;
font-weight: bold;
}
#pulseaudio.muted {
background: #fabd2f;
color: #3c3836;
}
#keyboard-state {
background: transparent;
}
#keyboard-state label.locked {
background: #d65d0e;
color: #3c3836;
padding: 0px 12px;
margin: 4px 0px;
border-radius: 6px;
}
#taskbar {
background: #504945;
padding: 0 5px;
margin: 4px;
border-radius: 6px;
}
#taskbar button {
background: transparent;
padding: 0 8px;
border-bottom: 3px solid transparent;
transition: border-bottom-color 0.3s ease-out;
}
#taskbar button:hover {
border-bottom-color: #d65d0e;
}
#taskbar button.active {
border-bottom-color: #fbf1c7;
}