-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (86 loc) · 2.07 KB
/
index.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
<!DOCTYPE html>
<head>
<title>Jacob Strieb</title>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="description" content="Personal website of Jacob Strieb.">
<meta name="author" content="Jacob Strieb">
<style>
:root {
--bg-color: #000808;
--fg-color: #68c868;
--accent-color-1: #303840;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: inherit;
font-size: inherit;
color: inherit;
background: inherit;
border-color: inherit;
border-radius: 0;
line-height: inherit;
appearance: none;
-webkit-appearance: none;
}
html {
background: var(--bg-color);
color: var(--fg-color);
font-family: sans-serif;
font-size: 20px;
min-height: 100vh;
max-height: 100vh;
height: 100vh;
min-width: 100vw;
max-width: 100vw;
width: 100vw;
line-height: 1.35;
overflow: hidden;
}
body {
height: 100vh;
}
body, a {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
gap: 1em;
}
a {
text-decoration: none;
}
pre {
font-family: monospace, monospace;
font-size: min(20px, 100vw / 70 * 1.5);
}
p {
text-align: center;
}
a:hover p {
text-decoration: underline;
}
</style>
</head>
<body>
<a href="https://jstrieb.github.io/about/">
<!-- Yes, I did hand-code this ASCII art. I made it on a plane ride from New York to Pittsburgh when I probably should have been doing homework. -->
<pre>
_______ ________
/__ _/ _ / _____/ _ _ _
| | / | \ \____ _| |_ _ (_) ____ / |
| |_____ _____ _____| |___ \____ |/_ _/| \__ _ / __ \| |___
| | _ | ___\| _ | _ \ | | | | | __| | ___/| _ \
____| | |_| | |____| |_| | |_| | _____| | | | | | | | |___ | |_| |
\_____|___ |_____/|_____|_____| /_______/ |_| |_| |_|\____/|_____|
\_|
</pre>
<p>
Programmer • Hacker • Public Interest Technologist
</p>
</a>
</body>