Vulcan/packages/telescope-theme-base/lib/client/scss/specific/_nav.scss

103 lines
1.6 KiB
SCSS
Raw Normal View History

// 1. Neutral
// 2. Mobile
// 3. Desktop
2014-08-20 17:03:54 +09:00
$mobile-header-height: 50px;
2014-08-20 15:59:11 +09:00
.header{
background: $dark-grey;
margin-bottom: $grid-margin;
padding: $grid-padding;
2014-08-21 15:30:05 +09:00
color: white;
2014-08-20 17:03:54 +09:00
@include small{
height: $mobile-header-height;
2015-03-22 11:56:06 +09:00
padding: 0 10px;
2014-08-20 17:03:54 +09:00
position: relative;
}
2014-08-21 15:30:05 +09:00
a, a:link, a:visited{
color: inherit;
2014-08-20 15:59:11 +09:00
}
.nav{
list-style-type: none;
2014-08-20 17:12:03 +09:00
>li{
2014-08-20 15:59:11 +09:00
margin-bottom: 0;
// display: inline-block;
2014-08-20 17:12:03 +09:00
&:last-child .header-submodule{
margin-right: 0px;
}
2014-08-20 15:59:11 +09:00
}
}
2014-08-20 17:03:54 +09:00
}
.header-module, .header-submodule{
.top-nav &{
display: inline-block;
margin-right: 20px;
}
2014-08-20 17:12:03 +09:00
}
2014-08-20 17:51:28 +09:00
.header-module{
&:last-child{
margin-right: 0px;
}
2014-08-20 15:59:11 +09:00
}
2015-03-12 18:07:23 +09:00
2014-08-20 15:59:11 +09:00
.logo{
vertical-align: middle;
line-height: 1;
@include small{
2014-08-20 17:03:54 +09:00
margin-right: 0;
a{
font-size: 24px;
display: block;
position: static;
2014-08-20 17:03:54 +09:00
width: 100%;
height: $mobile-header-height;
line-height: $mobile-header-height;
text-align: center;
left: 0px;
top: 0px;
z-index: 10;
margin-right: 0;
}
2014-08-20 15:59:11 +09:00
}
2015-03-12 18:07:23 +09:00
.header &{
@include small{
padding: 0 60px; // leave space for nav button on mobile
}
2015-03-12 18:07:23 +09:00
}
.mobile-nav &{
padding: 20px;
font-size: 30px;
&, a{
color: white;
}
@include small{
display: none;
}
}
2014-08-20 15:59:11 +09:00
}
.logo-image{
a, img{
display: block;
height: 100%;
width: 100%;
}
2014-08-20 17:03:54 +09:00
}
.mobile-menu-button{
position: absolute;
display: inline-block;
padding: 4px;
top: 50%;
margin-top: -17px;
.hamburger{
fill: white;
}
z-index:100;
2014-08-20 17:56:48 +09:00
}
.account-link{
display: inline-block;
}
.sign-in{
margin-right: 20px;
2014-08-20 15:59:11 +09:00
}