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-31 02:02:13 +02:00
|
|
|
height: 14.4vh;
|
|
|
|
max-height: 97px;
|
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) {
|
|
|
|
position: fixed;
|
|
|
|
height: 34px;
|
|
|
|
width: 100%;
|
2017-08-14 10:31:27 +02:00
|
|
|
box-shadow: 0 2px 2px 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-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
|
|
|
|
|
|
|
@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
|
|
|
height: 6.9vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1281px) {
|
|
|
|
width: 65vw;
|
2017-08-31 02:02:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-06 22:24:06 +02:00
|
|
|
.app-header h1 {
|
|
|
|
font-family: 'Montserrat Regular';
|
|
|
|
text-transform: uppercase;
|
2017-08-14 10:31:27 +02:00
|
|
|
color: #22232c; // $shark
|
2017-08-06 22:24:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2.page-subtitle {
|
|
|
|
font-family: 'Montserrat Regular';
|
|
|
|
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-08-14 10:31:27 +02:00
|
|
|
}
|