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
|
:root {
--border-color: rgba(90, 90, 120, 0.4);
--border-color-active: rgba(102, 226, 36, 0.7);
--bg-color: rgba(20, 20, 20, 0.5);
--bg-color-hover: rgba(40, 40, 50, 1);
--border-radius: 12px;
--border-size: 3px;
--border-style: solid;
--text-color: rgba(245, 245, 245, 1);
--window-padding: 3px;
}
.window {
}
.monitor {
}
.workspace {
}
.client {
}
.client-image {
}
.launcher {
}
.launcher-input {
}
.launcher-results {
}
.launcher-item {
}
.launcher-exec {
}
.launcher-key {
}
.launcher-plugins {
}
.launcher-plugin {
}
|