diff options
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -327,6 +327,24 @@ svg .hex.refit.action { stroke: lightskyblue; } +svg .hex.battle:not(.action) { + stroke: black; + stroke-width: 4; + stroke-opacity: 0.25; +} + +svg .hex.assault:not(.action) { + stroke: black; + stroke-width: 4; + stroke-opacity: 0.5; +} + +svg .hex.current:not(.action) { + stroke: yellow; + stroke-width: 4; + stroke-opacity: 0.5; +} + svg .hex.from { fill: gold; fill-opacity: 0.2; @@ -449,11 +467,11 @@ svg .hex.tip { } .unit.disrupted { - border-color: crimson; + border-color: dimgray; } .unit.unsupplied { - border-color: green; + border-color: brown; } .unit.r0 { transform: rotate(0deg); } |