75 lines
1.3 KiB
SCSS
Executable File
75 lines
1.3 KiB
SCSS
Executable File
//
|
|
// Header
|
|
// - Project Specific
|
|
// - edits should be made here
|
|
// --------------------------------------------------
|
|
|
|
body.page-sub{
|
|
#header{
|
|
@include consul-gradient-bg();
|
|
|
|
.navbar-brand {
|
|
.logo{
|
|
&:hover{
|
|
color: $black;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
width: $project-logo-width;
|
|
padding: 0;
|
|
line-height: $header-height;
|
|
background-position: 0 center;
|
|
font-size: 0;
|
|
text-transform: uppercase;
|
|
@include img-retina("../images/consul-header-lockup.png", "../images/consul-header-lockup@2x.png", $project-logo-width, $project-logo-height);
|
|
background-position: 0 center;
|
|
|
|
&:hover{
|
|
opacity: .4;
|
|
}
|
|
}
|
|
|
|
.by-hashicorp{
|
|
&:hover{
|
|
svg{
|
|
.svg-bg-line{
|
|
opacity: .4;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.buttons{
|
|
margin-top: 2px; //baseline everything
|
|
}
|
|
}
|
|
|
|
@media (max-width: 414px) {
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
width: $project-logo-width * .75;
|
|
@include img-retina("../images/consul-header-lockup.png", "../images/consul-header-lockup@2x.png", $project-logo-width * .75, $project-logo-height * .75);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 320px) {
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|