index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -5,9 +5,14 @@ body { overflow: hidden; } +#map-container { + flex-basis: 100%; + position: relative; +} + svg { background-color: darkgray; - flex-basis: 100%; + /* flex-basis: 100%; */ /* max-height: 50vh; */ /* max-height: 100vw; */ } @@ -25,6 +30,24 @@ svg text { /* display: none; */ } +div#status { + position: absolute; + bottom: 0; + right: 0; + margin: 3px; + display: none; +} + +#hex-counter { + padding: 2px; + background-color: rgba(255, 255, 255, 0.5); + border-radius: 2px; +} + +#hex-count { + font-family: monospace; +} + div#content { display: flex; /* display: none; */ |