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.
140 lines
2.3 KiB
140 lines
2.3 KiB
@import '../../styles/variables.scss';
|
|
|
|
.container {
|
|
position: relative;
|
|
width: 30%;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
height: 100vh;
|
|
background: #31343f;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
background: linear-gradient(270deg, #868b9f 0%, #333c5e 100%);
|
|
padding: 15px 10px;
|
|
color: $white;
|
|
|
|
input {
|
|
background: transparent;
|
|
outline: 0;
|
|
border: 0;
|
|
color: $white;
|
|
font-size: 14px;
|
|
width: 90%;
|
|
}
|
|
|
|
.closeIcon {
|
|
cursor: pointer;
|
|
transition: all 0.25s;
|
|
|
|
&:hover {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
svg {
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nodes {
|
|
background: #31343f;
|
|
|
|
.networkResults {
|
|
overflow-y: auto;
|
|
margin-top: 30px;
|
|
padding: 0 10px;
|
|
color: $white;
|
|
|
|
li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: 10px 0;
|
|
|
|
h2 {
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
letter-spacing: 1.3px;
|
|
|
|
span {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
|
|
&:nth-child(1) {
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
letter-spacing: 1.3px;
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
display: block;
|
|
color: $darkestgrey;
|
|
font-size: 8px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.connect {
|
|
cursor: pointer;
|
|
color: $darkestgrey;
|
|
transition: all 0.25s;
|
|
font-size: 10px;
|
|
|
|
&:hover {
|
|
color: darken($darkestgrey, 10%);
|
|
}
|
|
}
|
|
|
|
.inactive {
|
|
font-size: 10px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
&.online {
|
|
color: $green;
|
|
}
|
|
|
|
&.offline {
|
|
color: $darkestgrey;
|
|
}
|
|
|
|
&.pending {
|
|
color: $orange;
|
|
}
|
|
|
|
&.private {
|
|
color: darken($darkestgrey, 50%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.manualForm {
|
|
color: $white;
|
|
text-align: center;
|
|
margin: 0 25px;
|
|
|
|
p {
|
|
font-size: 14px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
div {
|
|
background: #383b47;
|
|
font-size: 16px;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
transition: all 0.25s;
|
|
|
|
&:hover {
|
|
background: lighten(#383b47, 10%);
|
|
}
|
|
}
|
|
}
|
|
|