-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
143 lines (130 loc) · 3.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no"
/>
<meta
name="description"
content="Play ocarina songs from the Zelda series in your browser."
/>
<meta name="author" content="vaexenc" />
<meta property="og:title" content="Ocarina Songs" />
<meta
property="og:description"
content="Play ocarina songs from the Zelda series in your browser."
/>
<meta property="og:image" content="https://i.imgur.com/UITxoYP.png" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:image" content="https://i.imgur.com/UITxoYP.png" />
<meta property="twitter:title" content="Ocarina Songs" />
<meta property="twitter:creator" content="@vaexenc" />
<meta name="darkreader" content="NO-DARKREADER-PLUGIN" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Ocarina Songs</title>
<style>
body {
background-color: black;
margin: 0;
}
@font-face {
font-family: "Press Start 2P";
src: url("fonts/press-start-2p/PressStart2P.woff2") format("woff2"),
url("fonts/press-start-2p/PressStart2P.woff") format("woff"),
url("fonts/press-start-2p/PressStart2P.ttf") format("truetype"),
url("fonts/press-start-2p/PressStart2P.svg#PressStart2P") format("svg");
font-display: block;
}
.noscript-content {
position: relative;
width: fit-content;
margin: 3em auto 0;
padding-left: 0.55ch;
font-family: "Press Start 2P", monospace, sans-serif;
font-size: 8px;
line-height: 1;
letter-spacing: -0.14em;
padding-bottom: 2.5em;
color: white;
font-size: 2.75vmin;
}
.noscript-content *::selection {
background-color: white;
color: black;
}
.noscript-content a {
color: white !important;
text-decoration: none !important;
}
.noscript-content .border {
position: absolute;
top: 1em;
left: 0;
user-select: none;
}
.noscript-content .border > div {
margin-bottom: 0.3em;
}
.noscript-content .text-line {
margin: 0;
}
.noscript-content .text-line-2 {
margin-top: 0.66em;
margin-left: 11ch;
}
.noscript-content .text-line-3 {
margin-left: 2.5ch;
margin-top: 22em;
}
.noscript-content .text-line-4 {
margin-left: 5ch;
}
.noscript-content .text-line-5 {
margin-left: 4ch;
}
</style>
</head>
<body>
<noscript>
<div class="noscript-content">
<p class="text-line text-line-1">Callback (1) 80008ee8 00000000 00000000</p>
<p class="text-line text-line-2">I LOVE YOU 00000000</p>
<p class="text-line text-line-3">
ROM_F [Creator:<a href="https://github.com/vaexenc" target="_blank"
>vaexenc@github</a
>]
</p>
<p class="text-line text-line-4">[Date:$inject:date]</p>
<p class="text-line text-line-5">OCARINA 00000000 00000000</p>
<div class="border">
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
<div>:</div>
</div>
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>