-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
117 lines (94 loc) · 1.23 KB
/
header.html
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@500&Fira+Sans&family=Roboto+Slab:wght@300&display=swap');
html {
font-family: "Roboto Slab", serif;
font-size: 16px;
max-width: 100%;
}
body {
color: #444;
margin-left: 15rem;
max-width: 40rem;
padding: .25rem;
}
pre,
code {
font-family: "Fira Mono", monospace;
}
h1,h2 {
font-family: "Fira Sans", monospace;
}
pre {
padding: .5rem;
line-height: 1.25;
overflow-x: scroll;
}
a,
a:visited {
color: #3498db;
}
a:hover,
a:focus,
a:active {
color: #2980b9;
}
p {
font-size: 1rem;
margin-bottom: 1rem;
}
ul {
padding-left: 1.5rem;
}
h1 {
font-size: 1.5rem;
}
h1,h2 {
margin: 0rem -10rem 0rem 1rem;
margin-left: -10rem;
}
h2 {
font-size: 1.3rem;
color: #800000;
float: left;
}
h3 {
font-size: 1.2rem;
}
h4 {
margin: 0 0;
padding: 0;
}
h5 {
}
h6 {
}
small {
font-size: .707em;
}
blockquote {
border-left: 8px solid #fafafa;
padding: 1rem;
}
pre,
code {
background-color: #fafafa;
}
dl {
}
dt {
float: left;
width: 5rem;
text-align: right;
margin-right:0.5em;
}
dt::after {
content: ": ";
}
dd {
margin-left: 5.5rem;
}
.footer {
font-size: .6rem;
float: right;
}
</style>