80 lines
1.4 KiB
SCSS
Executable File
80 lines
1.4 KiB
SCSS
Executable File
//
|
|
// Header
|
|
// - Project Specific
|
|
// - edits should be made here
|
|
// --------------------------------------------------
|
|
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
color: $gray-darker;
|
|
font-family: $font-family-blanc;
|
|
font-size: 28px;
|
|
background: image-url('logo-header.png') 0 0 no-repeat;
|
|
@include img-retina("logo-header.png", "logo-header@2x.png", $project-logo-width, $project-logo-height);
|
|
background-position: 0 center;
|
|
|
|
&:hover{
|
|
color: $green-dark;
|
|
}
|
|
}
|
|
|
|
.by{
|
|
&:hover{
|
|
svg{
|
|
.svg-bg-line{
|
|
fill: $green-dark;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.buttons{
|
|
margin-top: 2px; //baseline everything
|
|
|
|
ul.navbar-nav{
|
|
li {
|
|
&:hover{
|
|
svg path{
|
|
fill: $black;
|
|
}
|
|
}
|
|
|
|
svg path{
|
|
fill: $blue-light;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-links,
|
|
.external-links {
|
|
li > a {
|
|
@include project-a-style();
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 414px) {
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
padding-left: 42px;
|
|
font-size: 18px;
|
|
@include img-retina("logo-header.png", "logo-header@2x.png", $project-logo-width * .75, $project-logo-height * .75);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 320px) {
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
// font-size: 0 !important; //hide terraform text
|
|
}
|
|
}
|
|
}
|
|
}
|