75 lines
1.3 KiB
SCSS
Raw Normal View History

2014-02-07 16:41:03 -08:00
//
// Header
2015-11-06 23:17:00 -08:00
// - Project Specific
// - edits should be made here
2014-02-07 16:41:03 -08:00
// --------------------------------------------------
body.page-sub{
2015-11-06 23:17:00 -08:00
#header{
2015-11-09 13:48:29 -08:00
@include consul-gradient-bg();
2014-02-07 16:41:03 -08:00
2015-11-06 23:17:00 -08:00
.navbar-brand {
.logo{
&:hover{
color: $black;
2014-04-05 02:03:01 -07:00
}
2015-11-06 23:17:00 -08:00
}
2014-02-07 16:41:03 -08:00
}
2015-11-06 23:17:00 -08:00
}
2014-02-07 16:41:03 -08:00
}
2015-11-06 23:17:00 -08:00
#header {
.navbar-brand {
.logo{
2016-01-12 11:58:30 -08:00
width: $project-logo-width;
padding: 0;
line-height: $header-height;
background-position: 0 center;
2015-11-06 23:38:43 -08:00
font-size: 0;
2015-11-06 23:17:00 -08:00
text-transform: uppercase;
2016-01-12 11:58:30 -08:00
@include img-retina("../images/consul-header-lockup.png", "../images/consul-header-lockup@2x.png", $project-logo-width, $project-logo-height);
2015-11-06 23:38:43 -08:00
background-position: 0 center;
2015-11-06 23:17:00 -08:00
&:hover{
2015-11-06 23:38:43 -08:00
opacity: .4;
2015-11-06 23:17:00 -08:00
}
2014-04-05 02:03:01 -07:00
}
.by-hashicorp{
2015-11-06 23:17:00 -08:00
&:hover{
svg{
.svg-bg-line{
2015-11-06 23:38:43 -08:00
opacity: .4;
2015-11-06 23:17:00 -08:00
}
}
2015-11-06 23:17:00 -08:00
}
}
2015-11-06 23:17:00 -08:00
}
2014-04-05 02:03:01 -07:00
2015-11-06 23:17:00 -08:00
.buttons{
margin-top: 2px; //baseline everything
}
}
2014-04-08 19:51:34 -07:00
2015-11-06 23:17:00 -08:00
@media (max-width: 414px) {
#header {
.navbar-brand {
.logo{
2016-01-12 11:58:30 -08:00
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);
2015-11-06 23:17:00 -08:00
}
}
}
2014-04-05 02:03:01 -07:00
}
2015-11-06 23:17:00 -08:00
@media (max-width: 320px) {
#header {
.navbar-brand {
.logo{
2015-11-08 23:16:24 -08:00
2015-11-06 23:17:00 -08:00
}
}
}
2014-02-07 16:41:03 -08:00
}