-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.prod.html
94 lines (83 loc) · 1.55 KB
/
index.prod.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Thrust - canvas game</title>
<style type="text/css">
body,div
{
margin:0;
padding: 0;
background: #000;
color: #f0f0f0;
}
#holder
{
width: 100%;
margin: 0 auto;
background: #080808;
overflow: hidden;
}
#header
{
height: 40px;
}
#header a
{
color: #eee;
float: right;
margin: 0 1ex;
}
#header a:visited
{
color: #ddf;
}
#header ul,#header li
{
display: inline
}
#header select
{
vertical-align: super;
}
#header h1
{
font-size: 32px;
line-height: 40px;
display: inline;
color: #fff;
}
#header h1 a
{
float: none;
text-decoration: none;
}
span.nav
{
font-size: 0.9em;
font-color: #ddd;
float: right;
line-height: 40px;
height: 40px;
}
</style>
<script type="text/javascript" src="thrust-all.js">
</script>
</head>
<body>
<div id="header">
<form action="index.html" method="get">
<h1><a href="index.html">Thrust 2010</a></h1>
<div id="cheat" style="display: none">
<select id="levelSelector" name="level" class="nav">
</select>
</div>
<a class="nav" href="help.html">Instructions</a>
<a class="nav" href="http://github.com/fforw/thrust2010">Github</a>
<a class="nav" href="thrust-current.zip" title="Version $Id$">Download .ZIP</a>
</form>
</div>
<canvas id="teh_canvas"><p>This only works with browsers supporting canvas.</p></canvas>
</body>
</html>