24 lines
220 B
CSS
24 lines
220 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.success,
|
|
.error {
|
|
padding: 30px;
|
|
border: 3px solid black;
|
|
color: white;
|
|
}
|
|
|
|
.success {
|
|
background-color: green;
|
|
}
|
|
|
|
.error {
|
|
background-color: red;
|
|
}
|