blob: 8eaaa85ad3e3e92da64fb90a996fe638726685cc (
about) (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
body {
color: black;
font-size: 16px;
margin: 0px auto 0px auto;
width: 1000px;
background-color: #f2eff4;
font-family: sans-serif;
line-height: 140%;
text-rendering: optimizeLegibility;
}
header {
border-bottom: 2px solid black;
margin-bottom: 30px;
padding: 12px 0px 12px 0px;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
}
nav a {
color: black;
font-size: 18px;
margin-left: 12px;
text-decoration: none;
}
footer {
border-top: solid 2px black;
color: #555;
font-size: 14px;
margin-top: 30px;
padding: 12px 0px 12px 0px;
}
footer li {
list-style-type: none;
margin-top: 10px;
}
footer li a {
margin-left: 5px;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
}
pre {
white-space: pre-wrap;
border-left: 3ex solid #eee;
position: relative;
counter-reset: linenumbers;
background-color: white;
}
pre a:before {
color: #aaa;
content: counter(linenumbers);
counter-increment: linenumbers;
left: -4ex;
position: absolute;
text-align: right;
width: 2.5ex;
}
code {
font-family: monospace;
}
article .header {
color: #555;
font-size: 14px;
font-style: italic;
}
.simple-icon {
height: 22px;
vertical-align: middle;
}
a {
color: #5b6ee1;
}
a:hover {
color: #306082;
background-color: #f3f3f3;
}
a:visited {
color: #306082;
}
|