-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·91 lines (82 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
executable file
·91 lines (82 loc) · 2.13 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Jan Dillman</title>
<meta name="color-scheme" content="light dark" />
<style>
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 100 700;
font-display: swap;
src: url("SpaceGrotesk[wght].woff2") format("woff2");
}
:root {
color-scheme: light dark;
--bg: #f4f1ec;
--fg: #2a2f33;
--link: #2b5a6b;
--link-hover: #1f4857;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #101417;
--fg: #d9d3c8;
--link: #9cc3d1;
--link-hover: #c0dbe4;
}
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100svh;
display: grid;
place-items: center;
background: radial-gradient(120% 120% at 30% 20%, #fff1, transparent 60%), var(--bg);
color: var(--fg);
font-family: "Space Grotesk", system-ui, sans-serif;
text-rendering: optimizeLegibility;
}
.wrap {
text-align: center;
padding: 2.5rem 1.5rem 3rem;
}
h1 {
margin: 0 0 1.25rem;
font-size: clamp(3.5rem, 12vw, 9rem);
font-weight: 600;
}
.links {
display: inline-flex;
gap: 1.5rem;
font-size: 1.05rem;
}
.links a {
color: var(--link);
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 0.3em;
}
.links a:hover,
.links a:focus-visible {
color: var(--link-hover);
}
</style>
</head>
<body>
<main class="wrap">
<h1>Jan Dillmann</h1>
<nav class="links" aria-label="Profiles">
<a href="http://www.linkedin.com/in/jandillmann">LinkedIn</a>
<a href="http://www.xing.com/profile/Jan_Dillmann">Xing</a>
<a href="http://github.com/jandillmann">Github</a>
</nav>
</main>
</body>
</html>