-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
51 lines (51 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sloopste</title>
<style>
table {
border-collapse: collapse;
}
td {
width: 30px;
height: 30px;
border: 1px solid black;
position: relative;
}
.edge {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
pointer-events: none;
z-index: 1;
text-align: center;
vertical-align: middle;
}
.edge.used {
background-color: black;
}
.horizontal {
width: 39px;
height: 6px;
left: 13px;
top: 13px;
}
.vertical {
width: 6px;
height: 39px;
left: 13px;
top: 13px;
}
</style>
<script src="script.js"></script>
</head>
<body>
<h2 id="level">Use "Load puzzles" with a level string</h2>
<h3 id="info"></h3>
<h3 id="time"></h3>
<div id="levelSelect" style="display: none;"></div>
<table id="gridTable" style="display: none;"></table>
</body>
</html>