-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 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
50
51
52
<html>
<head>
<title>My Games</title>
<meta charset="utf-8" />
<link href="../assets/">
<link rel="icon" type="image/png" href="./assets/fast.png">
<!-- Replace with relative path before moving to master `./controller.js` -->
<!-- For development access with this endpoint `http://localhost:9999/controller.js`-->
<!-- Make sure a tomcat instance is running and the module is there for static content access-->
<script type="module" src="./controller.js"></script>
</head>
<style>
@font-face {
font-family: "Inter Reg";
src: url("./assets/fonts/static/Inter-Regular.ttf");
}
@font-face {
font-family: "Inter Bold";
src: url("./assets/fonts/static/Inter-Bold.ttf");
}
html * {
font-family: "Inter Reg" !important;
}
html, body {
margin:0;
padding:0;
height:100%;
width: 100%;
overflow: hidden;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.game-choice{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: honeydew;
height: 160px;
width: 500px;
border-radius: 10px;
}
.choice-button {
margin: 5px;
}
</style>
<body>
</body>
</html>