-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (108 loc) · 2.1 KB
/
styles.css
File metadata and controls
136 lines (108 loc) · 2.1 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
window {
/* Be careful about setting values here, this also modifies the debugger appearance */
font-family: 'MesloLGS Nerd Font Mono', 'Courier New', 'Bars', 'Font Awesome 5 Free';
font-size: 12px;
color: #000000;
}
.bar {
background-color: rgba(29, 32, 33, 0.0);
color: #f2e5bc;
font-family: 'MesloLGS Nerd Font Mono', 'Courier New', 'Bars', 'Font Awesome 5 Free';
font-size: 12px;
line-height: 12px;
}
.workspace {
padding: 0px 24px 0px 24px;
/* border: 1px solid rgba(255, 0, 0, 0.4); */
}
.workspacechild {
/* distance between workspace children */
margin-left: 8px;
border: 1px solid rgba(168, 153, 132, 0.4);
color: #f2e5bc;
background-color: rgba(60, 56, 54, 0.4);
font-size: 11px;
border-radius: 11px;
transition: all 500ms;
transition-property: min-width, background-color;
}
.workspacechild:first-child {
margin-left: 0px;
}
.workspacechild:selected {
/* min-width: 32px; */
border: 1px solid #f2e5bc;
background-color: #f2e5bc;
color: #333333;
font-weight: bold;
}
.right_bar {
background-color: rgba(255, 0, 0, 0);
}
.data_start {
font-size: 24px;
color: #86BBD8;
}
.data_wrapper {
background-color: #86BBD8;
}
.icon {
font-size: 20px;
line-height: 20px;
padding-top: 2px;
padding-bottom: 2px;
font-weight: bold;
padding-left: 24px;
padding-right: 8px;
}
.memory {
color: #fff;
}
.cpu {
color: #fff;
}
/* .cpu.usage-10 {
color: #00ff00;
}
.cpu.usage-20 {
color: #ff0000;
} */
.clock_start {
font-size: 24px;
color: rgba(60, 56, 54, 1);
padding-left: 16px;
}
.clock_wrapper {
background-color: rgba(60, 56, 54, 1);
padding-right: 16px;
}
.bar_end {
font-size: 20px;
color: rgba(60, 56, 54, 1);
}
.clock {
/* border-radius: 0px 0px 0px 24px; */
}
.box.red {
background-color: rgba(255, 0, 0, 1);
}
.box.green {
background-color: rgba(0, 255, 0, 1);
}
.box.blue {
background-color: rgba(0, 0, 255, 1);
}
.box.red.green.blue {
background-color: rgba(255, 255, 255, 1);
}
.weather {
color: #fff;
}
.weather.icon {
font-weight: bold;
padding-left: 0px;
}
.battery.icon {
color: #fff;
font-size: 14px;
}