terraform/website/source/assets/stylesheets/_header.scss

59 lines
1.2 KiB
SCSS
Raw Normal View History

2014-07-16 23:51:48 +02:00
//
// Header
2015-11-06 21:35:24 +01:00
// - Project Specific
// - edits should be made here
2014-07-16 23:51:48 +02:00
// --------------------------------------------------
#header {
.navbar-brand {
2015-11-06 21:35:24 +01:00
.logo{
color: $black;
font-size: 28px;
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-size, $project-logo-size);
background-position: 0 center;
2014-07-24 02:55:55 +02:00
2015-11-06 21:35:24 +01:00
&:hover{
color: $orange;
}
2014-07-24 02:55:55 +02:00
}
2014-07-24 01:48:44 +02:00
2015-11-06 21:35:24 +01:00
.by{
color: $black;
&:hover{
svg{
line{
stroke: $purple;
}
2014-07-27 20:38:23 +02:00
}
2014-07-24 02:55:55 +02:00
}
}
2014-07-24 01:48:44 +02:00
}
2015-11-06 21:35:24 +01:00
.buttons{
margin-top: 2px; //baseline everything
2014-07-24 02:55:55 +02:00
2015-11-06 21:35:24 +01:00
ul.navbar-nav{
li {
&:hover{
svg path{
fill: $purple;
}
2014-07-16 23:51:48 +02:00
}
2014-07-27 20:38:23 +02:00
2015-11-06 21:35:24 +01:00
svg path{
fill: $white;
2014-07-24 02:06:57 +02:00
}
}
}
}
2014-07-24 01:48:44 +02:00
2015-11-06 21:35:24 +01:00
.main-links,
.external-links {
li > a {
@include project-a-style();
font-weight: 400;
2014-07-24 03:51:21 +02:00
}
}
2014-07-16 23:51:48 +02:00
}