]> git.cworth.org Git - lmno.games/blob - empires/style.css
Implement support for the "game-state" and "character-reveal" events
[lmno.games] / empires / style.css
1 /* Default message severity is "info" but can be overriden. */
2 .message {
3     padding: 1em;
4     background-color: #46a7f5;
5     color: white;
6     transition: 0.3s;
7     margin-bottom: 0.5em;
8     font-weight: bold;
9 }
10
11 .success {
12     background-color: #6abc6d;
13 }
14
15 .warning {
16     background-color: #ffa92a;
17 }
18
19 .danger {
20     background-color: #f56257
21 }
22
23 .hide-button {
24     color: white;
25     font-weight: bold;
26     float: right;
27     font-size: 150%;
28     cursor: pointer;
29 }
30
31 .hide-button:hover {
32     color: black;
33 }
34
35 .show-state-join {
36     display:none;
37 }
38
39 .show-state-reveal {
40     display:none;
41 }
42
43 .show-state-capture {
44     display:none;
45 }
46
47 .hide-state-join {
48     display:block;
49 }
50
51 .hide-state-reveal {
52     display:block;
53 }
54
55 .hide-state-capture {
56     display:block;
57 }