blob: a6d66b01825edf2df478817a4df0ef8c5772e5e9 [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001//Fixed alerts
2
3.alert__error,
4.alert__warning,
5.alert__message {
6 color: $darkbg__primary;
7 padding: 1em;
8 margin: .5em 0;
9 position: relative;
10 display: flex;
11 justify-content: center;
12 flex-direction: column;
13 .close {
14 color: $lightbg__primary;
15 position: absolute;
16 right: 0%;
17 top: 50%;
18 transform: translateY(-50%);
19 font-size: 1.5em;
20 padding: 1em;
21 box-sizing: border-box;
22 line-height: 0;
23 display: flex;
24 justify-content: center;
25 flex-direction: column;
26 background: transparent;
27 border: 0px;
28 margin: 0;
29 &:hover {
30 color: $lightbg__accent;
31 }
32 }
33}
34
35.alert__error {
36 background: $alert__error;
37
38}
39
40.alert__warning {
41 background: $alert__warning;
42
43}
44.alert__message {
45 background: $alert__message;
46}