You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
2.1 KiB
148 lines
2.1 KiB
@import '../../../variables.scss';
|
|
|
|
.container.graphview {
|
|
background: $black;
|
|
}
|
|
|
|
.search {
|
|
height: 75px;
|
|
padding: 2px 25px;
|
|
border-bottom: 1px solid $darkgrey;
|
|
background: $white;
|
|
|
|
.input {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
height: 100%;
|
|
}
|
|
|
|
.label {
|
|
width: 5%;
|
|
line-height: 70px;
|
|
font-size: 25px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.text {
|
|
width: 95%;
|
|
outline: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 0;
|
|
height: 68px;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.filtersContainer {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: 0 40px;
|
|
|
|
h2, h2 span {
|
|
color: $bluegrey;
|
|
cursor: pointer;
|
|
transition: color 0.25s;
|
|
|
|
&:hover {
|
|
color: lighten($bluegrey, 10%);
|
|
}
|
|
}
|
|
|
|
h2, .filters li {
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
color: $darkestgrey;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
h2 span.pulldown {
|
|
color: $main;
|
|
}
|
|
|
|
.filters {
|
|
display: none;
|
|
|
|
&.active {
|
|
display: block;
|
|
position: absolute;
|
|
bottom: -100px;
|
|
z-index: 10;
|
|
|
|
li {
|
|
margin: 5px 0;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: $main;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.refreshContainer {
|
|
color: $bluegrey;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: lighten($bluegrey, 10%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.layoutsContainer {
|
|
padding: 40px;
|
|
|
|
span {
|
|
font-size: 30px;
|
|
color: $grey;
|
|
cursor: pointer;
|
|
transition: all 0.25s;
|
|
|
|
&:nth-child(1) {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
&:hover {
|
|
color: $darkestgrey;
|
|
}
|
|
|
|
&.active {
|
|
color: $darkestgrey;
|
|
}
|
|
}
|
|
}
|
|
|
|
.createChannelContainer {
|
|
padding: 40px;
|
|
|
|
.newChannelButton {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.channels {
|
|
padding: 10px 40px 40px 40px;
|
|
transition: opacity 0.25s;
|
|
|
|
&.fade {
|
|
opacity: 0.05;
|
|
}
|
|
|
|
.cardsContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|