-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (45 loc) · 740 Bytes
/
styles.css
File metadata and controls
53 lines (45 loc) · 740 Bytes
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
html {
font-family: sans-serif;
line-height: 1.6;
text-rendering: optimizeLegibility;
}
body > header,
body > nav,
body > main,
body > footer {
margin: 0 auto;
max-width: 37rem;
padding: 0 1rem;
}
body > footer {
border-top: 1px solid black;
font-size: 85%;
padding-bottom: 3rem;
text-align: right;
}
a[href] {
border-bottom: 1px dashed #999;
color: black;
text-decoration: none;
}
a[href]:hover {
border-bottom: 1px dashed #977;
color: #977;
}
ol li, ul li {
padding: 0.25rem 0;
}
body > nav ol {
list-style-type: none;
padding: 0;
}
ul {
padding: 0 0 0 1rem;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000;
color: white;
}
a[href] { color: lightblue; }
}