forked from System64fumo/syshud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (73 loc) · 1.27 KB
/
style.css
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
#syshud {
background: transparent;
}
#syshud .box_layout {
background: @theme_bg_color;
border-radius: 25px;
border: 1px solid @borders;
margin: 10px;
}
#syshud scale {
margin: 0px;
padding: 0px;
}
#syshud label {
color: alpha(@theme_fg_color, 0.5);
}
/* Horizontal layout */
#syshud scale.horizontal {
padding: 0px;
min-height: 5px;
}
#syshud scale.horizontal trough {
border-radius: 3px;
background: alpha(currentColor, 0.1);
min-height: 5px;
padding: 0px;
}
#syshud scale.horizontal highlight {
border-radius: 3px;
min-height: 5px;
background: alpha(@theme_fg_color, 0.75);
margin: 0px;
}
#syshud scale.horizontal slider {
margin: 0px;
background: transparent;
min-height: 5px;
box-shadow: none;
padding: 0px;
}
/* Vertical layout */
#syshud scale.vertical {
padding: 0px;
min-width: 5px;
}
#syshud scale.vertical trough {
border-radius: 3px;
background: alpha(currentColor, 0.1);
min-width: 5px;
padding: 0px;
}
#syshud scale.vertical highlight {
border-radius: 3px;
min-width: 5px;
background: alpha(@theme_fg_color, 0.75);
margin: 0px;
}
#syshud scale.vertical slider {
margin: 0px;
background: transparent;
min-width: 5px;
box-shadow: none;
padding: 0px;
}
/* Levels */
#syshud .muted {
}
#syshud .low {
}
#syshud .medium {
}
#syshud .high {
}