]> git.cworth.org Git - lmno.games/blob - empires/game.css
57cd206e989ce20c41288a1d6bb4d1c99b284e6a
[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 /* Spectators and players lists start out hidden (until people are added). */
30 #spectators-div {
31     display:none;
32 }
33
34 #players-div {
35     display:none;
36 }
37
38 /* Host tools start out hidden. */
39 #host-tools {
40     display: none;
41 }
42
43 /* When a character name is being revealed, we want this to be huge,
44  * (like, filling the screen huge). */
45 #character-reveal {
46     color: var(--text-fg-color);
47     font-size: 300%;
48     font-weight: bold;
49 }