-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
114 lines (94 loc) · 1.63 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html {
height: 100vh;
}
body {
height: 100%;
}
.main-container {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.control-container {
margin-top: 12px;
}
.data-container {
height: 100%;
margin: 12px 0 3px;
}
#live-data-container {
display: none;
opacity: 0.7;
}
#fault-code-data-container {
display: none;
opacity: 0.7;
}
#init-data-container-message {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#col-version {
height: 1.5em;
text-align: end;
margin-bottom: 3px;
font-size: 0.8em;
}
.data-table .data-type {
width: 20%;
}
.data-type {
font-weight: bold;
}
#alert {
display: block;
position: absolute;
bottom: 21px;
left: 10px;
margin-left: 1rem;
}
#spinner-overlay {
display: block;
position: absolute;
width: 100%;
height: 90%;
top: 10%;
}
.hidden {
visibility: hidden;
opacity: 0;
transition: visibility 0s 2s, opacity 2s linear;
}
.go-red {
background-color: red !important;
transition: background-color 2s linear;
}
.green {
background-color: green !important;
}
.live-data-container .row {
/*min-height: 48px;*/
}
.live-data-container .row .col {
display: flex;
padding: 2px 0;
justify-content: flex-start;
}
.live-data-container .row .col .data-type {
text-align: right;
flex: 0 0 180px;
}
.live-data-container .row .col .data-value {
margin: 0 10px;
flex: 1;
}
.dot {
height: 10px;
width: 10px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
}