-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.49 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
<!doctype html>
<html>
<head>
<title>Air Traffic Control</title>
<link rel="stylesheet" href="assets/style/main.css" />
<script src="assets/scripts/jquery.min.js"></script>
<script src="assets/scripts/fiber.min.js"></script>
<script src="assets/scripts/modules.js"></script>
</head>
<body>
<div id="canvases">
</div>
<div id="log">
</div>
<input id="command" placeholder="enter command" autofocus="true" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" />
<div id="sidebar">
<ul id="strips">
</ul>
</div>
<div id="score" title="Score">-</div>
<div id="controls">
<span class="fast-forwards control" title="Set time warp to 5">
<img src="assets/images/icons/fast-forwards.png" />
</span>
<span class="pause-toggle control" title="Pause simulation">
<img src="assets/images/icons/pause.png" />
</span>
<span class="switch-airport control" title="Switch airport">
<img src="assets/images/icons/airport.png" />
</span>
<span class="toggle-tutorial control" title="Open tutorial">
<img src="assets/images/icons/tutorial.png" />
</span>
</div>
<div id="airport-switch">
<ul class="list">
</ul>
</div>
<div id="paused">
<img src="assets/images/paused-overlay.png" title="Resume simulation" />
</div>
<div id="loading">
<h1>Air Traffic Control</h1>
<h2>loading</h2>
</div>
</body>
</html>