diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-07-26 14:21:48 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 13:11:26 +0100 |
commit | 1eff37ad10dd3d94ad782a5822d0c02a6d8f4ed5 (patch) | |
tree | 08d6bed5e577b4436400475e2125709f4eccfd7e /play.html | |
parent | d8d032cea285e4834b77f9d3655b87604e67ad07 (diff) | |
download | rommel-in-the-desert-1eff37ad10dd3d94ad782a5822d0c02a6d8f4ed5.tar.gz |
Supply lines and disrupted units and battle hexes.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 52 |
1 files changed, 26 insertions, 26 deletions
@@ -219,6 +219,22 @@ svg .side { stroke-width: 8px; } +svg .side.axis_control { + stroke: green; + stroke-width: 8px; + stroke-opacity: 0.8; + stroke-dasharray: 54 100; + stroke-dashoffset: -8; +} + +svg .side.allied_control { + stroke: brown; + stroke-width: 8px; + stroke-opacity: 0.8; + stroke-dasharray: 54 100; + stroke-dashoffset: -8; +} + svg .side.axis_supply { stroke-width: 64px; stroke-linecap: butt; @@ -241,22 +257,6 @@ svg .side.allied_supply.axis_supply { stroke: yellow; } -svg .side.axis_control { - stroke: green; - stroke-width: 8px; - stroke-opacity: 0.8; - stroke-dasharray: 54 100; - stroke-dashoffset: -8; -} - -svg .side.allied_control { - stroke: brown; - stroke-width: 8px; - stroke-opacity: 0.8; - stroke-dasharray: 54 100; - stroke-dashoffset: -8; -} - svg .hex.action { stroke: white; stroke-width: 2; @@ -272,6 +272,16 @@ svg .hex.to { fill-opacity: 0.2; } +svg .hex.axis_control { + fill: green; + fill-opacity: 0.2; +} + +svg .hex.allied_control { + fill: brown; + fill-opacity: 0.2; +} + svg .hex.axis_supply { fill: green; fill-opacity: 0.3; @@ -287,16 +297,6 @@ svg .hex.axis_supply.allied_supply { fill-opacity: 0.3; } -svg .hex.axis_control { - fill: green; - fill-opacity: 0.2; -} - -svg .hex.allied_control { - fill: brown; - fill-opacity: 0.2; -} - svg .hex.tip { fill: black; fill-opacity: 0.6; |