-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdashboard.css
More file actions
executable file
·84 lines (77 loc) · 1.14 KB
/
dashboard.css
File metadata and controls
executable file
·84 lines (77 loc) · 1.14 KB
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
html {
margin: 0;
}
body {
width: 100%;
height: 100%;
background-color: #eee;
padding: 1vw 1vh;
}
.header {
position: fixed;
z-index: 2;
background-color: #fff;
width: 100%;
top: 0;
height: 50px;
}
.card-panel {
height: 200px;
min-width: 200px;
padding: 2vw;
margin: auto;
margin-top: 1vh;
border-radius: 5px;
color: #333;
}
.boards {
top: 60px;
position: relative;
}
.threshold {
margin-top: 0.1 rem;
}
.result {
font-size: 3em;
}
.alerts-recent{
height:30vh;
overflow-y: scroll;
}
.alerts-current{
height:30vh;
overflow-y: scroll;
}
.alerts-heading{
font-size:1.3em;
}
.text-white {
color: #fff;
}
.fill-white {
fill: white;
}
.gauge-container {
width: 150px;
height: 150px;
display: block;
padding: 10px;
}
.gauge-container > .gauge > .dial {
stroke: #334455;
stroke-width: 20;
}
.gauge-container > .gauge > .value {
stroke-width: 50;
}
.gauge-container > .gauge > .value-text {
fill: #333;
}
path {
stroke-width: 2;
fill: none;
}
path,
gauge-container > .gauge > .value {
stroke: #76a6b9;
}