From c44b4d238ffbb9983a651a2d6385c32dcc964510 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:26:55 +0100 Subject: implementation of add_campaigners, receive/spend_buttons --- play.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'play.html') diff --git a/play.html b/play.html index 176bb74..4948e79 100644 --- a/play.html +++ b/play.html @@ -124,6 +124,12 @@ svg { position: absolute; } +path.state.action { + fill: yellow; fill-opacity: 0.8; + stroke: white; + stroke-width: 20; +} + path.state:hover { fill: white; } @@ -139,6 +145,11 @@ div.state { height: 64px; } +div.state.action { + background-color: rgba(251, 186, 0, 0.5); + border-color: white; +} + div.state:hover { background-color: #fff8; } @@ -154,6 +165,11 @@ div.region { height: 65px; } +div.region.action { + background-color: rgba(251, 186, 0, 0.5); + border-color: white; +} + div.region:hover { background-color: #fff8; } -- cgit v1.2.3