-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
73 lines (72 loc) · 950 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
main {
max-width: 70ch;
margin: auto;
}
pre {
overflow-x: scroll;
}
sup a {
text-decoration: none;
}
kbd {
background-color: WhiteSmoke;
border-radius: 2px;
border: 1px solid Silver;
box-shadow: 1px 1px 2px;
display: inline-block;
line-height: 1;
padding: 2px 4px;
white-space: nowrap;
}
table,
td {
border: 1px solid Black;
}
thead,
tfoot {
background-color: Black;
color: White;
}
blockquote {
margin: 0;
}
blockquote p {
font-style: italic;
}
blockquote p::before {
content: '\201C';
}
blockquote p::after {
content: '\201D';
}
img {
max-width: 100%
}
@media (prefers-color-scheme: dark) {
body {
background-color: Black;
color: White;
}
a {
color: LightSkyBlue;
}
a:visited {
color: MediumPurple;
}
button:disabled {
color: DarkGray;
}
kbd {
box-shadow: 1px 1px 2px White;
color: Black;
}
table,
td {
border: 1px solid DarkGray;
}
thead,
tfoot {
background-color: White;
color: Black;
}
}