diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-23 15:42:49 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:08:56 +0100 |
commit | bba2352b38b5ad5d25bb07198eed2d426ce1831d (patch) | |
tree | c238d30bbe72ec7338bbcdab4c1ccb2c56d383cb /play.html | |
parent | 7eebbf33f8e84cc6ca468cfe1aa23297100f0bfe (diff) | |
download | julius-caesar-bba2352b38b5ad5d25bb07198eed2d426ce1831d.tar.gz |
caesar: Pick Mars and Neptune battles after movement.
This is like the Jihad card in Crusader Rex where the rules clarify
that the surprise attack is declared before player two moves.
We can then also mark the surprise attacking blocks on the map.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -80,6 +80,7 @@ .battle .battle_separator { background-color: brown; } .battle_line.enemy .battle_menu_list { min-height: 0; } +.battle_reserves .battle_menu_list { min-height: 0; } .battle_reserves > td > div { height: 75px; padding: 5px; } .battle_a_cell > div { min-width: 90px; padding: 5px 5px; } .battle_b_cell > div { min-width: 270px; padding: 5px 5px; } @@ -178,6 +179,16 @@ body.shift .block.known:hover { .columbia-labels .block.r2 { transform: rotate(-180deg); } .columbia-labels .block.r3 { transform: rotate(-270deg); } +.block.mars { + background-image: url("mars.svg"); + background-size: 80%; + background-position: center; +} +.block.neptune { + background-image: url("neptune.svg"); + background-size: 80%; + background-position: center; +} .block { box-shadow: 0px 0px 4px 0px black; } |