forked from madmaw/LD33
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 1.29 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
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<style>
html, body {
margin: 0;
background: #000;
color: #FF0;
font-family: Courier;
font-size: larger;
font-weight: bold;
text-align: center;
}
body > * {
position: absolute;
/*
top: 0;
*/
left: 0;
width: 100%;
}
.d {
color: #FFF;
}
.h {
display: none;
}
.l {
display: block;
margin-left: 5%;
margin-right: 5%;
margin-top: 0.9em;
}
.l * {
width: 33%;
display: inline-block;
}
/*
.o {
background-color: #333;
}
*/
</style>
<script src="build/out.js?__inline=true"></script>
<!-- analytics-->
<!--
<script src="lib/analytics.js"></script>
-->
</head>
<body>
<div class="h" id="m">
<h1>POUST</h1>
<a class="l d"><div>World</div><div>#</div><div>Best</div></a>
<div id="l">
</div>
</div>
<canvas class="h" id="c"></canvas>
</body>
</html>