diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-28 12:51:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-11-01 14:21:53 +0100 |
commit | c8959c8c536dbd0c0e69c60d38e2fcb4d1447ad8 (patch) | |
tree | 4b8e04bc24e064e54e5b129d5012494389f289a8 | |
parent | a3e3a6536eab2255b657461d2f321a50e82cf0e5 (diff) | |
download | votes-for-women-c8959c8c536dbd0c0e69c60d38e2fcb4d1447ad8.tar.gz |
Set piece size more tightly on campaigners (reduced hit area).
-rw-r--r-- | play.html | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -111,17 +111,17 @@ div.region:hover { .piece.yellow.cube { background-color: #fec36d; } .piece.red.cube { background-color: #e06136; } -.piece.congress { width: 32px; height: 32px; background-image: url(pieces/cog.svg); } -.piece.no { width: 42px; height: 32px; background-image: url(pieces/no.svg); } -.piece.yes { width: 42px; height: 32px; background-image: url(pieces/yes.svg); } -.piece.turn3d { width: 33px; height: 36px; background-image: url(pieces/turn.svg); } -.piece.purple1 { width: 36px; height: 50px; background-image: url(pieces/purple1.svg); } -.piece.purple2 { width: 36px; height: 50px; background-image: url(pieces/purple2.svg); } -.piece.yellow1 { width: 36px; height: 50px; background-image: url(pieces/yellow1.svg); } -.piece.yellow2 { width: 36px; height: 50px; background-image: url(pieces/yellow2.svg); } -.piece.red1 { width: 36px; height: 50px; background-image: url(pieces/red1.svg); } -.piece.red2 { width: 36px; height: 50px; background-image: url(pieces/red2.svg); } -.piece.red3 { width: 36px; height: 50px; background-image: url(pieces/red3.svg); } +.piece.yes { width: 42px; height: 32px; background-size: 42px 32px; background-image: url(pieces/yes.svg); } +.piece.yellow2 { width: 36px; height: 50px; background-size: 36px 50px; background-image: url(pieces/yellow2.svg); } +.piece.yellow1 { width: 34px; height: 50px; background-size: 36px 50px; background-image: url(pieces/yellow1.svg); } +.piece.turn3d { width: 33px; height: 36px; background-size: 33px 36px; background-image: url(pieces/turn.svg); } +.piece.red3 { width: 30px; height: 50px; background-size: 36px 50px; background-image: url(pieces/red3.svg); } +.piece.red2 { width: 30px; height: 50px; background-size: 36px 50px; background-image: url(pieces/red2.svg); } +.piece.red1 { width: 30px; height: 50px; background-size: 36px 50px; background-image: url(pieces/red1.svg); } +.piece.purple2 { width: 36px; height: 50px; background-size: 36px 50px; background-image: url(pieces/purple2.svg); } +.piece.purple1 { width: 34px; height: 50px; background-size: 36px 50px; background-image: url(pieces/purple1.svg); } +.piece.no { width: 42px; height: 32px; background-size: 42px 32px; background-image: url(pieces/no.svg); } +.piece.congress { width: 32px; height: 32px; background-size: 32px 32px; background-image: url(pieces/cog.svg); } .card { |