blob: a8a389f5eae8a1a18f9770d32e6135333d8913a9 (
plain) (
blame)
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
|
#footer {
background-color: var(--foregroundColour);
border-radius: 1rem;
font-family: "Martian Mono", "monospace";
font-size: 0.75em;
line-height: 1em;
margin-top: 1rem;
padding: 1rem;
.separator {
background-color: var(--textColour);
border-radius: 0.125rem;
height: 0.25rem;
margin: 1rem auto;
width: 100%;
}
#footerHeading {
font-size: 2em;
font-weight: bold;
}
.obfuscatedText {
background-color: var(--textColour);
height: 1rem;
image-rendering: pixelated;
mask-position: center;
mask-repeat: no-repeat;
mask-size: contain;
width: 100%;
}
img {
display: block;
margin: auto;
}
table {
border-collapse: collapse;
tr {
th, td {
line-height: 2em;
}
th {
text-align: left;
&::before {
content: "\00B7\0020";
}
}
td {
padding-left: 2rem;
}
}
}
}
|