-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker.css
More file actions
48 lines (40 loc) · 859 Bytes
/
Copy pathdocker.css
File metadata and controls
48 lines (40 loc) · 859 Bytes
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
@import "./colors.css";
* {
margin: 0;
padding: 0;
color: inherit;
font-size: 12px;
background-image: none;
border: 0 solid @background;
transition: all 0.3s ease-in-out;
font-family: "JetBrainsMono Nerd Font", "Noto Sans", sans-erif;
}
window {
color: @on_surface;
background-color: transparent;
}
tooltip {
background: @background;
border-width: 2px;
border-radius: 10px;
}
#docker-drawer { margin-bottom: -55px; }
#docker-drawer:hover { margin-bottom: 10px; }
#taskbar {
padding: 4px;
background: @background;
border: 2px solid @on_secondary;
border-radius: 16px;
}
#taskbar button {
margin: 2px;
padding: 8px;
border-radius: 12px;
}
#taskbar button:hover {
background: @on_secondary;
}
#taskbar button.active {
color: @background;
background: @primary;
}