diff options
Diffstat (limited to 'X11/eww/eww.scss')
-rw-r--r-- | X11/eww/eww.scss | 377 |
1 files changed, 377 insertions, 0 deletions
diff --git a/X11/eww/eww.scss b/X11/eww/eww.scss new file mode 100644 index 0000000..e7fb3fa --- /dev/null +++ b/X11/eww/eww.scss | |||
@@ -0,0 +1,377 @@ | |||
1 | /** Global *******************************************/ | ||
2 | *{ | ||
3 | all: unset; | ||
4 | font-family: feather; | ||
5 | font-family: Iosevka; | ||
6 | } | ||
7 | |||
8 | /** Background ***************************************/ | ||
9 | .bg { | ||
10 | background-image: url("images/bg.png"); | ||
11 | background-color: #474D59; | ||
12 | opacity: 1; | ||
13 | } | ||
14 | |||
15 | /** Generic window ***********************************/ | ||
16 | .genwin { | ||
17 | background-color: #2E3440; | ||
18 | border-radius: 16px; | ||
19 | } | ||
20 | |||
21 | /** Profile ******************************************/ | ||
22 | .face { | ||
23 | background-size: 200px; | ||
24 | min-height: 200px; | ||
25 | min-width: 200px; | ||
26 | margin: 65px 0px 0px 0px; | ||
27 | border-radius: 100%; | ||
28 | } | ||
29 | |||
30 | .fullname { | ||
31 | color: #D46389; | ||
32 | font-size : 30px; | ||
33 | font-weight : bold; | ||
34 | } | ||
35 | |||
36 | .username { | ||
37 | color: #8FBCBB; | ||
38 | font-size : 22px; | ||
39 | font-weight : bold; | ||
40 | margin : -15px 0px 0px 0px; | ||
41 | } | ||
42 | |||
43 | /** System ********************************************/ | ||
44 | .iconcpu, .iconmem, .iconbright, .iconbat { | ||
45 | font-size : 32px; | ||
46 | font-weight : normal; | ||
47 | } | ||
48 | .iconcpu { | ||
49 | color: #BF616A; | ||
50 | } | ||
51 | .iconmem { | ||
52 | color: #A3BE8C; | ||
53 | } | ||
54 | .iconbright { | ||
55 | color: #EBCB8B; | ||
56 | } | ||
57 | .iconbat { | ||
58 | color: #88C0D0; | ||
59 | } | ||
60 | |||
61 | .cpu_bar, .mem_bar, .bright_bar, .bat_bar, scale trough { | ||
62 | all: unset; | ||
63 | background-color: #3A404C; | ||
64 | border-radius: 16px; | ||
65 | min-height: 28px; | ||
66 | min-width: 240px; | ||
67 | } | ||
68 | |||
69 | .cpu_bar, .mem_bar, .bright_bar, .bat_bar, scale trough highlight { | ||
70 | all: unset; | ||
71 | border-radius: 16px; | ||
72 | } | ||
73 | |||
74 | .cpu_bar scale trough highlight { | ||
75 | background-color: #BF616A; | ||
76 | } | ||
77 | .mem_bar scale trough highlight { | ||
78 | background-color: #A3BE8C; | ||
79 | } | ||
80 | .bright_bar scale trough highlight { | ||
81 | background-color: #EBCB8B; | ||
82 | } | ||
83 | .bat_bar scale trough highlight { | ||
84 | background-color: #88C0D0; | ||
85 | } | ||
86 | |||
87 | /** Clock ********************************************/ | ||
88 | .time_hour, .time_min { | ||
89 | color: #81A1C1; | ||
90 | font-size : 120px; | ||
91 | font-weight : bold; | ||
92 | } | ||
93 | .time_hour { | ||
94 | margin : 15px 0px 0px 20px; | ||
95 | } | ||
96 | .time_min { | ||
97 | margin : 0px 0px 10px 0px; | ||
98 | } | ||
99 | |||
100 | .time_mer { | ||
101 | color: #A3BE8C; | ||
102 | font-size : 80px; | ||
103 | font-weight : bold; | ||
104 | margin : 20px 0px 0px 0px; | ||
105 | } | ||
106 | |||
107 | .time_day { | ||
108 | color: #EBCB8B; | ||
109 | font-size : 70px; | ||
110 | font-weight : normal; | ||
111 | margin : 0px 0px 20px -20px; | ||
112 | } | ||
113 | |||
114 | /** Uptime ********************************************/ | ||
115 | .icontimer { | ||
116 | color: #B48EAD; | ||
117 | font-size : 90px; | ||
118 | font-weight : normal; | ||
119 | } | ||
120 | |||
121 | .uphour { | ||
122 | color: #E5E9F0; | ||
123 | font-size : 42px; | ||
124 | font-weight : bold; | ||
125 | } | ||
126 | |||
127 | .upmin { | ||
128 | color: #E5E9F0; | ||
129 | font-size : 32px; | ||
130 | font-weight : bold; | ||
131 | } | ||
132 | |||
133 | /** Music ***************************************/ | ||
134 | .album_art { | ||
135 | background-size: 240px; | ||
136 | min-height: 240px; | ||
137 | min-width: 240px; | ||
138 | margin: 20px; | ||
139 | border-radius: 14px; | ||
140 | } | ||
141 | |||
142 | .song { | ||
143 | color: #8FBCBB; | ||
144 | font-size : 24px; | ||
145 | font-weight : bold; | ||
146 | margin : 40px 0px 0px 0px; | ||
147 | } | ||
148 | |||
149 | .artist { | ||
150 | color: #EBCB8B; | ||
151 | font-size : 16px; | ||
152 | font-weight : normal; | ||
153 | margin : 0px 0px 15px 0px; | ||
154 | } | ||
155 | |||
156 | .btn_prev, .btn_play, .btn_next { | ||
157 | font-family: Iosevka Nerd Font; | ||
158 | } | ||
159 | .btn_prev { | ||
160 | color: #EBCB8B; | ||
161 | font-size : 32px; | ||
162 | font-weight : normal; | ||
163 | } | ||
164 | .btn_play { | ||
165 | color: #A3BE8C; | ||
166 | font-size : 48px; | ||
167 | font-weight : bold; | ||
168 | } | ||
169 | .btn_next { | ||
170 | color: #EBCB8B; | ||
171 | font-size : 32px; | ||
172 | font-weight : normal; | ||
173 | } | ||
174 | |||
175 | .music_bar scale trough highlight { | ||
176 | all: unset; | ||
177 | background-color: #B48EAD; | ||
178 | border-radius: 8px; | ||
179 | } | ||
180 | .music_bar scale trough { | ||
181 | all: unset; | ||
182 | background-color: #3A404C; | ||
183 | border-radius: 8px; | ||
184 | min-height: 20px; | ||
185 | min-width: 310px; | ||
186 | margin : 10px 0px 0px 0px; | ||
187 | } | ||
188 | |||
189 | /** Weather ***************************************/ | ||
190 | .iconweather { | ||
191 | font-family: Iosevka Nerd Font; | ||
192 | font-size : 120px; | ||
193 | font-weight : normal; | ||
194 | margin : 15px 0px 0px 30px; | ||
195 | } | ||
196 | |||
197 | .label_temp { | ||
198 | color : #A6D1DD; | ||
199 | font-size : 80px; | ||
200 | font-weight : bold; | ||
201 | margin : -15px 30px 0px 0px; | ||
202 | } | ||
203 | |||
204 | .label_stat { | ||
205 | color : #BF616A; | ||
206 | font-size : 38px; | ||
207 | font-weight : bold; | ||
208 | } | ||
209 | |||
210 | .label_quote { | ||
211 | color : #E5E5E5; | ||
212 | font-size : 18px; | ||
213 | font-weight : normal; | ||
214 | } | ||
215 | |||
216 | /** Applications ***************************************/ | ||
217 | .appbox { | ||
218 | margin : 15px 0px 0px 25px; | ||
219 | } | ||
220 | |||
221 | .app_fox, .app_telegram, .app_discord, .app_terminal, | ||
222 | .app_files, .app_geany, .app_code, .app_gimp, .app_vbox { | ||
223 | background-repeat: no-repeat; | ||
224 | background-size: 64px; | ||
225 | min-height: 64px; | ||
226 | min-width: 64px; | ||
227 | margin: 8px 8px 0px 8px; | ||
228 | } | ||
229 | |||
230 | .app_fox {} | ||
231 | .app_telegram {} | ||
232 | .app_discord {} | ||
233 | .app_terminal {} | ||
234 | .app_files {} | ||
235 | .app_geany {} | ||
236 | .app_code {} | ||
237 | .app_gimp {} | ||
238 | .app_vbox {} | ||
239 | |||
240 | /** Links ***************************************/ | ||
241 | .iconweb, .iconmail { | ||
242 | color: #FFFFFF; | ||
243 | font-family: Iosevka Nerd Font; | ||
244 | font-size : 70px; | ||
245 | font-weight : normal; | ||
246 | } | ||
247 | .iconmail { | ||
248 | color: #DF584E; | ||
249 | } | ||
250 | |||
251 | .github { | ||
252 | background-color: #24292E; | ||
253 | border-radius: 16px; | ||
254 | } | ||
255 | .reddit { | ||
256 | background-color: #E46231; | ||
257 | border-radius: 16px; | ||
258 | } | ||
259 | .twitter { | ||
260 | background-color: #61AAD6; | ||
261 | border-radius: 16px; | ||
262 | } | ||
263 | .youtube { | ||
264 | background-color: #DF584E; | ||
265 | border-radius: 16px; | ||
266 | } | ||
267 | .mail { | ||
268 | background-color: #FFFFFF; | ||
269 | border-radius: 16px; | ||
270 | } | ||
271 | |||
272 | .mailbox { | ||
273 | background-color: #E5E5E5; | ||
274 | border-radius: 10px; | ||
275 | margin: 48px 0px 48px 0px; | ||
276 | } | ||
277 | .label_mails { | ||
278 | color: #404040; | ||
279 | font-size : 32px; | ||
280 | font-weight : bold; | ||
281 | margin: 0px 12px 0px 12px; | ||
282 | } | ||
283 | |||
284 | /** Power buttons ***************************************/ | ||
285 | .btn_logout, .btn_sleep, .btn_reboot, .btn_poweroff { | ||
286 | font-size : 48px; | ||
287 | font-weight : bold; | ||
288 | } | ||
289 | |||
290 | .btn_logout { | ||
291 | color: #BF616A; | ||
292 | } | ||
293 | .btn_sleep { | ||
294 | color: #A3BE8C; | ||
295 | } | ||
296 | .btn_reboot { | ||
297 | color: #EBCB8B; | ||
298 | } | ||
299 | .btn_poweroff { | ||
300 | color: #88C0D0; | ||
301 | } | ||
302 | |||
303 | /** Home folders ***************************************/ | ||
304 | .hddbox { | ||
305 | background-color: #3A404C; | ||
306 | border-radius: 10px; | ||
307 | margin : 15px; | ||
308 | } | ||
309 | .hddicon { | ||
310 | color: #81A1C1; | ||
311 | font-family: Iosevka Nerd Font; | ||
312 | font-size : 70px; | ||
313 | font-weight : normal; | ||
314 | margin : 25px 20px 25px 40px; | ||
315 | } | ||
316 | .hdd_label { | ||
317 | color: #E5E9F0; | ||
318 | font-size : 48px; | ||
319 | font-weight : bold; | ||
320 | margin : 0px 0px 0px 15px; | ||
321 | } | ||
322 | .fs_sep { | ||
323 | color: #2E3440; | ||
324 | font-size : 36px; | ||
325 | font-weight : bold; | ||
326 | } | ||
327 | |||
328 | .iconfolder1, .iconfolder2, .iconfolder3, .iconfolder4, .iconfolder5, .iconfolder6 { | ||
329 | font-family: Iosevka Nerd Font; | ||
330 | font-size : 32px; | ||
331 | font-weight : normal; | ||
332 | margin : 0px 0px 0px 75px; | ||
333 | } | ||
334 | .iconfolder1 { | ||
335 | color: #BF616A; | ||
336 | } | ||
337 | .iconfolder2 { | ||
338 | color: #A3BE8C; | ||
339 | } | ||
340 | .iconfolder3 { | ||
341 | color: #EBCB8B; | ||
342 | } | ||
343 | .iconfolder4 { | ||
344 | color: #81A1C1; | ||
345 | } | ||
346 | .iconfolder5 { | ||
347 | color: #B48EAD; | ||
348 | } | ||
349 | .iconfolder6 { | ||
350 | color: #88C0D0; | ||
351 | } | ||
352 | |||
353 | .label_folder1, .label_folder2, .label_folder3, .label_folder4, .label_folder5, .label_folder6 { | ||
354 | font-size : 22px; | ||
355 | font-weight : normal; | ||
356 | margin : 0px 0px 0px 30px; | ||
357 | } | ||
358 | .label_folder1 { | ||
359 | color: #BF616A; | ||
360 | } | ||
361 | .label_folder2 { | ||
362 | color: #A3BE8C; | ||
363 | } | ||
364 | .label_folder3 { | ||
365 | color: #EBCB8B; | ||
366 | } | ||
367 | .label_folder4 { | ||
368 | color: #81A1C1; | ||
369 | } | ||
370 | .label_folder5 { | ||
371 | color: #B48EAD; | ||
372 | } | ||
373 | .label_folder6 { | ||
374 | color: #88C0D0; | ||
375 | } | ||
376 | |||
377 | /** EOF *************************************************/ | ||