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.
124 lines
1.8 KiB
124 lines
1.8 KiB
7 years ago
|
@import '../../variables.scss';
|
||
8 years ago
|
|
||
|
.title {
|
||
|
text-align: center;
|
||
|
font-size: 24px;
|
||
|
color: $black;
|
||
|
margin-bottom: 50px;
|
||
|
}
|
||
|
|
||
|
.pubkey, .local, .push {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
font-size: 18px;
|
||
|
height: auto;
|
||
|
min-height: 55px;
|
||
|
margin-bottom: 20px;
|
||
|
border: 1px solid $traditionalgrey;
|
||
|
border-radius: 6px;
|
||
|
position: relative;
|
||
|
padding: 0 20px;
|
||
|
|
||
|
label, input[type=text] {
|
||
|
font-size: inherit;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
padding-top: 19px;
|
||
|
padding-bottom: 12px;
|
||
|
color: $traditionalgrey;
|
||
7 years ago
|
|
||
|
svg[data-icon='ltc'] {
|
||
|
width: 18px;
|
||
|
height: 16px;
|
||
|
|
||
|
g {
|
||
|
transform: scale(1.75) translate(-5px, -5px);
|
||
|
}
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
|
input[type=text] {
|
||
|
width: 100%;
|
||
|
border: none;
|
||
|
outline: 0;
|
||
|
-webkit-appearance: none;
|
||
|
height: 55px;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
.peers {
|
||
|
margin-bottom: 50px;
|
||
|
|
||
|
h2 {
|
||
|
text-transform: uppercase;
|
||
|
font-weight: 200;
|
||
|
padding: 10px 0;
|
||
|
border-bottom: 1px solid $grey;
|
||
|
color: $darkestgrey;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.peer {
|
||
|
position: relative;
|
||
|
background: $white;
|
||
|
padding: 10px;
|
||
|
border-top: 1px solid $grey;
|
||
|
cursor: pointer;
|
||
|
transition: all 0.25s;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
&:first-child {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
h4, h1 {
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
h4 {
|
||
|
font-size: 12px;
|
||
|
font-weight: bold;
|
||
|
color: $black;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 14px;
|
||
|
font-weight: 200;
|
||
|
color: $main;
|
||
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
.buttonGroup {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
border-radius: 6px;
|
||
|
overflow: hidden;
|
||
|
|
||
|
.button {
|
||
|
cursor: pointer;
|
||
|
height: 55px;
|
||
|
min-height: 55px;
|
||
|
text-transform: none;
|
||
|
font-size: 18px;
|
||
|
transition: opacity .2s ease-out;
|
||
|
background: $main;
|
||
|
color: $white;
|
||
|
border: none;
|
||
|
font-weight: 500;
|
||
|
padding: 0;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
line-height: 55px;
|
||
|
|
||
|
&:first-child {
|
||
|
border-right: 1px solid lighten($main, 20%);
|
||
|
}
|
||
|
}
|
||
8 years ago
|
}
|