# HG changeset patch # User Oleksandr Gavenko # Date 1456006681 -7200 # Node ID 2d265814731ed335cd643bd75f28e40ad28397c5 # Parent 2a18c31747dc05de7305636fe371c923c2e393db Decrease indent level. Highlight only first letter in section. diff -r 2a18c31747dc -r 2d265814731e rst.css --- a/rst.css Sun Feb 21 00:17:25 2016 +0200 +++ b/rst.css Sun Feb 21 00:18:01 2016 +0200 @@ -66,10 +66,26 @@ color: hsl(0, 100%, 25%); } h1 { text-align: center; } -p { text-indent: 2em; } -p:first-letter { font-weight: bold; } +div > p:first-child:first-letter, +h2 + p:first-letter, +h3 + p:first-letter, +h4 + p:first-letter, +h5 + p:first-letter { + font-weight: bold; +} + +blockquote { + margin: 1em 0; +} +ul, ol { + margin-left: 2em; + padding-left: 1em; +} +dl { + margin-left: 2em; +} .literal-block { - margin: 0 0 0 4em; + margin: 0 0 0 2em; padding: 5px; border: 1px; border-style: solid; @@ -106,6 +122,7 @@ .attention, .caution, .danger, .error, .warning, .important, .hint, .note, .tip { padding: 0px; margin: 5px 0px; + text-indent: 2em; } .hint, .note, .tip { border: green 1px solid; } .warning, .important { border: gold 1px solid; }