2019-09-20 11:21:22 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
.header-container {
|
|
|
|
font-family: 'font_regular', sans-serif;
|
|
|
|
min-height: 62px;
|
|
|
|
background-color: #fff;
|
2019-09-20 11:21:22 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2020-05-06 13:47:39 +01:00
|
|
|
padding: 0 30px;
|
2019-09-20 11:21:22 +01:00
|
|
|
position: relative;
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
&__left-area {
|
2019-09-20 11:21:22 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
&__logo-area {
|
|
|
|
width: 220px;
|
|
|
|
|
|
|
|
&__menu-button {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-09-20 11:21:22 +01:00
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
&__close-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2019-09-20 11:21:22 +01:00
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
&__title {
|
|
|
|
margin-left: 13px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 23px;
|
|
|
|
color: #a9b5c1;
|
|
|
|
}
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
.logo {
|
|
|
|
cursor: pointer;
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.adapted-navigation {
|
|
|
|
position: absolute;
|
2020-09-09 19:25:59 +01:00
|
|
|
top: 62px;
|
2019-09-20 11:21:22 +01:00
|
|
|
left: 0;
|
2020-09-09 19:25:59 +01:00
|
|
|
z-index: 100;
|
|
|
|
height: 100vh;
|
2020-09-21 14:50:02 +01:00
|
|
|
background: #e6e9ef;
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-blur {
|
|
|
|
height: 100vh;
|
2020-09-21 14:50:02 +01:00
|
|
|
width: 100%;
|
2019-09-20 11:21:22 +01:00
|
|
|
position: absolute;
|
2020-09-09 19:25:59 +01:00
|
|
|
top: 62px;
|
|
|
|
left: 220px;
|
2019-09-20 11:21:22 +01:00
|
|
|
z-index: 100;
|
|
|
|
background: rgba(134, 134, 148, 0.4);
|
|
|
|
}
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
.project-selection,
|
|
|
|
.resources-selection {
|
|
|
|
margin-right: 35px;
|
|
|
|
}
|
|
|
|
|
2020-02-27 18:28:11 +00:00
|
|
|
@media screen and (min-width: 1281px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
.adapted-navigation,
|
|
|
|
.navigation-blur,
|
2020-09-09 19:25:59 +01:00
|
|
|
.header-container__left-area__close-button {
|
2019-09-20 11:21:22 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-27 18:28:11 +00:00
|
|
|
@media screen and (max-width: 1280px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
.header-container {
|
2019-09-20 11:21:22 +01:00
|
|
|
padding: 0 40px;
|
|
|
|
|
|
|
|
&__left-area {
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
&__logo-area {
|
|
|
|
|
|
|
|
&__menu-button {
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-09 19:25:59 +01:00
|
|
|
.logo {
|
|
|
|
display: none;
|
2020-05-06 18:09:27 +01:00
|
|
|
}
|
2020-09-21 14:50:02 +01:00
|
|
|
|
|
|
|
/deep/ .edit-project {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2020-05-06 18:09:27 +01:00
|
|
|
}
|