forked from elkowar/eww
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eww.scss
59 lines (53 loc) · 1015 Bytes
/
eww.scss
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
* {
all: unset; //Unsets everything so you can style everything from scratch
}
//Global Styles
window {
background-color: #3a3a3a;
color: #b0b4bc;
font-family: CascadiaCode;
}
// Styles on classes (see eww.xml for more information)
.sidestuff slider {
all: unset;
color: #ffd5cd;
}
.slider-vol scale trough highlight {
all: unset;
background-color: #D35D6E;
color: #000000;
border-radius: 10px;
}
.slider-vol scale trough {
all: unset;
background-color: #4e4e4e;
border-radius: 50px;
min-height: 3px;
min-width: 50px;
margin-left: 10px;
margin-right: 20px;
}
.slider-ram scale trough highlight {
all: unset;
background-color: #D35D6E;
color: #000000;
border-radius: 10px;
}
.slider-ram scale trough {
all: unset;
background-color: #4e4e4e;
border-radius: 50px;
min-height: 3px;
min-width: 50px;
margin-left: 10px;
margin-right: 20px;
}
.label-ram {
font-size: large;
}
.time {
padding-right: 10px;
}
.workspaces button:hover {
color: #D35D6E;
}