-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
46 lines (45 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>ZType – Typing Game - Type to Shoot</title>
<link rel="shortcut icon" href="media/favicon.png" type="image/png">
<link rel="icon" href="media/favicon.png" type="image/png">
<style type="text/css">
html,body {
background-color: #000;
background-image: url(media/background/page.png);
color: #555;
font-family: helvetica, arial, sans-serif;
margin: 0;
padding: 0;
font-size: 10pt;
}
a {
color: #777;
text-decoration: none;
}
a:hover {
color: #ccc;
}
#ztype-game-canvas {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 0;
z-index: 1000002;
box-shadow: 0 0 30px #000;
}
body.mobile #ztype-byline { display: none; }
body.mobile #ztype-gsense { display: none; }
</style>
<script type="text/javascript" src="ztype.js" charset="UTF-8"></script>
<script type="text/javascript" src="ztype-trainer.js" charset="UTF-8"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
</head>
<body>
<canvas id="ztype-game-canvas"></canvas>
</body>
</html>