2019-04-01 12:24:45 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2019-09-26 14:36:12 +01:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2019-11-05 11:30:18 +00:00
|
|
|
::-webkit-scrollbar,
|
|
|
|
::-webkit-scrollbar-track,
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
width: 3px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #afb7c1;
|
|
|
|
}
|
|
|
|
|
2020-03-16 12:08:38 +00:00
|
|
|
.navigation-svg-path {
|
|
|
|
fill: rgb(53, 64, 73);
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:24:45 +01:00
|
|
|
.navigation-area {
|
2019-09-09 17:29:19 +01:00
|
|
|
min-width: 280px;
|
|
|
|
max-width: 280px;
|
2020-05-06 18:09:27 +01:00
|
|
|
height: calc(100vh - 140px);
|
2019-11-05 11:30:18 +00:00
|
|
|
overflow-y: scroll;
|
2020-08-20 20:38:17 +01:00
|
|
|
overflow-x: hidden;
|
2019-09-09 17:29:19 +01:00
|
|
|
background-color: #fff;
|
2020-05-06 18:09:27 +01:00
|
|
|
padding: 20px 0 120px 0;
|
2019-04-01 12:24:45 +01:00
|
|
|
display: flex;
|
2019-09-09 17:29:19 +01:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-09-09 17:29:19 +01:00
|
|
|
|
|
|
|
&__logo {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: 60px;
|
2020-08-20 20:38:17 +01:00
|
|
|
flex: 0 0 auto;
|
2019-09-09 17:29:19 +01:00
|
|
|
|
|
|
|
&__img {
|
|
|
|
width: 54px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
|
2019-09-09 17:29:19 +01:00
|
|
|
&__text {
|
|
|
|
margin-left: 12px;
|
|
|
|
width: 69px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
}
|
2019-09-09 17:29:19 +01:00
|
|
|
|
2020-05-06 18:09:27 +01:00
|
|
|
&__project-title,
|
|
|
|
&__resources-title {
|
2019-09-09 17:29:19 +01:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
2019-09-12 12:53:43 +01:00
|
|
|
color: #505872;
|
2020-05-06 18:09:27 +01:00
|
|
|
margin: 0 0 20px 65px;
|
2019-09-09 17:29:19 +01:00
|
|
|
font-weight: 600;
|
2020-08-20 20:38:17 +01:00
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__project-title {
|
|
|
|
margin: 40px 0 15px 65px;
|
|
|
|
padding-top: 20px;
|
2019-04-01 12:24:45 +01:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:29:19 +01:00
|
|
|
&__resources-title {
|
2020-08-20 20:38:17 +01:00
|
|
|
flex: 0 0 auto;
|
2020-05-06 18:09:27 +01:00
|
|
|
margin: 35px 0 20px 65px;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
|
2019-09-09 17:29:19 +01:00
|
|
|
&__item-container {
|
2020-08-20 20:38:17 +01:00
|
|
|
flex: 0 0 auto;
|
2019-09-09 17:29:19 +01:00
|
|
|
height: 52px;
|
|
|
|
padding-left: 60px;
|
|
|
|
border-left: 3px solid transparent;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&.router-link-active,
|
2019-04-01 12:24:45 +01:00
|
|
|
&:hover {
|
2019-10-28 15:59:19 +00:00
|
|
|
border-left: 3px solid #2683ff;
|
2019-09-09 17:29:19 +01:00
|
|
|
|
2019-09-26 14:36:12 +01:00
|
|
|
.svg .navigation-svg-path:not(.white) {
|
2019-10-28 15:59:19 +00:00
|
|
|
fill: #2683ff !important;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
|
2019-09-26 14:36:12 +01:00
|
|
|
&__title {
|
2019-10-28 15:59:19 +00:00
|
|
|
font-family: 'font_medium', sans-serif;
|
2019-09-09 17:29:19 +01:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 23px;
|
|
|
|
color: #354049;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.docs-title {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.support-item {
|
2020-05-06 18:09:27 +01:00
|
|
|
margin-bottom: 25px;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-item {
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
|
|
&.router-link-active {
|
|
|
|
|
2019-09-26 14:36:12 +01:00
|
|
|
.account-item {
|
2019-10-28 15:59:19 +00:00
|
|
|
color: #2683ff;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 16:08:14 +01:00
|
|
|
.disabled {
|
2020-04-22 17:21:12 +01:00
|
|
|
cursor: not-allowed;
|
2019-10-28 15:59:19 +00:00
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.6;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
|
|
|
|
2020-08-20 20:38:17 +01:00
|
|
|
.project-selection {
|
|
|
|
margin: 10px 0 0 65px;
|
2019-09-20 11:21:22 +01:00
|
|
|
}
|
|
|
|
|
2020-02-27 18:28:11 +00:00
|
|
|
@media screen and (max-width: 1280px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-11-05 11:30:18 +00:00
|
|
|
::-webkit-scrollbar,
|
|
|
|
::-webkit-scrollbar-track,
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
.divider {
|
|
|
|
margin-left: 42px;
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:29:19 +01:00
|
|
|
.navigation-area {
|
2019-09-20 11:21:22 +01:00
|
|
|
z-index: 200;
|
2019-04-01 12:24:45 +01:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
&__item-container {
|
|
|
|
padding-left: 40px;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
|
|
|
|
2019-09-11 11:21:45 +01:00
|
|
|
&__project-title,
|
2020-05-06 18:09:27 +01:00
|
|
|
&__resources-title {
|
2019-09-20 11:21:22 +01:00
|
|
|
margin-left: 45px;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
&__project-title {
|
2020-08-20 20:38:17 +01:00
|
|
|
margin-top: 0;
|
2019-09-09 17:29:19 +01:00
|
|
|
}
|
2019-04-01 12:24:45 +01:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
&__logo {
|
|
|
|
display: none;
|
2019-04-01 12:24:45 +01:00
|
|
|
}
|
2019-09-09 17:29:19 +01:00
|
|
|
|
2020-08-20 20:38:17 +01:00
|
|
|
.project-selection {
|
2019-09-20 11:21:22 +01:00
|
|
|
margin-left: 35px;
|
2019-04-01 12:24:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-05 11:30:18 +00:00
|
|
|
|
2020-05-06 18:09:27 +01:00
|
|
|
@media screen and (max-height: 770px) {
|
2019-11-05 11:30:18 +00:00
|
|
|
|
|
|
|
.navigation-area {
|
2020-05-06 18:09:27 +01:00
|
|
|
padding: 20px 0 50px 0;
|
|
|
|
height: calc(100vh - 70px);
|
2019-11-05 11:30:18 +00:00
|
|
|
}
|
|
|
|
}
|