19 lines
296 B
CSS
19 lines
296 B
CSS
|
body {
|
||
|
background-color: bisque;
|
||
|
color: darkblue;
|
||
|
font-size: 12pt;
|
||
|
font-family: sans-serif;
|
||
|
max-width: 300pt;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
p.content {
|
||
|
padding-top: auto;
|
||
|
min-height: 100pt;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
font-size: 10pt;
|
||
|
text-align: center;
|
||
|
}
|