forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkiosk.html
More file actions
52 lines (49 loc) · 1.56 KB
/
Copy pathkiosk.html
File metadata and controls
52 lines (49 loc) · 1.56 KB
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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Minigo: kiosk</title>
<link href="style.css" rel="stylesheet">
<script type="text/javascript" src="socketio/socket.io.min.js"></script>
<script data-main="kiosk" src="require/require.js"></script>
<style>
body { cursor: none; }
.minigui {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
height: 78vh;
margin-top: 10vh;
}
#main-board { width: 100%; height: 100%; }
.main-board-pad { height: 100%; width: 78vh; padding: 3vh; }
.small-board { width: 24vh; height: 24vh; }
.graph { width: 32vh; height: 24vh; }
.log-container { width: 32vh; height: 51vh; }
.log { height: 51vh; font-size: 0.7vh; }
</style>
</head>
<body>
<div class="minigui"
data-gtp-report_search_interval="50">
<div class="main-board-pad board"><div id="main-board"></div></div>
<div class="sp-3vh"></div>
<div class="fs-0">
<div id="search-board" class="board small-board"></div>
<div class="sp-3vh"></div>
<div id="n-board" class="board small-board"></div>
<div class="sp-3vh"></div>
<div id="dq-board" class="board small-board"></div>
</div>
<div class="sp-3vh"></div>
<div class="fs-0">
<div id="winrate-graph" class="graph"></div>
<div class="sp-3vh"></div>
<div class="log-container">
<div id="log" class="log"></div>
</div>
</div>
</div>
</body>
</html>