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