-
Notifications
You must be signed in to change notification settings - Fork 64
/
index.html
40 lines (39 loc) · 1.04 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Voxel Hello World</title>
<meta charset="utf-8">
<style type="text/css">
body {
font-family: Monospace;
font-size: 12px;
background-color: #f0f0f0;
margin: 0px;
overflow: hidden;
}
#container {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
#crosshair {
position: fixed;
top: 50%;
left: 50%;
margin: -16px 0 0 -16px;
width: 32px;
height: 32px;
}
#stats { bottom: 0px; right: 0px; }
.bar-tab { right: 33% !important; left: 33% !important; }
.logo {position: absolute; top: 5px; left: 5px; }
.errorMessage { text-align: center; width: 200px; margin: 20px auto; }
</style>
</head>
<body>
<img class="logo" src="logo-white.png">
<div id="container"></div>
<div id="crosshair"><img src="crosshair.png"/></div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>