blob: e8bff193eab75eab8ac576c4a6d106f19eb2e863 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<style>
.battlemap-container
{
position: relative;
}
.battlemap-tiled
{
position: absolute;
height: 32px;
width: 32px;
}
.battlemap-tile-icon
{
z-index: 0;
}
.asset-tile-\"0\"
{
background-color: green;
}
.asset-tile-\"1\"
{
background-color: yellow;
}
.asset-tile-\"2\"
{
background-color: red;
}
.battlemap-character-icon
{
z-index: 2;
}
.asset-character-icon-Icon0
{
background-color: cyan;
}
.asset-character-icon-Icon1
{
background-color: blue;
}
.asset-character-icon-Icon2
{
background-color: darkblue;
}
.battlemap-marker-icon
{
z-index: 1;
}
.asset-marker-icon-can-go-to
{
background-color:rgba(0,0,0,0.5);
}
.asset-marker-icon-can-attack
{
background-color:rgba(0,0,0,0.7);
}
</style>
</head>
<body>
<script src="script/main.js"></script>
<script>Elm.Main.fullscreen();</script>
</body>
</html>
|