-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
123 lines (107 loc) · 2.52 KB
/
base.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
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/x-icon" href="/assets/icons/favicon.svg" />
<base href="/" />
<title>Paul Amoah</title>
</head>
<body>
<template class="template-content">
<style>
h1 {
font-size: 1.5rem;
color: var(--primary-stroke);
}
h2 {
font-size: 1.3rem;
color: var(--primary-stroke);
}
h3,
h4,
h5,
h6 {
font-size: 1.1rem;
color: var(--primary-stroke);
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding-top: 0.5rem;
padding-bottom: 1rem;
}
h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
content: "# ";
color: var(--primary-accent);
}
p,
div,
ul,
ol {
color: var(--secondary-stroke);
}
p,
pre,
div {
font-size: 1rem;
padding-top: 0.5rem;
padding-bottom: 1.5rem;
}
ul,
ol {
padding-bottom: 1.5rem;
}
li {
padding: 0.1rem;
font-size: 1rem;
}
ul {
padding-left: 1.25rem;
}
ol {
padding-left: 1.75rem;
}
a {
color: var(--secondary-stroke);
}
a:hover {
text-decoration-color: var(--primary-accent);
color: var(--primary-accent);
text-decoration-thickness: 0.15rem;
}
.last-updated,
.article-date {
color: var(--tertiary-stroke);
margin-top: -0.5rem;
padding-top: 0rem;
padding-bottom: 1.75rem;
font-size: 0.9rem;
}
.article-date {
font-weight: bold;
}
.last-updated {
margin-top: -1.3rem;
}
.last-updated::before {
content: "Last Updated: ";
}
</style>
<!-- please do not edit the contents of the the `div` tag below. it is used to render and style the markdown content -->
<div class="template-content">__content_marker__</div>
</template>
<style class="shell-style-sheet"></style>
<div class="shell-html"></div>
<script src="/app.js"></script>
</body>
</html>