blob: 45af2fb5ee657dde3967865091f51215cc9a4aff (
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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
svg {
background-color: darkgray;
flex-basis: 100%;
}
div#content {
flex-basis: 0;
}
body {
margin: 0;
display: flex;
}
circle#point {
fill: transparent;
stroke: black;
stroke-width: 2px;
}
use[href="#point"] {
opacity: 0;
}
use[href="#point"].active {
opacity: 1;
}
circle.counter {
stroke: transparent;
stroke-width: 0.5in;
}
circle.counter[data-troop-allegiance="liao"] {
fill: green;
}
circle.counter[data-troop-allegiance="davion"] {
fill: red;
}
text.counter {
font-size: 80px;
font-weight: bold;
stroke: black;
fill: white;
stroke-width: 2px;
font-family: sans-serif;
cursor: default;
pointer-events: none;
}
rect#map {
fill: black;
opacity: 0;
/* fill-opacity: 0;
stroke: red;
stroke-width: 4px; */
}
polygon.firing-arc {
opacity: 0.1;
fill: black;
/* fill: transparent;
stroke-width: 2px;
stroke: black; */
}
button.set-firing-arc img {
vertical-align: middle;
pointer-events: none;
}
line.firing-arc {
stroke: blue;
opacity: 0.1;
}
line.ruler {
stroke-width: 0.25in;
}
.sight-line {
stroke: black;
stroke-width: 3px;
}
.soldier-record {
display: inline-block;
white-space: nowrap;
}
image#img1 {
transform: scale(3.41) rotate(-0.15deg);
/* opacity: 0.33; */
}
image#img2 {
transform: scale(1.39, 1.407) rotate(0.07deg);
/* opacity: 0.33; */
}
.wall {
fill: none;
stroke: red;
stroke-width: 7px;
opacity: 0.7;
}
#hex {
opacity: 0.2;
/* stroke: black;
stroke-opacity: 0.2; */
transform: scale(0.26) translate(-2in, -2in);
}
#asterisk {
font-size: 30;
}
#record-sheet {
display: flex;
/* display: none; */
}
#record-sheet > div {
padding: 0 2px;
}
#record-sheet > div > div {
border: 1px solid black;
margin: 2px 0;
padding: 2px;
}
img.logo {
width: 100px;
margin: 0 auto;
display: block;
}
div.soldier-record.selected {
background-color: lightgray;
}
rect#debug-view-box {
/* stroke: red;
stroke-width: 20px; */
fill: blue;
fill-opacity: 0.2;
}
|