-
Notifications
You must be signed in to change notification settings - Fork 2
/
boilerplate.html
75 lines (74 loc) · 3.12 KB
/
boilerplate.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Boilerplate</title>
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1">
<link rel="preconnect" href="https://gtm.vreeman.com" crossorigin>
<link rel="dns-prefetch" href="https://gtm.vreeman.com">
<style>
:root {
--eigengrau: #16161d;
--blue-dark: #06c;
--blue-light: #2997ff;
--blue-lighter: #6bf;
--racing-green: #004225;
--gray: rgb(204, 204, 204);
--white: #f5f5f7;
--serif: Georgia, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--monospace: SFMono-Regular, Menlo, Monaco, Consolas, Roboto Mono, "Liberation Mono", "Courier New", monospace;
}
*,::after,::before {
margin: 0;
padding: 0;
}
html {
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1.125rem;
line-height: 1.618;
touch-action: manipulation;
}
body {
height: 100vh;
display: grid;
place-items: center;
place-content: center;
margin: 0 1rem;
text-align: center;
}
h1 {
color: var(--eigengrau);
font-family: var(--sans-serif);
font-weight: 500;
font-size: calc(5.25rem + .25vw);
line-height: calc(1ex / 0.3236);
line-height: 1;
letter-spacing: 0.1618rem;
word-spacing: 0.1618rem;
text-rendering: geometricPrecision;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: subpixel-antialiased;
font-kerning: none;
text-decoration: none;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-fill-color: transparent;
background-image: linear-gradient(110deg, var(--blue-dark) 0%, var(--blue-light) 80%, var(--blue-lighter) 100%);
background-position: 100% 50%;
}
a {
color: inherit;
}
</style>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://gtm.vreeman.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WKSDWK');</script>
<link rel="canonical" href="https://vreeman.com">
<meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
<meta name="description" content="">
</head>
<body>
<noscript><iframe src="https://gtm.vreeman.com/ns.html?id=GTM-WKSDWK" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<h1>Simon Vreeman</h1>
</body>
</html>