]> git.cworth.org Git - empires-html/blob - style.css
Add a simple "make deploy" target
[empires-html] / 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 }