-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/units/rom_aux.png">
<style>
body {
font-family: sans-serif;
}
.float-child {
float: left;
height: 80px;
}
canvas {
clear: both;
}
#messages {
font-size: 10pt;
width: 900px;
background-color: lightgrey;
/* add a vertical scrollbar */
height: 80px;
overflow-y: scroll;
/* ensure it scrolls to the bottom */
scroll-behavior: smooth;
}
</style>
</head>
<body>
<div class="float-child" style="width: 700px">
<p id="info"> </p>
<p>
<button id="end-phase">End Phase</button>
<button id="ai-continue">AI Continue</button>
<button id="playout">Playout</button>
<label for="pause">Pause</label>
<input type="checkbox" id="pause" name="pause" value="pause">
<label for="delay">Delay</label>
<input type="number" id="delay" name="delay" value="800" min="0" max="1000">
</p>
</div>
<div id="messages" class="float-child"></div>
<script type="module" src="src/main.js"></script>
</body>
</html>