-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>SPJAM2014</title>
<meta charset="utf-8" />
<style type="text/css">
* { margin:0; padding:0; background-color: #000; }
.content {
position: absolute;
box-sizing: border-box;
width: 960px;
height: 665px;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding-bottom: 645px;
}
/* centralize */
canvas {
position: absolute;
margin: 0;
border: 0;
top: 25px;
right: 0;
bottom: 0;
left: 0;
}
.footer {
position: relative;
text-align: center;
}
.page-link {
color: #555;
font-family: 'Trebuchet MS';
font-size: 14px;
line-height: 20px;
vertical-align: middle;
text-decoration: none;
}
.page-link:hover {
text-decoration: underline;
}
/* FB Like */
#fb-like {
position: absolute;
right: 0;
width: 84px;
height: 20px;
border: 0;
margin: 0;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="content">
<canvas id="canvas"></canvas>
<div class="footer">
<a href="https://www.facebook.com/darklightgame" class="page-link" target="_blank">facebook.com/darklightgame</a>
<iframe id="fb-like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darklightgame.com&width&layout=button_count&action=like&show_faces=false&share=false&height=21&appId=553803254708088"></iframe>
</div>
</div>
<script type="text/javascript" src="src/vendor/howler.min.js"></script>
<script type="text/javascript" src="src/vendor/pixi.dev.js"></script>
<script type="text/javascript" src="build.js"></script>
</body>
</html>