diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-11-19 22:50:00 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-11-19 22:50:00 +0100 |
commit | 1941d7130ea4f83ea1aab98ac65c0cc298d56755 (patch) | |
tree | 27b130919eb2745957ff3dde38873a065b553b01 /assets | |
parent | 4a8620ce55d8d2ff62528d5369ebd2ac2731031c (diff) |
#100, Make h4, h5 and h6 bolder and increase font size
Diffstat (limited to 'assets')
-rw-r--r-- | assets/_markdown.scss | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/assets/_markdown.scss b/assets/_markdown.scss index 3c0ccac..d00e8bb 100644 --- a/assets/_markdown.scss +++ b/assets/_markdown.scss @@ -3,16 +3,28 @@ .markdown { line-height: 1.6em; - h1, h2, h3, h4, h5 { + // remove padding at the beginning of page + > :first-child { + margin-top: 0; + } + + h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1em; margin-top: 1.5em; margin-bottom: $padding-16; } - // remove padding at the beginning of page - > :first-child { - margin-top: 0; + h4, h5, h6 { + font-weight: bolder; + } + + h5 { + font-size: .875em; + } + + h6 { + font-size: .75em; } b, optgroup, strong { |