Last active
January 16, 2017 17:07
-
-
Save moxdev/87fb41beccf8a5aecf16bde1aaa967ee to your computer and use it in GitHub Desktop.
Basic masthead sass layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// masthead.scss | |
#masthead { | |
width: 100%; | |
height: 80px; | |
display: flex; | |
justify-content: space-between; | |
.site-branding { | |
max-width: 100px; | |
} | |
.main-navigation { | |
.menu-toggle { | |
} | |
.menu-primary-menu-container { | |
ul { | |
display: none; | |
li { | |
.current-menu-item { | |
a { | |
} | |
} | |
} | |
a { | |
} | |
ul { | |
li { | |
} | |
a { | |
} | |
} | |
} | |
} | |
} | |
.toggled .menu-primary-menu-container ul { | |
display: block; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated with flexbox