-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
index.html
executable file
·68 lines (59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#gameCanvas {
display: flex;
flex-direction: column;
align-items: center;
}
.row {
display: flex;
flex-direction: row;
}
.row:first-child {
border-top: 1px solid #000;
}
.row:last-child {
border-bottom: 1px solid #000;
}
.column {
width: 50px;
height: 50px;
border: 1px solid #000;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.column:first-child {
border-left: 2px solid #000;
}
.column:last-child {
border-right: 2px solid #000;
}
.column:hover {
background: #eeeeee;
}
</style>
</head>
<body>
<div id="gameCanvas"></div>
<button id="resetBtn">Reset</button>
<script src="./app.bundle.js"></script>
</body>
</html>