blob: 93d8cc2f95e0e34d9a40b2cf1025667ff47dc539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#notifications {
max-width: 30rem;
margin: 1em auto;
}
.notice, .alert {
margin: 0 1em;
padding: 1em;
border-radius: 1em;
}
.notice {
background: lightblue;
}
.alert {
background: tomato;
}
|