diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-19 21:50:38 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:08:56 +0100 |
commit | fd8e3e00747d24fbd583f92f5c7a3504427898d6 (patch) | |
tree | 1e501dcefeca235e7948f7c9b822f6f7fd34cf14 /play.html | |
parent | 646086a82fd8058c7a237886ab0cb0108072a6d3 (diff) | |
download | julius-caesar-fd8e3e00747d24fbd583f92f5c7a3504427898d6.tar.gz |
Small fixes to block games.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -121,12 +121,12 @@ .space.city { width: 60px; height: 60px; - border-radius: 60px; + border-radius: 50%; } .space.sea { width: 70px; height: 70px; - border-radius: 70px; + border-radius: 50%; } .space.highlight { cursor: pointer; @@ -148,7 +148,7 @@ body.shift .block.known:hover { .map .block { position: absolute; z-index: 2; } .map .block.highlight { z-index: 3; } .map .block.selected { z-index: 4; } -.map .block:hover { z-index: 5; } +.map .block.known:hover { z-index: 5; } .block.highlight { cursor: pointer; } |