From a9cb8551ed8ecab0f74755ab415ce7c39852ef10 Mon Sep 17 00:00:00 2001 From: Matt DeCamp Date: Thu, 16 Sep 2021 16:48:49 -0400 Subject: [PATCH] header styling --- src/assets/styles/components/_header.scss | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/assets/styles/components/_header.scss b/src/assets/styles/components/_header.scss index e69de29..0f2f6e0 100644 --- a/src/assets/styles/components/_header.scss +++ b/src/assets/styles/components/_header.scss @@ -0,0 +1,35 @@ +header { + min-width: 100%; +} + +#header--container { + width: 90%; + max-width: var(--max-width); + padding: var(--s0) 0; + margin: 0 auto; + + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + + color: var(--text); + + & a { + color: var(--text); + text-decoration: none; + &:hover { + text-decoration: underline; + } + } +} + +#header--title a { + font-size: var(--s2); + font-weight: 500; + &:hover { + text-decoration: none; + + } +} \ No newline at end of file