-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (47 loc) · 851 Bytes
/
style.css
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
body {
color: #ddd;
background-color: black;
background-image: url("/img/flower-circuit-tile.jpg");
max-width: 50em;
margin: auto;
padding: 5vw;
font-family: 'Playfair Display', serif;
font-size: large;
}
#strip {
padding: 8ch;
border-radius: 8ch;
background-color: #111;
}
#sdc {
line-height: 2ch;
}
a {
color: #dbc;
text-decoration: none;
font-weight: bold;
}
@media (prefers-color-scheme: light) {
body {
color: #111;
}
#strip {
background-color: #ddd;
}
a {
color: #534;
}
}
pre {
font-family: 'Lucida Console', 'DejaVu Sans Mono', Monaco, Consolas, monospace;
overflow-x: auto;
}
.center {
text-align: center;
}
td {
padding: .5em;
}
td:nth-child(1), td:nth-child(2), td:nth-child(3) {
text-align: center;
}