2017-08-06 22:24:06 +02:00
|
|
|
.app-header {
|
2017-08-07 03:50:23 +02:00
|
|
|
align-items: center;
|
|
|
|
visibility: visible;
|
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;
|
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-08-07 03:50:23 +02:00
|
|
|
width: 100%;
|
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-01-10 01:45:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.metafox-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2017-10-13 00:46:09 +02:00
|
|
|
|
2018-01-10 01:45:39 +01:00
|
|
|
.app-header--initialized {
|
|
|
|
|
|
|
|
@media screen and (min-width: 576px) {
|
2017-10-13 00:46:09 +02:00
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
background: $gallery;
|
|
|
|
bottom: -32px;
|
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
}
|
|
|
|
|
2017-08-31 02:02:13 +02:00
|
|
|
.app-header-contents {
|
|
|
|
display: flex;
|
2017-09-05 00:55:14 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
flex-flow: row nowrap;
|
2017-08-31 02:02:13 +02:00
|
|
|
width: 100%;
|
2017-09-05 00:55:14 +02:00
|
|
|
height: 6.9vh;
|
2017-08-31 02:02:13 +02:00
|
|
|
|
2017-09-14 18:56:40 +02:00
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-31 02:02:13 +02:00
|
|
|
@media screen and (min-width: 576px) {
|
2017-09-05 00:55:14 +02:00
|
|
|
width: 85vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 769px) {
|
2017-08-31 02:02:13 +02:00
|
|
|
width: 80vw;
|
2017-09-05 00:55:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1281px) {
|
2018-01-11 06:09:09 +01:00
|
|
|
width: 62vw;
|
2017-08-31 02:02:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-06 22:24:06 +02:00
|
|
|
.app-header h1 {
|
2017-10-13 00:46:09 +02:00
|
|
|
font-family: Roboto;
|
2017-08-06 22:24:06 +02:00
|
|
|
text-transform: uppercase;
|
2017-10-13 00:46:09 +02:00
|
|
|
font-weight: 400;
|
2018-01-11 06:09:09 +01:00
|
|
|
font-size: 1.1rem;
|
|
|
|
position: relative;
|
|
|
|
padding-left: 15px;
|
|
|
|
color: #5b5d67;
|
2017-10-18 07:36:53 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 18:29:33 +01:00
|
|
|
.beta-label {
|
|
|
|
font-family: Roboto;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
2018-03-06 18:14:57 +01:00
|
|
|
font-size: .8rem;
|
2018-02-27 18:29:33 +01:00
|
|
|
color: $buttercup;
|
2018-03-06 18:14:57 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
line-height: initial;
|
2018-02-27 18:29:33 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-06 22:24:06 +02:00
|
|
|
h2.page-subtitle {
|
|
|
|
text-transform: uppercase;
|
2017-08-14 10:31:27 +02:00
|
|
|
color: #aeaeae;
|
2017-08-06 22:24:06 +02:00
|
|
|
font-size: 1em;
|
|
|
|
margin: 12px;
|
|
|
|
}
|
2017-08-07 03:50:23 +02:00
|
|
|
|
|
|
|
.network-component-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-menu-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2017-10-25 09:34:12 +02:00
|
|
|
cursor: pointer;
|
2017-08-14 10:31:27 +02:00
|
|
|
}
|
2017-10-13 00:46:09 +02:00
|
|
|
|
|
|
|
.header__right-actions {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2017-10-13 08:10:58 +02:00
|
|
|
|
|
|
|
.identicon {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-10-13 00:46:09 +02:00
|
|
|
}
|