uhr/info/info.css

18 lines
210 B
CSS
Raw Normal View History

body {
font-size: 120%;
}
2014-03-05 22:59:02 +01:00
code {
white-space: pre;
}
2014-03-05 23:09:50 +01:00
ol {
counter-reset: item;
padding-left: 1em;
}
ol li {
display: block;
}
ol li:before {
content: counters(item, ".") ". ";
counter-increment: item;
}