-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 1.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Kir Belevich</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<meta name="referrer" content="none"/>
<meta name="no-email-collection" content="http://www.unspam.com/noemailcollection/"/>
<style>
html {
height: 100%;
}
body {
background-color: black;
margin: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
a {
font-family: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", Courier, monospace;
font-size: 6vh;
line-height: 200%;
color: white;
text-decoration: none;
display: block;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<ul>
<li><a href="mailto:kir@belevi.ch">email</a></li>
<li><a rel="me" href="https://t.me/deepsweet">telegram</a></li>
<li><a rel="me" href="https://github.com/deepsweet">github</a></li>
<li><a rel="me" href="https://mastodon.social/@deepsweet">mastodon</a></li>
<li><a rel="me" href="https://www.instagram.com/deepsweet/">instagram</a></li>
</ul>
</body>
</html>