-
Notifications
You must be signed in to change notification settings - Fork 0
/
eww.scss
134 lines (118 loc) · 2.34 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
$background: #0d1117;
$foreground: #b0b4bc;
$background-alt: #232320;
$black: #000;
$white: #fff;
$green: #98971a;
$lightgreen: #b8bb26;
$yellow: #d79921;
$lightyellow: #fabd2d;
$red: #cc241d;
$lightred: #fb4934;
$blue: #0db7ed;
$lightblue: #83a598;
$magenta: #b16286;
$lightmagenta: #d3869b;
$cyan: #689d6a;
$lightcyan: #8ec07c;
$gray: #928374;
$lightgray: #a89984;
$warning: $yellow;
$error: $red;
$urgent: $red;
* {
all: unset;
}
.workspace {
margin-top: 2px;
// margin-bottom: 2px;
// border-radius: 5px 5px 5px 5px;
// padding: 2px 2px 2px 2px;
// background-color: $background;
}
.workspace.nofocus {
padding: 5px 5px 0px 5px;
font-weight: 300;
padding-top: 30px;
font-size: 20px;
&:hover {
background-color: rgba($lightblue, 0.6);
padding: 5px 10px 0px 10px;
border-radius: 7px 7px 7px 7px;
}
}
.workspace.focus {
padding: 5px 5px 0px 5px;
min-width: 50px;
font-weight: 300;
font-size: 20px;
border-radius: 7px 7px 7px 7px;
background-color: rgba($lightred, 0.6);
}
.workspace.prefocus {
padding: 5px 5px 0px 5px;
min-width: 50px;
font-weight: 300;
font-size: 20px;
border-radius: 25px 25px 25px 25px;
background-color: rgba($lightgreen, 0.6);
}
.timehm {
margin: 2px 0 0 0;
font-size: 22px;
font-weight: bold;
border-radius: 5px 0px 0px 5px;
padding-left: 2px;
color: $yellow;
margin-left: 10px;
background-color: rgba($background, 0.5);
}
.timesec {
margin: 2px 2px 0 0;
padding: 6px 0 0 0;
font-weight: 300;
background-color: rgba($background, 0.5);
border-radius: 0px 5px 5px 0px;
}
.weekday {
margin: 2px 0 0 20px;
padding: 0 10px 0 2px;
color: $yellow;
font-size: 20px;
font-weight: 400;
border-radius: 5px 0px 0px 5px;
background-color: rgba($background, 0.5);
}
.date {
margin: 2px 0 0 0px;
// padding-right: 10px;
color: $yellow;
font-size: 20px;
font-weight: 400;
border-radius: 0px 5px 5px 0px;
background-color: rgba($background, 0.5);
}
.aqi {
margin: 2px 0 0 20px;
padding-left: 0px;
// color: $yellow;
font-size: 20px;
font-weight: 400;
border-radius: 5px 5px 5px 5px;
background-color: rgba($background, 0.5);
}
.aqitime {
font-size: 13px;
font-weight: 300;
color: $white;
padding-bottom: 5px;
}
.info {
font-size: 15px;
margin-right: 5px;
font-weight: 300;
color: $white;
}
.info.mem {
margin-left: 5px;
}