uhr/info/info.css
Manuel Friedli 8b5b343e35 corrected some typos and increased font-size on the info page
(cherry picked from commit e702aa6869ee9eed64271b71f3a48d2c4206f12f)
2014-06-20 00:14:20 +02:00

18 lines
210 B
CSS

body {
font-size: 120%;
}
code {
white-space: pre;
}
ol {
counter-reset: item;
padding-left: 1em;
}
ol li {
display: block;
}
ol li:before {
content: counters(item, ".") ". ";
counter-increment: item;
}