diff options
-rw-r--r-- | style.scss | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -115,9 +115,11 @@ a { @include hover-link; } -// Ordered lists +// Wine menu items (definition lists within ordered lists) // // Single count across main content +// Strongly typed titles (definition title) +// Right end reserved for prices (definition data) #content { counter-reset: unified; ol li { @@ -128,6 +130,12 @@ a { counter-increment: unified; content: counters(unified, ".") " "; } + dt { + font-weight: bold; + } + p { + margin-right: 5em; + } } } |