-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.css
69 lines (57 loc) · 1004 Bytes
/
index.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
html {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.25rem;
}
body {
max-width: 760px;
margin-left: auto;
margin-right: auto;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 1em;
}
nav * {
display: inline-block;
margin: 0;
}
nav ul {
list-style: none;
padding-left: 0;
}
nav li:after {
content: ' | ';
font-weight: 800;
}
nav li:last-of-type:after {
content: '';
}
main, nav {
padding-bottom: 1em;
border-bottom: 2px solid orangered;
}
h1 {
padding-bottom: 1em;
border-bottom: 2px solid orangered;
}
pre, code {
color: white;
background-color: orangered;
padding: 0.5em;
box-sizing: border-box;
display:block;
white-space: pre-wrap;
word-wrap: break-word;
}
a {
color: red;
}
footer {
font-size: 0.75em;
}
.emphasised {
text-decoration: underline double black;
}
#introduction {
font-size: 1.25em;
font-style: italic;
}