diff options
Diffstat (limited to 'play.css')
-rw-r--r-- | play.css | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -70,6 +70,11 @@ svg .region.action, svg .sea.action { fill-opacity: 0.3; } +svg .region.selected { + fill-opacity: 0.3; + stroke-dasharray: 8 4; +} + body.military svg .region.action { fill: hsl(358, 78%, 51%); } @@ -82,23 +87,24 @@ body.populace svg .region.action { fill: hsl(44, 80%, 52%); } +body.military svg .region.selected { + fill: hsl(358, 78%, 51%); + stroke: hsl(358, 78%, 51%); +} + body.senate svg .region.selected { fill: hsl(206, 100%, 35%); fill-opacity: 0.3; stroke: hsl(206, 100%, 35%); - stroke-width: 4px; - stroke-dasharray: 8 4; } -body.military svg .region.selected { - fill: hsl(358, 78%, 51%); +body.populace svg .region.selected { + fill: hsl(44, 80%, 52%); fill-opacity: 0.3; - stroke: hsl(358, 78%, 51%); - stroke-width: 4px; - stroke-dasharray: 8 4; + stroke: hsl(44, 80%, 52%); } -body.military svg .sea.action { +body svg .sea.action { fill: hsl(206, 100%, 35%); fill-opacity: 0.25; } |