blob: 47691c4cbe060593ad4710ad64ee679ef4ab2e3b (
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
|
div.domainCard {
display: inline-block;
padding: 0.8em;
margin: 0.2em;
color: midnightblue;
border-radius: 1ch;
}
div.beigeDomainCard {
background-color: beige;
}
div.redDomainCard {
background-color: red;
}
div.greenDomainCard {
background-color: green;
}
div.yellowDomainCard {
background-color: yellow;
}
div.magentaDomainCard {
background-color: magenta;
}
p.domainSubtitle {
font-weight: bold;
}
span.domainStatus {}
table.header {
width: 100%;
}
td {
vertical-align: top;
}
td.listContainer {
width: 80ch;
}
td.resultContainer {
width: max-content;
}
pre.result {
font-weight: bold;
}
div.header {
text-align: right;
}
|