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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
.battlemap-container
{
overflow: auto;
width: inherit;
flex: 1;
}
.battlemap-footer
{
display: flex;
flex: 0;
max-height: 30%;
}
.battlemap-actual
{
display: inline-block;
}
/** Inside the container ******************************************************/
.battlemap-tiled
{
position: absolute;
height: 32px;
width: 32px;
}
.battlemap-tile-icon {z-index: 0;}
.battlemap-marker-icon {z-index: 1;}
.battlemap-character-icon {z-index: 2;}
.battlemap-path-icon {z-index: 3; color: white;}
.battlemap-character-icon
{
box-sizing: border-box;
border: 2px solid rgba(0,0,0,0.5);
border-radius: 25px;
}
.battlemap-marker-icon
{
box-sizing: border-box;
border: 2px groove rgba(0,0,0,0.5);
}
.battlemap-can-go-to-marker {background-color:rgba(0,0,0,0.5);}
.battlemap-can-attack-marker {background-color:rgba(0,0,0,0.7);}
.battlemap-character-icon-disabled
{
opacity: 0.4;
filter: grayscale(50%);
border: 2px dotted rgba(0,0,0,0.7);
}
/**** Path Icons **************************************************************/
.battlemap-path-icon-NR:before,
.battlemap-path-icon-LR:before,
.battlemap-path-icon-RR:before,
.battlemap-path-icon-UR:before,
.battlemap-path-icon-DR:before
{
content: "}";
}
.battlemap-path-icon-NL:before,
.battlemap-path-icon-LL:before,
.battlemap-path-icon-RL:before,
.battlemap-path-icon-UL:before,
.battlemap-path-icon-DL:before
{
content: "{";
}
.battlemap-path-icon-NU:before,
.battlemap-path-icon-LU:before,
.battlemap-path-icon-RU:before,
.battlemap-path-icon-UU:before,
.battlemap-path-icon-DU:before
{
content: "^";
}
.battlemap-path-icon-ND:before,
.battlemap-path-icon-LD:before,
.battlemap-path-icon-RD:before,
.battlemap-path-icon-UD:before,
.battlemap-path-icon-DD:before
{
content: "v";
}
.battlemap-path-icon-markN:before,
.battlemap-path-icon-markL:before,
.battlemap-path-icon-markU:before,
.battlemap-path-icon-markD:before,
.battlemap-path-icon-markR:before
{
content: "x";
}
/** Footer ********************************************************************/
.battlemap-tabmenu
{
flex: 1;
}
.battlemap-manual-controls
{
flex: initial;
display: flex;
flex-direction: column;
}
/**** Tabmenu *****************************************************************/
.battlemap-tabmenu-selector
{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.battlemap-tabmenu-selector button
{
flex: 1;
}
.battlemap-tabmenu-content
{
flex: initial;
}
|