20 lines
268 B
CSS
20 lines
268 B
CSS
.toc ol {
|
|
counter-reset: item;
|
|
list-style: decimal;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.toc li:before {
|
|
content: counters(item, ".") " ";
|
|
counter-increment: item;
|
|
}
|
|
|
|
a.toc-link {
|
|
text-decoration: none;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.toc>.toc-list li {
|
|
list-style: none
|
|
}
|