diff options
-rw-r--r-- | play.css | 20 | ||||
-rw-r--r-- | rules.js | 10 |
2 files changed, 22 insertions, 8 deletions
@@ -37,11 +37,25 @@ body.Communist header.your_turn { background-color: hsl(355, 70%, 75%); } #log .h5 { text-decoration: underline; } #log { background-color: floralwhite } -#log .h1 { background-color: tan } +#log .h1 { background-color: tan ;} #log .h2 { background-color: wheat } #log .h3 { background-color: wheat } -#log .h2.dem { background-color: hsl(206, 85%, 80%); } -#log .h2.com { background-color: hsl(355, 70%, 80%); } + +#log .h1, .h2:not(.group), .h3 { + text-transform: uppercase; + border-top: 1px solid black; + border-bottom: 1px solid black; + font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; +} +#log .h2:not(.group).dem { + font-size: 10px; + background-color: hsl(206, 85%, 80%); border-top: 1px solid hsl(206, 85%, 25%); border-bottom: 1px solid hsl(206, 85%, 25%);} +#log .h2:not(.group).com { + font-size: 10px; + background-color: hsl(355, 70%, 80%); + border-top: 1px solid hsl(355, 70%, 25%); + border-bottom: 1px solid hsl(355, 70%, 25%); +} #log .group.dem { background-color: hsl(206, 85%, 90%); } #log .group.com { background-color: hsl(355, 70%, 90%); } #log .group.both { background-color: gainsboro; } @@ -2203,7 +2203,7 @@ states.stasi_resolve_common_european_home = { function add_infl(space, ops) { push_undo() - log_summary(`£ - %${space}`) + log_summary(`£ in %${space}`) // If AHBR - check AHBR conditions if (game.persistent_events.includes(C_AUSTRIA_HUNGARY_BORDER_REOPENED)) { @@ -2276,7 +2276,7 @@ function add_infl(space, ops) { function remove_infl(space, ops) { push_undo() - log_summary(`£ - %${space}`) + log_summary(`£ in %${space}`) if (game.remove_opponent_infl === true) { if (game.active === COM) { @@ -4755,7 +4755,7 @@ function vm_take_control(space) { function vm_do_add_infl_free(space) { push_undo() - log_summary(`£ - %${space}`) + log_summary(`£ in %${space}`) // Update influence values if (game.active === COM) { @@ -4812,7 +4812,7 @@ function vm_add_limited_infl() { function vm_do_add_limited_infl(space, max_infl) { push_undo() - log_summary(`£ - %${space}`) + log_summary(`£ in %${space}`) game.vm_available_ops -- if (!game.vm_influence_added) { @@ -4916,7 +4916,7 @@ function vm_remove_limited_opp_infl() { function vm_do_remove_limited_infl(space, max_infl) { push_undo() - log_summary(`£ - %${space}`) + log_summary(`£ in %${space}`) game.vm_available_ops -- if (!game.vm_influence_added) { |