open-consul/website/source/assets/stylesheets/_header.scss

79 lines
1.4 KiB
SCSS
Raw Normal View History

#header {
background: $header-background-color;
2014-02-08 00:41:03 +00:00
.navbar-toggle {
height: $header-height;
margin: 0;
padding-right: 15px;
border-radius: 0;
2014-02-08 00:41:03 +00:00
.icon-bar {
border: 1px solid $white;
border-radius: 0;
2014-02-08 00:41:03 +00:00
}
2015-11-07 07:17:00 +00:00
}
2014-02-08 00:41:03 +00:00
2015-11-07 07:17:00 +00:00
.navbar-brand {
display: block;
margin: 0;
padding: 0;
a {
display: flex;
align-items: center;
height: $header-height;
2016-01-12 19:58:30 +00:00
line-height: $header-height;
2015-11-07 07:17:00 +00:00
svg.logo {
transition: opacity 0.15s ease-in-out;
@extend svg.logo.white;
2014-04-05 09:03:01 +00:00
&:hover, &:focus, &:active {
opacity: 0.6;
outline: 0;
text-decoration: none;
}
2015-11-07 07:17:00 +00:00
}
}
2015-11-07 07:17:00 +00:00
}
2014-04-05 09:03:01 +00: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;
2014-04-09 02:51:34 +00:00
&:hover, &:focus, &:active {
background-color: transparent;
color: $header-link-color-hover;
outline: 0;
svg {
fill: $header-link-color-hover;
}
}
svg {
fill: $header-link-color;
position: relative;
top: 2px;
width: 14px;
height: 14px;
margin-right: 3px;
}
2015-11-07 07:17:00 +00:00
}
}
}
.buttons {
margin-top: 2px;
}
2014-02-08 00:41:03 +00:00
}