]> git.cworth.org Git - lmno.games/blob - empires/game.css
Merge branch 'flempires-repo-merge'
[lmno.games] / empires / game.css
1 /* By default, hide things that are not to be shown
2  * until a particular game state is reached. */
3 .show-state-join {
4     display:none;
5 }
6
7 .show-state-reveal {
8     display:none;
9 }
10
11 .show-state-capture {
12     display:none;
13 }
14
15 /* And by default, show things that will be hidden
16  * when a particular game state is reached. */
17 .hide-state-join {
18     display:block;
19 }
20
21 .hide-state-reveal {
22     display:block;
23 }
24
25 .hide-state-capture {
26     display:block;
27 }
28
29 /* Players list starts out hidden (until a player is added). */
30 #players-div {
31     display:none;
32 }
33
34 /* Host tools start out hidden. */
35 #host-tools {
36     display: none;
37 }
38
39 /* When a character name is being revealed, we want this to be huge,
40  * (like, filling the screen huge). */
41 #character-reveal {
42     color: var(--text-fg-color);
43     font-size: 300%;
44     font-weight: bold;
45 }