-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (65 loc) · 1.32 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset= "utf-8" />
<title>kairo-gokko</title>
<script type="text/javascript" src="init.js"></script>
<style>
body {
margin: 0;
padding: 1rem;
font-family: monospace;
}
.run_button {
margin: 1rem;
padding: 0.5rem;
font-size: 150%;
display: block;
}
.loading_container {
width: 640px;
height: 480px;
padding: 1rem;
background: #444;
color: #ddd;
font-weight: bold;
display: none;
}
.loading {
width: 1rem;
height: 1rem;
background: #ddd;
border-radius: 0.15rem;
animation: loading 2s infinite;
display: inline-block;
}
@keyframes loading {
0% { transform: rotate( 0deg); }
100% { transform: rotate(360deg); }
}
.loading_progress {
font-size: 150%;
}
.circuit_list_container {
display: none;
}
.circuit_list {
height: 30px;
}
</style>
</head>
<body>
<button class="run_button">RUN</button>
<div class="loading_container">
LOADING ...
<div class="loading"></div>
<div class="loading_progress"></div>
</div>
<div class="circuit_list_container">
<select class="circuit_list"></select>
</div>
<canvas id="dxopal-canvas"></canvas>
<div id="dxopal-errors"></div>
<div class="footer"></div>
</body>
</html>