-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (85 loc) · 2.15 KB
/
index.html
File metadata and controls
92 lines (85 loc) · 2.15 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
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Ondrej Bilek</title>
<meta name="description" content="Ondrej Bilek — Member of Technical Staff at Tailscale." />
<style>
:root {
--bg: #fbfbf9;
--fg: #1b1f23;
--muted: #6a737d;
--accent: #0a7d4f;
--selection: #cfe9da;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0d1117;
--fg: #e6edf3;
--muted: #8b949e;
--accent: #3fb950;
--selection: #173a26;
}
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0;
padding: 1.5rem;
background: var(--bg);
color: var(--fg);
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
font-size: 15px;
line-height: 1.7;
display: flex;
align-items: center;
justify-content: center;
-webkit-font-smoothing: antialiased;
}
::selection { background: var(--selection); }
main { width: 100%; max-width: 34rem; }
h1 {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
letter-spacing: -0.01em;
}
.role {
margin: 0.35rem 0 0;
color: var(--muted);
}
.links {
margin-top: 1.75rem;
color: var(--muted);
}
.links a {
color: var(--fg);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: color .15s ease, border-color .15s ease;
}
.links a:hover,
.links a:focus-visible {
color: var(--accent);
border-color: var(--accent);
}
.sep { margin: 0 0.6rem; }
</style>
</head>
<body>
<main>
<h1>Ondrej Bilek</h1>
<p class="role">Member of Technical Staff, Tailscale</p>
<nav class="links">
<a href="https://github.com/bilcus">github</a><span class="sep">·</span><a href="https://www.linkedin.com/in/ondrejbilek">linkedin</a><span class="sep">·</span><a href="https://twitter.com/Bilcus">twitter</a><span class="sep">·</span><a id="email" href="#">email</a>
</nav>
</main>
<script>
(function () {
var user = "bilcuus", domain = "gmail.com";
document.getElementById("email").href = "mailto:" + user + "@" + domain;
})();
</script>
</body>
</html>