-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·53 lines (46 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>High Scores</title>
<meta charset="utf-8">
<style>
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #000000;
overflow: hidden;
}
#phaser-game {
position: fixed;
top: 0;
left: 0;
}
#loading-screen {
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
background-color: rgb(46, 1, 1);
user-select: none;
transition: opacity 1s ease-in-out;
}
.transparent {
opacity: 0;
}
h2 {
font-family: "Courier New", Courier, monospace;
color: #ffffff;
}
</style>
</head>
<body>
<noscript>Please enable javascript to continue using this application.</noscript>
<div id="loading-screen"><h2 id="item">loading...</h2></div>
<div id="phaser-game"></div>
</body>
</html>