From f30200b2808375c5f20c296fb563dbc1b726213b Mon Sep 17 00:00:00 2001 From: Yves Gatesoupe Date: Thu, 16 Jul 2020 23:34:51 +0200 Subject: [PATCH] Added banner for main headings --- src/scss/_theme.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/scss/_theme.scss b/src/scss/_theme.scss index 8f88d1d..2c684fc 100644 --- a/src/scss/_theme.scss +++ b/src/scss/_theme.scss @@ -60,3 +60,14 @@ a:not([class]):visited { color: inherit; } } + +h1::after { + content: ''; + background-color: var(--color-light-gray); + position: absolute; + width: 100%; + height: 8rem; + top: 13rem; + left: 0; + z-index: -1; +}