-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Paternoster Game</title>
<script type="text/javascript" src="./phaser.min.js"></script>
<script type="text/javascript" src="./app.js"></script>
<style type="text/css">
@font-face {
font-family: 'regular';
src: url('assets/regular.eot?#iefix') format('embedded-opentype'),
url('assets/regular.otf') format('opentype'),
url('assets/regular.woff') format('woff'),
url('assets/regular.ttf') format('truetype'),
url('assets/regular.svg#regular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
margin: 0;
background: #333;
font-family: 'regular', Verdana, sans-serif;
}
canvas {
margin: 0 auto;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate( -50%, -50% );
transform: translate( -50%, -50% );
}
</style>
</head>
<body>
</body>
</html>