From bbc049b5c7749b8f9c4e1ade9cf1da4f91f37c0d Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 23 Jun 2021 19:20:29 +0200 Subject: Add article series on the clean sandbox --- resources/sass/style.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'resources/sass') diff --git a/resources/sass/style.scss b/resources/sass/style.scss index e401645..1523344 100644 --- a/resources/sass/style.scss +++ b/resources/sass/style.scss @@ -96,11 +96,27 @@ span.tt { * title and subtitle. So we adapt the font size of the headings in the * markdown content so that they are not larger than the page title. */ .markdown { + h1, h2, h3 { font-weight: bold; } h1 { font-size: 18px; } /* size of h4 */ h2 { font-size: 14px; } /* size of h5 */ h3 { font-size: 12px; } /* size of h5 */ } +pre code { + tab-size: 4; + -moz-tab-size: 4; + white-space: pre; +} + +pre code.lang-js { + tab-size: 2; + -moz-tab-size: 2; +} + +blockquote { + font-size: unset; +} + footer { padding: 1em 0; } @@ -108,3 +124,7 @@ footer { .obfuscate > span { display: none; } + +.breadcrumb { + margin-bottom: 0; +} -- cgit v1.2.3