diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index 4d0dcf9..eca40fb 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -1,13 +1,13 @@ - - + + {{ .Site.Title }} - Menu + Menu - + Home About Services diff --git a/src/css/main.css b/src/css/main.css index 9d8dc77..42d190d 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -65,6 +65,47 @@ html.is-animating .transition-fade { } } +.site-nav { + &__title { + } + + &__menu-btn { + @media (max-width: $bp-s) { + margin: 0; + padding: 6px 0 6px; + display: flex; + flex-direction: row; + align-items: center; + } + } + + &__nav-list { + @media (max-width: $bp-s) { + position: fixed; + top: 4rem; + bottom: 2rem; + left: 2rem; + right: 2rem; + + background-color: #fff; + } + } +} + +.menu-text { + margin-right: 0.5rem; +} + +.menu-icon { + display: block; + height: 1.1em; + width: 1.1em; + + border-radius: 3px; + background-color: blue; + opacity: 0.5; +} + // footer .footer {