21 lines
268 B
CSS
21 lines
268 B
CSS
body {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
#content {
|
|
font-family: courier, monospace;
|
|
font-size: 10pt;
|
|
min-width: 80ch;
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|