uhr/info/info.css

15 lines
183 B
CSS

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