-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
96 lines (82 loc) · 1.06 KB
/
main.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: Arial, sans-serif;
background: #333;
color: white;
}
.bms {
display: flex;
}
.history {
display: flex;
flex-wrap: wrap;
}
.bms li {
list-style: none;
}
.enabled {
background-color: green;
}
.disabled {
background-color: grey;
}
.errors .enabled {
background-color: darkred;
}
.errors .disabled {
background-color: #333;
color: grey;
}
.redDot {
color: red;
}
.greenDot {
color: green;
}
.greyDot {
color: grey;
}
.cells .disabled {
background-color: #333;
}
.hidden {
display: none;
}
.guage text {
fill: white;
}
#guageVoltageText {
font-size: 2rem;
}
.guageSubBase_0 {
stroke: #ff1f00;
}
.guageSubBase_10 {
stroke: #ff5b00f7;
}
.guageSubBase_20 {
stroke: #ff8b00f7;
}
.guageSubBase_30 {
stroke: #ffba00f7;
}
.guageSubBase_40 {
stroke: #ffdf00f7;
}
.guageSubBase_50 {
stroke: #daff00f7;
}
.guageSubBase_60 {
stroke: #5fd80bf7;
}
.guageSubBase_70 {
stroke: #24d80bf7;
}
.guageSubBase_80 {
stroke: #14c20af7;
}
.guageSubBase_90 {
stroke: #1ba213f7;
}
.guageSubBase_100 {
stroke: #228c1cf7;
}