-
Notifications
You must be signed in to change notification settings - Fork 0
/
toh.html
45 lines (44 loc) · 2.07 KB
/
toh.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
<html>
<body>
<div style="position: absolute; top: 30vh; left: 10vw; height: 40;">
<div style="background-color: white; opacity: 0.7;">
<table border=1 cellpadding=0 cellspacing=0 style="height: 200px; width: 80vw;">
<tr>
<td class='container' align="center" valign="top" style="height: 100%; width: 33%;">
<div >
<table cellpadding=0 cellspacing=0 class="stack" id="stack-1">
<tr><td>Stack 1</td></tr>
</table>
<div class='steves-place'></div>
</div>
</td>
<td class='container' align="center" valign="top" style="height: 100%; width: 33%;">
<div >
<table cellpadding=0 cellspacing=0 class="stack" id="stack-2">
<tr><td>Stack 2</td></tr>
</table>
<div class='steves-place'></div>
</div>
</td>
<td class='container' align="center" valign="top" style="height: 100%; width: 33%;">
<div>
<table cellpadding=0 cellspacing=0 class="stack" id="stack-3">
<tr><td>Stack 3</td></tr>
</table>
<div class='steves-place'></div>
</div>
</td>
</tr>
</table>
</div>
</div>
<div style="position: absolute; top: 90vh; left: 40vw; height: 20vw;">
<input type="button" id='reload' value="Restart" />
<input type="button" id='level-up' value="Next Level" />
<input type="button" id='level-down' value="Previous Level" />
</div>
</body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"> </script>
<script type="text/javascript" src="res/toh.js"> </script>
<link rel="stylesheet" href="res/toh.css" />
</html>