2016-01-19 18:08:53 +00:00
|
|
|
//
|
|
|
|
// Header
|
|
|
|
// - Project Specific
|
|
|
|
// - edits should be made here
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
#header {
|
|
|
|
background: $white;
|
|
|
|
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
.logo {
|
|
|
|
width: $project-logo-width;
|
2017-02-24 00:37:57 +00:00
|
|
|
height: $header-height;
|
2016-01-19 18:08:53 +00:00
|
|
|
padding: 0;
|
|
|
|
line-height: $header-height;
|
|
|
|
font-size: 0;
|
|
|
|
text-transform: uppercase;
|
2017-02-24 00:37:57 +00:00
|
|
|
background: image-url("logo-header.svg") center no-repeat;
|
2017-02-24 01:11:41 +00:00
|
|
|
background-size: 100%;
|
2016-01-19 18:08:53 +00:00
|
|
|
|
|
|
|
&:hover{
|
|
|
|
opacity: .4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.by-hashicorp {
|
|
|
|
color: $gray;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
svg {
|
|
|
|
.svg-bg-line {
|
|
|
|
opacity: .4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons{
|
|
|
|
margin-top: 2px; //baseline everything
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 01:11:41 +00:00
|
|
|
@media (min-width: 769px) and (max-width: 805px) {
|
2016-01-19 18:08:53 +00:00
|
|
|
#header {
|
2017-02-24 01:11:41 +00:00
|
|
|
.main-links,
|
|
|
|
.external-links {
|
|
|
|
li > a {
|
|
|
|
font-size: 12px;
|
2016-01-19 18:08:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 01:11:41 +00:00
|
|
|
@media (max-width: 414px) {
|
2016-01-19 18:08:53 +00:00
|
|
|
#header {
|
|
|
|
.navbar-brand {
|
|
|
|
.logo{
|
2017-02-24 01:11:41 +00:00
|
|
|
width: $project-logo-width * .75;
|
|
|
|
height: $header-mobile-height;
|
|
|
|
}
|
2016-01-19 18:08:53 +00:00
|
|
|
|
2017-02-24 01:11:41 +00:00
|
|
|
.by-hashicorp {
|
|
|
|
margin-top: 2px;
|
2016-01-19 18:08:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|