391 lines
6.3 KiB
CSS
391 lines
6.3 KiB
CSS
header {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 30;
|
|
height: 7.33333rem;
|
|
padding: 1rem 0;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
body.logged-in header {
|
|
top: 31px;
|
|
}
|
|
|
|
header::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
left: 0;
|
|
display: block;
|
|
height: 0.33333rem;
|
|
background-image: linear-gradient(to bottom, rgba(51, 51, 51, 0.15), rgba(51, 51, 51, 0));
|
|
}
|
|
|
|
header + * {
|
|
display: block;
|
|
margin-top: 7.33333rem;
|
|
}
|
|
|
|
header .content-wrap {
|
|
display: flex;
|
|
height: 100%;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
header .header-logo-container {
|
|
position: static;
|
|
padding: 0.22222rem 0;
|
|
color: #333333;
|
|
line-height: 1;
|
|
flex-grow: 0;
|
|
order: 1;
|
|
}
|
|
|
|
header .header-logo-container::after {
|
|
display: none;
|
|
}
|
|
|
|
header .header-button-container {
|
|
order: 4;
|
|
margin-left: 3.33333rem;
|
|
}
|
|
|
|
header nav {
|
|
flex-grow: 1;
|
|
order: 3;
|
|
}
|
|
|
|
header:not(.sticky-header) nav {
|
|
margin-top: 3.11111rem;
|
|
}
|
|
|
|
header:not(.sticky-header) .header-button-container {
|
|
margin-top: 2.88889rem;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
width: 10rem;
|
|
height: 4.61111rem;
|
|
}
|
|
|
|
.header-logo-text {
|
|
display: none;
|
|
}
|
|
|
|
.header-logo-mobile {
|
|
display: none;
|
|
width: 6.11111rem;
|
|
height: 2.77778rem;
|
|
}
|
|
|
|
.header-burger-button {
|
|
display: none;
|
|
}
|
|
|
|
.header-burger-button + label {
|
|
position: relative;
|
|
display: none;
|
|
width: 40px;
|
|
height: 40px;
|
|
background-image: url(../img/burger-menu.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.header-burger-button + label span {
|
|
display: none;
|
|
}
|
|
|
|
.header-button {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0.55556rem 2.5rem;
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.header-button:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.header-button::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #333333;
|
|
border-radius: 3px;
|
|
opacity: 0;
|
|
transition: opacity .5s;
|
|
}
|
|
|
|
.header-button span {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.header-lang-small {
|
|
display: flex;
|
|
flex-direction: row;
|
|
order: 1;
|
|
margin: 0 1rem;
|
|
display: none;
|
|
color: #333333;
|
|
}
|
|
|
|
.header-lang-small .icon {
|
|
margin-top: 0.05rem;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
background-repeat: no-repeat;
|
|
background-position: left center;
|
|
background-size: contain;
|
|
mask: url('../img/ios-arrow-down.svg') no-repeat center / contain;
|
|
-webkit-mask-image: url('../img/ios-arrow-down.svg');
|
|
/* no-repeat center / contain; */
|
|
background-color: #333333;
|
|
}
|
|
|
|
.header-lang-small .icon.active {
|
|
mask: url('../img/ios-arrow-up.svg');
|
|
-webkit-mask-image: url('../img/ios-arrow-up.svg');
|
|
}
|
|
|
|
.header-lang-small li:not(.active) {
|
|
display: none;
|
|
}
|
|
|
|
.header-lang-small li.active {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: hidden;
|
|
max-width: 2.1ch;
|
|
font-weight: 500;
|
|
margin-right: 5px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.header-lang-small .dropdown {
|
|
position: relative;
|
|
display: none;
|
|
}
|
|
|
|
.header-lang-small .dropdown .dropdown-content {
|
|
position: absolute;
|
|
top: 42px;
|
|
left: -120px;
|
|
padding: 15px;
|
|
background-color: white;
|
|
width: 120px;
|
|
text-align: right;
|
|
text-transform: uppercase;
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.63);
|
|
}
|
|
|
|
.header-lang-small .dropdown .dropdown-content li:not(.active) {
|
|
display: block;
|
|
padding: 5px 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.header-lang-small .dropdown .dropdown-content li.active {
|
|
display: none;
|
|
}
|
|
|
|
.header-lang {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: calc((100% - 1170px) / 2);
|
|
display: flex;
|
|
padding: 0.61111rem 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.header-lang li {
|
|
border-left: 1px solid #333333;
|
|
line-height: 1;
|
|
display: inline;
|
|
padding: 0 5px 0 8px;
|
|
}
|
|
|
|
.header-lang li:first-child {
|
|
border-left: none;
|
|
}
|
|
|
|
.header-lang li span {
|
|
line-height: 1rem;
|
|
transition: color .3s;
|
|
}
|
|
|
|
.header-lang li.active span {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.header-search {
|
|
display: none;
|
|
}
|
|
|
|
.header-search img {
|
|
width: 25px;
|
|
padding: 0.77778rem 0;
|
|
}
|
|
|
|
.header-search span {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: 1280px) {
|
|
.header-lang {
|
|
right: 30px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
body.logged-in header {
|
|
top: 45px;
|
|
}
|
|
header {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 30;
|
|
height: 4.44444rem;
|
|
padding: 0.55556rem 0;
|
|
}
|
|
header + * {
|
|
margin-top: 4.44444rem;
|
|
}
|
|
header .header-logo {
|
|
display: none;
|
|
}
|
|
header .header-logo-mobile {
|
|
display: block;
|
|
}
|
|
header .header-button-container {
|
|
margin-left: 1.66667rem;
|
|
}
|
|
header .header-button {
|
|
padding: 0.66667rem 2.5rem;
|
|
}
|
|
header .header-burger-button + label {
|
|
order: 10;
|
|
display: block;
|
|
margin-left: 15px;
|
|
}
|
|
header:not(.sticky-header) nav {
|
|
margin-top: 0;
|
|
}
|
|
header:not(.sticky-header) .header-button-container {
|
|
margin-top: 0;
|
|
}
|
|
+ * {
|
|
display: block;
|
|
margin-top: 4.44444rem;
|
|
}
|
|
|
|
header .header-logo-container {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.header-lang-small {
|
|
display: flex;
|
|
order: 3;
|
|
}
|
|
|
|
.header-lang {
|
|
display: none;
|
|
}
|
|
|
|
.header-search {
|
|
display: block;
|
|
order: 3;
|
|
}
|
|
|
|
.header-button-container {
|
|
order: 4;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
header .header-button-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.sticky-header {
|
|
height: 4.44444rem;
|
|
padding: 0.55556rem 0;
|
|
}
|
|
|
|
.sticky-header + * {
|
|
margin-top: 4.44444rem;
|
|
}
|
|
|
|
.sticky-header .header-logo {
|
|
display: none;
|
|
}
|
|
|
|
.sticky-header .header-logo-mobile {
|
|
display: block;
|
|
}
|
|
|
|
.sticky-header nav > ul > li:hover > a::after,
|
|
.sticky-header nav > ul > li:active > a::after {
|
|
bottom: -1.72222rem;
|
|
height: 1.66667rem;
|
|
}
|
|
|
|
.sticky-header .header-button-container .header-button {
|
|
padding: 12px 35px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sticky-header .header-lang {
|
|
position: static;
|
|
padding: 0.72222rem 0;
|
|
margin-bottom: 2px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.sticky-header .header-lang li {
|
|
line-height: initial;
|
|
}
|
|
|
|
.sticky-header .header-search {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: 1280px) {
|
|
.sticky-header .header-lang {
|
|
margin-bottom: 4px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 960px) {
|
|
.sticky-header .header-search {
|
|
display: block;
|
|
}
|
|
.sticky-header .header-button-container .header-button {
|
|
padding: 0.66667rem 2.5rem;
|
|
}
|
|
.sticky-header nav {
|
|
padding: 0;
|
|
}
|
|
}
|