-
Notifications
You must be signed in to change notification settings - Fork 7
/
header.html
73 lines (70 loc) · 1.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{TITLE}}</title>
<link href="https://www.karl.berlin/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<style>
body {
font-family: sans-serif;
margin: 0 auto;
max-width: 48rem;
line-height: 1.45;
padding: 0.5rem 0 1.6rem;
box-shadow: 0 0 2rem 0 #bbb;
border-radius: 0 0 0.6rem 0.6rem;
}
main {
padding: 0 1.4rem;
hyphens: auto;
}
code {
background: #eee;
padding: 0.3rem;
tab-size: 4;
}
pre code {
display: block;
overflow-x: auto;
padding: 0.3rem 0.6rem;
}
blockquote {
margin-left: 0em;
padding-left: 1.0em;
border-left: 0.3em solid #ddd;
}
nav ul {
margin: 0;
padding: 0;
display: flex;
background: #17a;
}
nav li {
list-style: none;
}
nav li * {
display: block;
padding: 0.4rem 0.4rem;
color: white;
}
nav li strong {
padding-left: 1.5rem;
padding-right: 1rem;
}
nav a {
text-decoration: none;
}
nav a:hover {
background: #069;
}
</style>
</head>
<nav>
<ul>
<li><strong>Karl Bartel</strong></li>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
<main>