From 5cdf290659f229ba612e6866deeece84b4147385 Mon Sep 17 00:00:00 2001 From: bach Date: Sun, 18 Jun 2023 17:49:03 +0200 Subject: [PATCH] #2084 #2085 statics css --- assets/css/app.scss | 55 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 45 insertions(+), 10 deletions(-) diff --git a/assets/css/app.scss b/assets/css/app.scss index 82aaa0e..06c0b44 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -1240,28 +1240,63 @@ section[role="main-content"]{ } #static{ + @include fontsans; + >header{ h1{ - + @include titleSansRed; + margin-bottom: $base-line * 0.4; } nav.toc{ li{ a{ font-size: 1em; - line-height: $base-line * 0.5; - margin-bottom: $base-line / 2; + line-height: $base-line * 0.7; + font-weight: 300; } } } } - figure{ - margin: 2em 0; - img{ - max-width: 100%; + >section{ + h1{ + font-weight: 400; + color: $bleuroi; } - figcaption{ - @include fontcaption; - padding: 1em 0; + p{ + margin-top:0; + font-size: 1em; + line-height: $base-line * 0.7; + font-weight: 300; + } + dl{ + font-size: 1em; + line-height: $base-line * 0.7; + font-weight: 300; + span.label{ + font-weight: 400; + } + dd{ + margin: 0; + } + margin-bottom: $base-line; + } + a{ + font-size: 1em; + line-height: $base-line * 0.7; + font-weight: 300; + border-bottom: 1px dotted #1a1a1a; + margin-bottom: $base-line * 0.5; + display: inline-block; + } + figure{ + margin: 2em 0; + img{ + max-width: 100%; + } + figcaption{ + @include fontcaption; + padding: 1em 0; + } } } }