open-consul/website/source/assets/stylesheets/_header.scss

78 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{
padding-left: 50px;
font-size: 0;
text-transform: uppercase;
background: image-url('../images/consul-hero-logo.png') 0 0 no-repeat;
@include img-retina("../images/consul-hero-logo.png", "../images/consul-hero-logo@2x.png", $project-logo-width, $project-logo-height);
background-position: 0 center;
&:hover{
opacity: .4;
}
}
.by-hashicorp{
&:hover{
svg{
line{
opacity: .4;
}
}
}
}
}
.buttons{
margin-top: 2px; //baseline everything
}
}
@media (max-width: 414px) {
#header {
.navbar-brand {
.logo{
padding-left: 37px;
@include img-retina("../images/consul-hero-logo.png", "../images/consul-hero-logo@2x.png", $project-logo-width * .75, $project-logo-height * .75);
img{
width: 72px;
height: 14px;
}
}
}
}
}
@media (max-width: 320px) {
#header {
.navbar-brand {
.logo{
}
}
}
}