2017-04-04 14:37:16 +02:00
|
|
|
@import "colors";
|
2017-07-06 13:47:19 +02:00
|
|
|
@import "common";
|
|
|
|
@import "constants";
|
2017-04-04 14:37:16 +02:00
|
|
|
@import "mixins";
|
|
|
|
|
2018-03-01 09:44:58 +01:00
|
|
|
$landing-breakpoint: 1040px;
|
|
|
|
|
2017-04-04 14:37:16 +02:00
|
|
|
// FIXME: Rename when the header is generalized
|
|
|
|
.new-header {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
2017-05-05 12:29:19 +02:00
|
|
|
.new-header-with-border {
|
|
|
|
border-bottom: 1px solid $border-grey;
|
|
|
|
}
|
|
|
|
|
2017-04-04 14:37:16 +02:00
|
|
|
.header-inner-content {
|
2017-07-06 13:47:19 +02:00
|
|
|
@extend .container;
|
2017-05-17 18:06:25 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2017-10-09 11:46:51 +02:00
|
|
|
min-height: 72px;
|
2017-07-03 16:01:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 4 * $default-spacer;
|
2018-02-28 18:58:42 +01:00
|
|
|
|
|
|
|
img {
|
2018-06-20 15:55:45 +02:00
|
|
|
height: 34px;
|
2018-03-01 09:44:58 +01:00
|
|
|
|
|
|
|
@media (max-width: $landing-breakpoint) {
|
|
|
|
height: 18px;
|
|
|
|
}
|
2018-02-28 18:58:42 +01:00
|
|
|
}
|
2017-07-03 16:01:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 10:46:27 +02:00
|
|
|
.header-tabs {
|
2017-07-03 16:01:44 +02:00
|
|
|
li {
|
2017-10-05 23:25:29 +02:00
|
|
|
@include horizontal-padding($default-padding);
|
2017-07-03 16:01:44 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-11-21 16:14:34 +01:00
|
|
|
.tab-link {
|
2017-09-20 15:49:49 +02:00
|
|
|
display: inline-block;
|
2017-10-16 11:51:06 +02:00
|
|
|
height: 72px;
|
|
|
|
line-height: 72px;
|
2017-07-03 16:01:44 +02:00
|
|
|
font-size: 18px;
|
|
|
|
color: $black;
|
|
|
|
|
2017-10-05 23:26:27 +02:00
|
|
|
&.active,
|
|
|
|
&:hover {
|
2017-07-03 16:01:44 +02:00
|
|
|
color: $blue;
|
|
|
|
border-bottom: 2px solid $blue;
|
2017-11-21 16:26:12 +01:00
|
|
|
|
|
|
|
&.contact-link {
|
2017-11-22 11:24:18 +01:00
|
|
|
position: relative;
|
2017-11-21 16:26:12 +01:00
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
.contact-details {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-07-03 16:01:44 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-04 14:37:16 +02:00
|
|
|
}
|
|
|
|
|
2017-11-21 16:26:12 +01:00
|
|
|
.contact-details {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
left: -165px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 2px solid $blue;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 15px;
|
|
|
|
width: 400px;
|
|
|
|
color: $black;
|
|
|
|
z-index: 100;
|
|
|
|
font-size: initial;
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
|
|
&::after,
|
|
|
|
&::before {
|
|
|
|
bottom: 100%;
|
|
|
|
left: 50%;
|
|
|
|
border: solid transparent;
|
|
|
|
content: " ";
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border-color: rgba(255, 255, 255, 0);
|
|
|
|
border-bottom-color: #FFFFFF;
|
|
|
|
border-width: 15px;
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
border-color: rgba(255, 255, 255, 0);
|
|
|
|
border-bottom-color: $blue;
|
|
|
|
border-width: 18px;
|
|
|
|
margin-left: -18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 14:56:59 +02:00
|
|
|
.header-right-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2017-06-22 16:45:57 +02:00
|
|
|
> li {
|
2017-06-22 14:56:59 +02:00
|
|
|
@include horizontal-padding(8px);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-search {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.form input[type=text] {
|
|
|
|
padding: 9px;
|
|
|
|
padding-right: 42px;
|
|
|
|
float: right;
|
|
|
|
width: 300px;
|
2017-07-20 10:39:16 +02:00
|
|
|
margin: 0;
|
2017-06-22 14:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2017-07-20 10:39:16 +02:00
|
|
|
padding: 9px;
|
2017-06-22 14:56:59 +02:00
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2017-06-22 16:45:57 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-menu-opener {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
img {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-menu {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 34px;
|
|
|
|
font-size: 14px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
|
|
border: 1px solid $border-grey;
|
|
|
|
min-width: 270px;
|
|
|
|
max-width: 340px;
|
2017-09-21 11:02:01 +02:00
|
|
|
z-index: 20;
|
2017-06-22 16:45:57 +02:00
|
|
|
|
|
|
|
&.open {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
border-bottom: 1px solid $border-grey;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
align-items: center;
|
|
|
|
padding: 14px;
|
|
|
|
color: $grey;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin-right: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-link {
|
|
|
|
display: flex;
|
|
|
|
color: $black;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $light-grey;
|
|
|
|
}
|
|
|
|
}
|
2017-06-22 14:56:59 +02:00
|
|
|
}
|
|
|
|
}
|