2017-08-06 22:24:06 +02:00
|
|
|
.app-header {
|
2017-08-07 03:50:23 +02:00
|
|
|
align-items: center;
|
2017-08-14 10:31:27 +02:00
|
|
|
background: $gallery;
|
2017-08-07 03:50:23 +02:00
|
|
|
position: relative;
|
2017-08-22 02:59:08 +02:00
|
|
|
z-index: $header-z-index;
|
2017-09-05 00:55:14 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2018-05-11 01:51:26 +02:00
|
|
|
width: 100%;
|
|
|
|
flex: 0 0 auto;
|
2017-08-07 03:50:23 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
2017-10-13 00:46:09 +02:00
|
|
|
padding: 12px;
|
2017-10-10 23:40:00 +02:00
|
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
|
2017-08-22 02:59:08 +02:00
|
|
|
z-index: $mobile-header-z-index;
|
2017-08-07 03:50:23 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
|
|
|
@media screen and (min-width: 576px) {
|
2017-10-13 00:46:09 +02:00
|
|
|
height: 75px;
|
|
|
|
justify-content: center;
|
2018-05-11 01:51:26 +02:00
|
|
|
|
|
|
|
&--back-drop {
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
background: $gallery;
|
|
|
|
bottom: -32px;
|
|
|
|
}
|
|
|
|
}
|
2018-01-10 01:45:39 +01:00
|
|
|
}
|
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&__metafox-logo {
|
2018-01-10 01:45:39 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&--icon {
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 01:51:26 +02:00
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&--horizontal {
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-10-13 00:46:09 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__contents {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
width: 100%;
|
2017-08-31 02:02:13 +02:00
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
@media screen and (min-width: 576px) {
|
|
|
|
width: 85vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 769px) {
|
|
|
|
width: 80vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1281px) {
|
|
|
|
width: 62vw;
|
|
|
|
}
|
2017-09-05 00:55:14 +02:00
|
|
|
}
|
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__logo-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2017-09-05 00:55:14 +02:00
|
|
|
}
|
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__account-menu-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2017-08-31 02:02:13 +02:00
|
|
|
}
|
2017-10-18 07:36:53 +02:00
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&__network-component-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2017-10-18 07:36:53 +02:00
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
}
|