22 lines
279 B
CSS
22 lines
279 B
CSS
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
line-height: 1.5;
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
html {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
header {
|
|
background-color: antiquewhite;
|
|
}
|
|
|
|
footer {
|
|
background-color: antiquewhite;
|
|
margin-top: 2em;
|
|
}
|