blob: d984996eeb1805559c7eeb6f29c45085889f01bd (
plain)
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
|
html, body {
font-family: sans-serif;
}
table {
border-collapse: collapse;
}
th, td {
text-align: left;
padding: 8px;
border: black 1px solid;
}
th {
background-color: #f2f2f2;
}
a {
color: #0000EE;
}
a :visited{
color: #0000EE;
}
.status-banner {
background-color: #f2f2f2;
padding: 0 5px;
border: 1px solid #e7e7e7;
}
.status-banner.good {
background-color: #aaffaa;
border: 1px solid #90ee90;
}
.status-banner.bad {
background-color: #ffcccb;
border: 1px solid #ff6666;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.control-list a {
text-decoration: none;
}
|