-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombine.html
More file actions
92 lines (92 loc) · 2.63 KB
/
combine.html
File metadata and controls
92 lines (92 loc) · 2.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<html>
<head>
<style>
body {
text-align: center;
min-width: 500px;
}
div.area {
margin-left: auto;
margin-right: auto;
width: 100%;
background-color: #ccc;
border-radius: 10px;
padding: 50px;
width: 500px;
}
table {
border-collapse: collapse;
}
table.grid {
margin-left: auto;
margin-right: auto;
background-color: white;
border-radius: 10px;
}
table.invisible {
background-color: transparent;
}
table.thick {
padding: 5px;
border-collapse: separate;
/* background-color: transparent; */
}
.grid tr {
height: 40px;
}
.grid td {
width: 40px;
height: 40px;
}
.grid div {
/* margin: 2px; */
margin: auto;
width: 38px;
height: 38px;
border-radius: 10px;
}
table.scale {
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
}
.scale td {
width: 20px;
height: 20px;
border-radius: 5px;
/* border: 1px solid black */
}
td.spacer {
width: 40px;
}
</style>
</head>
<body>
<div class='area'>
<table>
<tr>
<td rowspan=2>
<table class="grid">
<tbody id='field'/>
</table>
</td>
<td class="spacer" rowspan=2>
</td>
<td>
<table class="grid thick">
<tbody id="next"/>
</table>
</td>
</tr>
<tr>
<td valign="bottom">
<table class="scale">
<tbody id="scale"/>
</table>
</td>
</tr>
</table>
</div>
<script src='combine.js'></script>
</body>
</html>