diff --git a/resources/assets/styles/layouts/_header.scss b/resources/assets/styles/layouts/_header.scss index a5235b1..28567c8 100644 --- a/resources/assets/styles/layouts/_header.scss +++ b/resources/assets/styles/layouts/_header.scss @@ -1,10 +1,21 @@ .banner { + background-position: bottom; + background-size: cover; + .container { + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; height: 560px; + width: 100%; + max-width: 100%; max-width: 1440px; } .toggle-menu { + display: block; + position: absolute; top: 30px; right: 17px; width: 25px; @@ -13,6 +24,8 @@ text-indent: -9999em; .icon { + display: block; + position: absolute; top: 7px; width: 25px; height: 3px; @@ -51,6 +64,8 @@ } .brand { + display: block; + align-self: flex-start; width: 6.5625rem; height: auto; margin: 30px 0 0 17px; @@ -64,9 +79,17 @@ } .primary-navigation { + display: flex; + position: absolute; + flex-direction: column; + justify-content: center; + align-items: flex-start; + top: 0; + width: 100%; height: 560px; margin: 0 0 0 -100%; padding: 0 17px; + background: transparent; a { display: none; @@ -100,7 +123,12 @@ } .branding { + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: center; height: 364px; + text-align: center; p { font-family: $font-family-sans-serif; @@ -119,7 +147,12 @@ margin: 0 auto; } + .toggle-menu { + display: none; + } + .brand { + align-self: center; width: 16.5625rem; height: auto; margin-top: 40px; @@ -130,6 +163,9 @@ height: 40px; max-width: 1440px; margin: 0 auto; + flex-direction: row; + justify-content: flex-start; + align-items: center; a { display: inline-block; diff --git a/resources/views/partials/header.blade.php b/resources/views/partials/header.blade.php index 4bab076..79ac6ea 100644 --- a/resources/views/partials/header.blade.php +++ b/resources/views/partials/header.blade.php @@ -1,12 +1,12 @@ -