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

79 lines
1.4 KiB
SCSS
Raw Normal View History

2017-04-05 17:28:34 +02:00
#header {
background: $header-background-color;
.navbar-toggle {
height: $header-height;
margin: 0;
padding-right: 15px;
border-radius: 0;
.icon-bar {
border: 1px solid $white;
border-radius: 0;
}
2015-11-07 06:01:14 +01:00
}
2015-11-07 00:41:23 +01:00
2015-11-07 06:01:14 +01:00
.navbar-brand {
2017-04-05 17:28:34 +02:00
display: block;
margin: 0;
padding: 0;
2014-07-24 01:48:44 +02:00
2017-04-05 17:28:34 +02:00
a {
display: flex;
align-items: center;
height: $header-height;
line-height: $header-height;
svg.logo {
transition: opacity 0.15s ease-in-out;
@extend svg.logo.white;
&:hover, &:focus, &:active {
opacity: 0.6;
outline: 0;
text-decoration: none;
2014-07-24 02:55:55 +02:00
}
2015-11-07 06:01:14 +01:00
}
2014-07-24 01:48:44 +02:00
}
2015-11-07 06:01:14 +01:00
}
2014-07-24 01:48:44 +02:00
2017-04-05 17:28:34 +02:00
ul.nav {
li {
a {
color: $header-link-color;
font-size: $header-font-size;
font-family: $font-family-open-sans;
font-weight: $font-weight-bold;
height: $header-height;
line-height: $header-height;
padding: 0 10px;
margin: 0;
text-decoration: none;
&:hover, &:focus, &:active {
background-color: transparent;
color: $header-link-color-hover;
outline: 0;
2014-07-24 02:55:55 +02:00
2017-04-05 17:28:34 +02:00
svg {
fill: $header-link-color-hover;
}
}
svg {
fill: $header-link-color;
position: relative;
top: 2px;
width: 14px;
height: 14px;
margin-right: 3px;
2014-07-24 02:06:57 +02:00
}
2015-11-07 06:01:14 +01:00
}
2014-07-24 02:06:57 +02:00
}
2015-11-07 06:01:14 +01:00
}
2014-07-24 01:48:44 +02:00
2017-04-05 17:28:34 +02:00
.buttons {
margin-top: 2px;
2015-11-07 06:01:14 +01:00
}
2014-07-16 23:51:48 +02:00
}