-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (102 loc) · 3.5 KB
/
index.html
File metadata and controls
120 lines (102 loc) · 3.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="description" content="ehpc's personal website" />
<meta name="author" content="ehpc" />
<meta name="theme-color" content="#33073d" />
<meta name="version" content="%VITE_APP_VERSION%" />
<link rel="dicon" href="./src/favicons/favicon-32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="./src/favicons/favicon-128.png" sizes="128x128" type="image/png" />
<link rel="icon" href="./src/favicons/favicon-192.png" sizes="192x192" type="image/png" />
<link rel="icon" href="./src/favicons/favicon-512.png" sizes="512x512" type="image/png" />
<link rel="apple-touch-icon" href="./src/favicons/apple-touch-icon.png" />
<link rel="icon" href="./src/favicons/favicon.ico" sizes="16x16" type="image/x-icon" />
<title>ehpc</title>
<style>
@font-face {
font-display: swap;
font-family: NESCyrillic;
src:
url("./src/fonts/NESCyrillic.woff2") format("woff2"),
url("./src/fonts/NESCyrillic.woff") format("woff"),
url("./src/fonts/NESCyrillic.ttf") format("truetype");
}
@font-face {
font-display: block;
font-family: ATARISTOCRAT;
src:
url("./src/fonts/ATARISTOCRAT-lat.woff2") format("woff2"),
url("./src/fonts/ATARISTOCRAT-lat.woff") format("woff"),
url("./src/fonts/ATARISTOCRAT-lat.ttf") format("truetype");
}
html,
body {
font-family: NESCyrillic, monospace;
height: 100%;
margin: 0;
}
body {
background-color: #33073d;
}
body.no-ui {
padding: 1rem;
}
body, a {
color: rgba(255, 255, 255, 0.618);
overflow: hidden;
}
a {
display: block;
font-family: ATARISTOCRAT, monospace;
text-decoration: none;
}
body.no-ui a {
margin-bottom: 0.75rem;
}
#portrait-disclaimer {
display: none;
}
#pc-link {
display: none;
}
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
white-space: nowrap;
width: 1px;
}
</style>
</head>
<body class="no-ui">
<noscript><p>This site is prettier with JavaScript enabled :)</p></noscript>
<main role="main" aria-label="Main content">
<h1 class="sr-only" aria-label="Welcome message">Welcome to ehpc's personal website!</h1>
<p id="loading-disclaimer" role="status" aria-live="polite" aria-atomic="true">
Loading UI, please wait a moment...
</p>
<div id="portrait-disclaimer" role="status" aria-live="polite" aria-atomic="true">
<p>If you turn your device,</p>
<p>You'll see the room a bit better :)</p>
</div>
<nav aria-label="Main navigation">
<a id="github-link" href="https://github.com/ehpc/ehpc.io" tabindex="1">GitHub Repository</a>
<a
id="cv-link"
href="https://github.com/ehpc/resume/releases/download/latest/Eugene-Maslovich-resume-en.pdf"
tabindex="2"
>My CV</a>
<a id="email-link" href="mailto:ehpc@ehpc.io" tabindex="3">Email Me</a>
<a id="pc-link" tabindex="4">Interact with PC</a>
</nav>
</main>
<canvas id="scene-canvas" width="0" height="0" aria-hidden="true"></canvas>
<script type="module" src="/src/main.ts"></script>
</body>
</html>