-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="dist/js/bundle.js"></script>
<title>Document</title>
<style>
body {
background-color: darkgreen;
}
.bloquinho {
display: inline-block;
width: 30px;
height: 30px;
}
div.tile {
display: inline-block;
}
div.tile div {
margin: 0 0 0 0;
padding: 0 0 0 0;
line-height: 0;
font-size:0;
}
canvas.tile {
width: 32px;
height: 32px;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}
.tileBloquinho {
display: inline-block;
width: 5px;
height: 5px;
}
button {
position: absolute;
width: 16px;
height: 16px;
padding: 0px 0px 0px 0px;
border-width: 0px 0px 0px 0px;
box-sizing: content-box;
min-width: 0px;
min-height: 0px;
cursor: pointer;
}
</style>
</head>
<body>
<div style="display: none;" id="paletteTemplate">
<h1>Palette Address</h1>
<div>
</div>
</div>
</body>
</html>