storj/web/satellite/src/components/header/headerArea.scss

103 lines
1.8 KiB
SCSS
Raw Normal View History

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