index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <Catalin.Mititiuc@gmail.com> | 2024-03-31 12:33:29 -0700 |
---|---|---|
committer | Catalin Mititiuc <Catalin.Mititiuc@gmail.com> | 2024-03-31 12:41:28 -0700 |
commit | 7fa416ee1a173be523eecdeaf2cfa2eb4c0d1531 (patch) | |
tree | dab50a55b17226274ac9abcdf8def39030f3eacd /style.css | |
parent | 8332ce9bea0c6977ebd2a13396fb6cf4013167b4 (diff) |
WIP: sight line, distance
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; */ |