Skip to content
View raw
1
#notifications {
2
max-width: 30rem;
3
margin: 1em auto;
4
}
5
6
.notice, .alert {
7
margin: 0 1em;
8
padding: 1em;
9
border-radius: 1em;
10
}
11
12
.notice {
13
background: lightblue;
14
}
15
16
.alert {
17
background: tomato;
18
}
19