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
|
body {
background-color: white;
}
main {
margin-left: auto;
margin-right: auto;
width: min(60em, 80%);
background-color: rgb(255, 255, 255);
border-radius: 5px;
}
h1 {
color: black;
text-align: center;
}
h2 {
margin: 0.5em;
display: inline-block;
color: black;
}
div.service,
div.log {
padding: 1em;
margin: 2em;
box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
border-radius: 10px;
}
div.service.ok {
border-top: 12px solid rgb(130, 255, 80);
}
div.service.error {
border-top: 12px solid rgb(255, 80, 80);
}
div.service a {
font-weight: bold;
color: black;
float: inline-end;
}
div.checks {
display: grid;
width: 100%;
grid-template-columns: 30% 10% 50% 10%;
}
div.checks span {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: nowrap;
}
span.details.ok,
span.time {
color: rgb(173, 173, 173);
}
span.status {
font-weight: bolder;
}
span.status.ok {
color: rgb(39, 138, 0);
}
span.status.error {
color: rgb(158, 0, 0);
}
|