-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (56 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gem Crush - Phaser & Typescript</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta http-equiv="cleartype" content="on">
<meta name="format-detection" content="telephone=no">
<style>
body {
margin: 0;
padding: 0;
margin-top: 70px;
background-color: #06003b;
display: flex;
align-items: center;
justify-content: center;
margin-top: 20;
}
canvas {
width: 100%;
height: 100%;
}
#header {
background-color: antiquewhite;
width: 100%;
position: absolute;
top: 0px;
height: 45px;
text-align: center;
padding-top: 15px;
align-items: center;
justify-content: center;
}
#header > a {
margin: auto;
padding-top: 150px;
color: #202020;
font-size: 20pt;
text-decoration: none;
font-weight: bold;
}
#header > a:hover {
color: #071d5a;
font-size: 21pt;
}
</style>
</head>
<body>
<div id="header">
<a href="https://github.com/williangaspar/phaser3Typescript">Source Code Here</a>
</div>
<div id="content"></div>
<script type="text/javascript" src="./dist/vendor.bundle.js"></script><script type="text/javascript" src="./dist/bundle.js"></script></body>
</html>