open-vault/website/source/assets/stylesheets/_header.scss
2017-03-06 16:11:04 -05:00

40 lines
695 B
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('logo-header.svg') 0 0 no-repeat;
background-position: 0 46%;
background-size: contain;
}
}
.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;
}
}
}
}