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-04-07 11:08:06 -0700 |
---|---|---|
committer | Catalin Mititiuc <Catalin.Mititiuc@gmail.com> | 2024-04-07 11:08:06 -0700 |
commit | dacecbb4f57142b8292bb53955a45f2cd5707f65 (patch) | |
tree | c0bc69f4e0c0ee6a5af02eeedfd9e13a31bea57a | |
parent | 5afa53ef7aa1ecf50d2ba2eaebb4df0b4337a8a9 (diff) |
Remove stroke around selected counters
-rw-r--r-- | style.css | 21 |
1 files changed, 15 insertions, 6 deletions
@@ -239,12 +239,6 @@ g#points g use.counter { r: 5px; } -g#points g use.counter.selected { - stroke: orange; - stroke-width: 2px; - r: 6px; -} - g#points g.hover use[href="#point"] { opacity: 1; fill: orange; @@ -374,6 +368,21 @@ button.set-firing-arc img { background-color: white; } +.soldier-record [slot="troop-number"] { + color: white; + font-weight: bold; + border-radius: 10px; + padding: 0 4px; +} + +.soldier-record[data-troop-allegiance="davion"] [slot="troop-number"] { + background-color: red; +} + +.soldier-record[data-troop-allegiance="liao"] [slot="troop-number"] { + background-color: green; +} + .soldier-record.selected { background-color: khaki; } |