diff options
-rw-r--r-- | style.scss | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -115,6 +115,22 @@ a { @include hover-link; } +// Ordered lists +// +// Single count across main content +#content { + counter-reset: unified; + ol li { + list-style-type: none; + &:before { + float: left; + margin-left: -2em; + counter-increment: unified; + content: counters(unified, ".") " "; + } + } +} + // Definition lists // // Full-width horizontal items with definitions right-aligned |