-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdashboard.css
More file actions
107 lines (86 loc) · 1.31 KB
/
dashboard.css
File metadata and controls
107 lines (86 loc) · 1.31 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
div.statusFileState {
position: absolute;
top: 0;
width: 100%;
font-size: 18pt;
padding: 10px 0;
font-weight: bold;
}
div.fortune {
display: none;
}
div.stat.warning, div.stat.acknowledged {
color: #000;
}
#content {
margin-top: 30px;
}
div.section {
margin: 0;
}
#services, #hosts {
padding: 20px 0 10px 0;
font-size: 24pt;
}
#hosts {
padding-top: 40px;
}
#services h2, #hosts h2 {
float: left;
}
#services div.stats, #hosts div.stats {
display: none;
}
#content div.state {
font-size: 24pt;
border-left: 10px solid #000;
border-right: 10px solid #000;
box-sizing: border-box;
}
table {
margin: 0;
}
table tbody {
margin: 0;
width: 100%;
padding: 0 20px;
}
table tbody tr:first-child {
display: none;
}
h3 {
display: none;
}
table tbody tr.acknowledged {
display: none;
}
table tbody tr {
display: block;
float: left;
width: 50%;
border: 10px solid #000;
box-sizing: border-box;
}
table tbody tr td {
display: block;
width: 100%;
}
table tbody tr td.hostname {
font-size: 20pt;
background: transparent;
font-weight: bold;
}
table tbody tr td.service {
font-size: 32pt;
font-weight: bold;
}
table tbody tr td.state {
display: none;
}
table tbody tr td.duration, table tbody tr td.attempts {
font-size: 16pt;
}
table tbody tr td.output {
font-size: 14pt;
text-align: center;
}