33 lines
491 B
CSS
33 lines
491 B
CSS
|
body {
|
||
|
margin: 0 auto;
|
||
|
max-width: 800px;
|
||
|
font-family: 'Roboto Condensed', sans-serif;
|
||
|
font-size: 11pt;
|
||
|
}
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
}
|
||
|
table th {
|
||
|
text-align: left;
|
||
|
font-size: 10pt;
|
||
|
}
|
||
|
table tr td {
|
||
|
padding-right: 10px;
|
||
|
border-bottom: 1px solid grey;
|
||
|
}
|
||
|
table tr td:last-child {
|
||
|
padding: 0;
|
||
|
}
|
||
|
table tr td.nowrap {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
nav.nextprev {
|
||
|
text-align: center;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
nav.nextprev span.prev {
|
||
|
}
|
||
|
nav.nextprev span.next {
|
||
|
}
|