17 lines
210 B
CSS
17 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;
|
|
}
|