14 lines
204 B
CSS
14 lines
204 B
CSS
|
.header {
|
||
|
background-color: #14284c;
|
||
|
padding: 1em;
|
||
|
margin: 1.5em 0;
|
||
|
font-weight: bold;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin-bottom: 1.5em;
|
||
|
padding: 0 2em;
|
||
|
}
|