16 lines
265 B
CSS
16 lines
265 B
CSS
.message {
|
|
margin: 1em auto;
|
|
padding: 0.4em 0.5em;
|
|
text-align: center;
|
|
max-width: 40em;
|
|
}
|
|
|
|
.message.error {
|
|
background: #fdd;
|
|
box-shadow: 0 0 0 1px #fcc inset;
|
|
}
|
|
|
|
.message.info {
|
|
background: #def;
|
|
box-shadow: 0 0 0 1px #cdf inset;
|
|
}
|