X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empires%2Fgame.css;h=bc3340bf2b75d9e0aa99bf6186b50f8c907492ce;hp=1bb0e62eb0eada366c08f28a523def5ed75ee10d;hb=HEAD;hpb=f3188cb0892ed398112b3d14f444e01b79de6f12 diff --git a/empires/game.css b/empires/game.css index 1bb0e62..bc3340b 100644 --- a/empires/game.css +++ b/empires/game.css @@ -1,32 +1,36 @@ /* By default, hide things that are not to be shown - * until a particular game state is reached. */ -.show-state-join { + * until a particular game phase is reached. */ +.show-phase-join { display:none; } -.show-state-reveal { +.show-phase-reveal { display:none; } -.show-state-capture { +.show-phase-capture { display:none; } /* And by default, show things that will be hidden - * when a particular game state is reached. */ -.hide-state-join { + * when a particular game phase is reached. */ +.hide-phase-join { display:block; } -.hide-state-reveal { +.hide-phase-reveal { display:block; } -.hide-state-capture { +.hide-phase-capture { display:block; } -/* Players list starts out hidden (until a player is added). */ +/* Spectators and players lists start out hidden (until people are added). */ +#spectators-div { + display:none; +} + #players-div { display:none; }