From 12c9e6dd12a8c3501246c830f76ebb3b7f793ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20J=C3=A4hn?= Date: Tue, 14 Nov 2023 10:29:47 +0100 Subject: [PATCH] Increase content width and emphasize links (#85) * Increase content width and emphasize links * Adapt width also for listings * Include headings, too --- _sass/color_schemes/c2sm.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/_sass/color_schemes/c2sm.scss b/_sass/color_schemes/c2sm.scss index a744a176..df7996b9 100644 --- a/_sass/color_schemes/c2sm.scss +++ b/_sass/color_schemes/c2sm.scss @@ -4,3 +4,20 @@ $c2sm-blue: #56abdf; $c2sm-blue-dark: #4488B3; $link-color: $c2sm-blue-dark; $header-height: 5.75rem; +$content-width: 57.5rem; + +h1, h2, h3, h4, h5, h6, .main-content p, .main-content hr, .main-content ul, div.highlighter-rouge { + margin-right: 7.5em; + } + +code.highlighter-rogue { + martin-right: 0em !important; +} + +.main-content a { + text-decoration-line: underline !important; + text-decoration-style: solid !important; + text-decoration-color: currentcolor !important; + text-decoration-thickness: auto !important; + text-underline-offset: .175rem !important; +}