blob: c517db20dcf0267e530caef6cd252f220fe6c16b (
plain) (
blame)
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
|
* {
all: unset; //Unsets everything so you can style everything from scratch
}
//Global Styles
.alsa-gui {
background-color: #1e222a;
color: #abb2bf;
padding: 12px;
border-radius: 7px;
font-size : 25px;
}
.metric scale trough {
all: unset;
border-radius: 50px;
min-height: 3px;
min-width: 90px;
margin-left: 10px;
margin-right: 10px;
}
.chad scale trough {
all: unset;
border-radius: 50px;
min-height: 3px;
min-width: 90px;
margin-left: 10px;
margin-right: 10px;
}
.metric scale trough highlight {
all: unset;
background-color: #668ee3;
border-radius: 10px;
}
.chad scale trough highlight {
all: unset;
background-color: #e06c75;
border-radius: 10px;
}
.bri {
background-color: #d47d85;
}
.metric scale trough {
all: unset;
background-color: #282c34;
border-radius: 50px;
min-height: 6px;
min-width: 90px;
margin-left: 10px;
margin-right: 10px;
}
.chad scale trough {
all: unset;
background-color: #282c34;
border-radius: 50px;
min-height: 6px;
min-width: 90px;
margin-left: 10px;
margin-right: 10px;
}
|