Styled nav on smaller screens

This commit is contained in:
2018-02-23 22:30:53 +11:00
parent a383113644
commit c52685b9bc
2 changed files with 21 additions and 8 deletions

View File

@ -3,26 +3,38 @@
* Styles for Navbar
*
* Dependencies:
* styles/settings/responsive.scss
* styles/tools/_box-shadow.scss
* styles/tools/_responsive.scss
*
* Version:
* 1.0.0 - 2018/02/23
*/
$c-navbar--z-index: 100;
.c-navbar {
width: 90%;
position: fixed;
top:3em;
top: 0;
left: 0;
width: 100%;
background: white;
z-index: $c-navbar--z-index;
left: 1%;
@include t-box-shadow(-10px, 10px, 0px, rgba(0, 0, 0, 0.5));
}
.c-navbar__menu-button {
font-size: 2em;
font-size: 1.5em;
padding: 0.5em 0.75em;
}
@include t-media-query($s-xsmall-up) {
.c-navbar__menu-button {
font-size: 2em;
}
}
@include t-media-query($s-small-up) {
.c-navbar {
width: 90%;
top:3em;
left: 1%;
@include t-box-shadow(-10px, 10px, 0px, rgba(0, 0, 0, 0.5));
}
}

View File

@ -15,6 +15,7 @@
//Tools
@import './tools/_box-shadow.scss';
@import './tools/_gradients.scss';
@import './tools/_responsive.scss';
//Resets
@import './../../node_modules/normalize.css/normalize.css';