-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.53 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
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Oswald&family=Roboto+Condensed:wght@300;400&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
height: 100%;
background-image: url(./assets/cubicle.jpg);
background-repeat: no-repeat;
background-size: cover;
}
body {
margin: 0;
}
.game {
height: 100%;
font-family: monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 18px;
white-space: pre;
display: flex;
align-items: center;
justify-content: center;
background-image: url("./assets/vt220.png");
background-position: center;
background-repeat: no-repeat;
background-size: 1200px;
color: #00ef00;
}
</style>
</head>
<body>
<script src="./out.js" defer></script>
<!-- <div
style="
"
/> -->
<div id="content" class="game"></div>
</body>
</html>