summaryrefslogtreecommitdiffstats
path: root/assets/index.css
blob: 9c170e4c21f6a7e70d16cdf652a27f168472995b (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
51
52
53
54
55
56
57
58
59
60
61
html {
  background: var(--bg);
  color: var(--fg);
  font-size: 12pt;
  font-family: monospace;
  display: flex;
  flex-direction: column;
}
body {
  height: calc(100vh - 1rem);
  width: calc(100vw - 4rem);
  max-width: 640px;
  margin: 0 2rem 1rem;
  line-height: 1.4;
  align-self: center;
}
main {
  display: flex;
  flex-direction: column;
}
hgroup {
  text-align: center;
}
table {
  width: 100%;
  max-width: 500px;
  align-self: center;
  border-collapse: collapse;
}
tr {
  border: 2px solid #ddd;
}
td {
  padding: 5px;
}
td:first-of-type + td {
  text-align: right;
}
.ok {
  color: #228b22;
}
.warning {
  color: #ff8c00;
}
.error {
  color: #dc143c;
}

#status {
  color: #fff;
  background: #228b22;
}
#status.ok {
  background: #228b22;
}
#status.warning {
  background: #ff8c00;
}
#status.error {
  background: #dc143c;
}