diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-07 14:26:55 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-11-07 14:26:55 +0100 |
commit | c44b4d238ffbb9983a651a2d6385c32dcc964510 (patch) | |
tree | fbd6575f426b4a13f4f8450163a4742586c467ad /play.html | |
parent | 2042e9c6da260813e7fa68ea62af3e41acf70fab (diff) | |
download | votes-for-women-c44b4d238ffbb9983a651a2d6385c32dcc964510.tar.gz |
implementation of add_campaigners, receive/spend_buttons
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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; } |