mirror of https://github.com/status-im/consul.git
100 lines
1.6 KiB
SCSS
Executable File
100 lines
1.6 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{
|
|
color: $black;
|
|
&:hover{
|
|
svg{
|
|
line{
|
|
opacity: .4;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.buttons{
|
|
margin-top: 2px; //baseline everything
|
|
|
|
ul.navbar-nav{
|
|
li {
|
|
// &:hover{
|
|
// svg path{
|
|
// fill: $purple;
|
|
// }
|
|
// }
|
|
|
|
svg path{
|
|
fill: $white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-links,
|
|
.external-links {
|
|
li > a {
|
|
@include project-a-style();
|
|
}
|
|
}
|
|
}
|
|
|
|
@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{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|