-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patheww.scss
193 lines (163 loc) · 2.95 KB
/
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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
@import "gruvbox.scss";
* {
all: unset; //Unsets everything so you can style everything from scratch
}
//Global Styles
.bar {
background-color: $background;
color: $foreground;
padding: 5px;
font-size: 1em;
font-family: Hack Regular;
}
.bottombar {
background-color: $background;
color: $foreground;
padding: 5px;
font-size: 1em;
font-family: Hack Regular;
}
// Styles on classes (see eww.yuck for more information)
.icon-module {
margin: 0 5px;
& > &__icon {
margin-right: 5px;
font-family: "Font Awesome 5 Free Solid";
}
}
.sidestuff slider {
all: unset;
color: #ffd5cd;
}
.metric scale trough highlight {
all: unset;
background-color: $green;
color: $black;
border-radius: 10px;
}
.metric scale.warning trough highlight {
all: unset;
background-color: $yellow;
color: $black;
border-radius: 10px;
}
.metric scale.error trough highlight {
all: unset;
background-color: $error;
color: $black;
border-radius: 10px;
}
.metric scale.volume trough highlight {
all: unset;
background-color: $lightmagenta;
color: $black;
border-radius: 10px;
}
.metric scale trough {
all: unset;
background-color: $background-alt;
border-radius: 50px;
min-height: 5px;
min-width: 100px;
margin-left: 10px;
margin-right: 20px;
}
.label-ram {
font-size: large;
}
.workspaces {
background-color: $background-alt;
border-radius: 15px;
margin-left: 5px;
margin-top: 5px;
padding-left: 10px;
padding-right: 5px;
font-family: "Hack NF Regular";
font-size: 28px;
margin-right: 20px;
button {
color: #a89984;
margin: 0px 3px;
}
button.focused {
color: $green;
}
button.urgent {
color: $urgent;
}
}
.spotify {
font-size: 1em;
// border-radius: 20px;
background-color: $green;
color: $background;
}
.spotify-text {
font-size: 1em;
background-color: $green;
color: $green;
}
.notifications {
font-size: 1em;
// border-radius: 20px;
background-color: red;
color: $background;
}
.notifications-text {
font-size: 1em;
background-color: red;
color: $green;
}
.docker {
font-family: "Font Awesome 5 Brands";
// border-radius: 20px;
font-size: 1em;
background-color: $blue;
color: $background;
padding-left: 5px;
padding-right: 5px;
}
.github {
font-family: "Font Awesome 5 Brands";
font-size: 1em;
background-color: $gray;
color: $background;
}
.github-text {
font-family: "Font Awesome 5 Brands";
font-size: 1em;
background-color: $lightgray;
color: $black;
padding-top: 0.7em;
}
.volume {
font-family: "Font Awesome 5 Brands";
font-size: 1em;
border: 1px solid $gray;
color: $foreground;
}
.uplink {
color: $lightmagenta;
}
.veryuplink {
color: $red;
}
.noactive {
color: $white;
}
.downlink {
color: $lightcyan;
}
.verydownlink {
color: $green;
}
.close {
background-color: $red;
color: $background;
padding-left: 5px;
padding-right: 5px;
}
button:hover {
text-decoration: underline;
color: white;
}