diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-01 12:29:13 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-10-01 12:29:13 +0200 |
commit | 4a8d29b681c033596ef115583d0f6c5000f64f10 (patch) | |
tree | b05ce874b86d8c3699c975aa1475cc9a71023c71 | |
parent | 425f59773252262d5d0514d978888b4f92a58025 (diff) | |
download | time-of-crisis-4a8d29b681c033596ef115583d0f6c5000f64f10.tar.gz |
Zoom out enough to show available leaders.
-rw-r--r-- | play.css | 15 | ||||
-rw-r--r-- | play.html | 2 |
2 files changed, 13 insertions, 4 deletions
@@ -73,18 +73,25 @@ body.Green .your_turn { background-color: hsl(99,36%,65%) } #mapwrap { width: 2550px; - height: 1650px; - box-shadow: 0px 1px 10px #0008; - margin-bottom: 100px; + height: 1740px; + margin-bottom: 30px; } #map { + position: absolute; + width: 2550px; + height: 1740px; +} + +#board { + position: absolute; width: 2550px; height: 1650px; background-size: cover; background-repeat: no-repeat; background-image: url(map75.jpg); background-color: #e8d792; + box-shadow: 0px 1px 10px #0008; } #crisis_table { @@ -111,7 +118,7 @@ body.p3 #crisis_table { display: block; width: 250px; height: 350px; - bottom: 50px; + bottom: 150px; left: 50px; } @@ -49,6 +49,8 @@ <div id="mapwrap"> <div id="map"> + +<div id="board"></div> <div id="crisis_table"></div> <div id="crisis_highlight" class="c0"></div> |