mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
72 lines
1.1 KiB
SCSS
72 lines
1.1 KiB
SCSS
![]() |
// 1. Neutral
|
||
|
// 2. Mobile
|
||
|
// 3. Desktop
|
||
|
|
||
|
$mobile-header-height: 50px;
|
||
|
|
||
|
.header{
|
||
|
background: $dark-grey;
|
||
|
margin-bottom: $grid-margin;
|
||
|
padding: $grid-padding;
|
||
|
color: white;
|
||
|
@include small{
|
||
|
height: $mobile-header-height;
|
||
|
padding: 0 10px;
|
||
|
position: relative;
|
||
|
}
|
||
|
a, a:link, a:visited{
|
||
|
color: inherit;
|
||
|
}
|
||
|
.nav{
|
||
|
list-style-type: none;
|
||
|
>li{
|
||
|
margin-bottom: 0;
|
||
|
// display: inline-block;
|
||
|
&:last-child .header-submodule{
|
||
|
margin-right: 0px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.logo{
|
||
|
@include small{
|
||
|
font-size: 24px;
|
||
|
white-space: nowrap;
|
||
|
a{
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
}
|
||
|
@include xsmall{
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
.header &{
|
||
|
@include small{
|
||
|
padding: 0 60px; // leave space for nav button on mobile
|
||
|
}
|
||
|
}
|
||
|
.mobile-nav &{
|
||
|
padding: 20px;
|
||
|
font-size: 30px;
|
||
|
&, a{
|
||
|
color: white;
|
||
|
}
|
||
|
@include small{
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.logo-image{
|
||
|
a, img{
|
||
|
display: block;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.account-link{
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.sign-in{
|
||
|
margin-right: 20px;
|
||
|
}
|