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

57 lines
1.1 KiB
SCSS
Executable file

//
// Header
// - Project Specific
// - edits should be made here
// --------------------------------------------------
#header {
flex-shrink:0;
.navbar-brand {
.logo{
width: $project-logo-width;
padding-left: 50px;
font-size: 0;
text-transform: uppercase;
background: image-url('../images/logo-header.png') 0 0 no-repeat;
@include img-retina("../images/logo-header.png", "../images/logo-header@2x.png", $project-logo-width, $project-logo-height);
background-position: 0 46%;
}
}
.by-hashicorp{
@include project-by-hashicorp-style();
}
.buttons{
margin-top: 2px; //baseline everything
}
}
@media (max-width: 414px) {
#header {
.navbar-brand {
.logo{
width: $project-logo-width * .8;
@include img-retina("../images/logo-header.png", "../images/logo-header@2x.png", $project-logo-width * .8, $project-logo-height * .8);
img{
//width: 72px;
//height: 14px;
}
}
}
}
}
@media (max-width: 320px) {
#header {
.navbar-brand {
.logo{
}
}
}
}