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.
197 lines
2.7 KiB
197 lines
2.7 KiB
@import '../../variables.scss';
|
|
|
|
.nav {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 20%;
|
|
font-size: 24px;
|
|
background: $secondary;
|
|
height: 100vh;
|
|
position: relative;
|
|
min-width: 15%;
|
|
color: $white;
|
|
}
|
|
|
|
.header {
|
|
padding: 20px;
|
|
|
|
h1 {
|
|
color: $main;
|
|
font-size: 30px;
|
|
font-weight: 300;
|
|
text-align: center;
|
|
float: left;
|
|
-webkit-font-smoothing: antialiased;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
span {
|
|
font-family: "Open Sans", "Helvetica Neue", Helvetica;
|
|
color: #bbb;
|
|
font-size: 11px;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
text-align: right;
|
|
line-height: 100%;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
padding: 25px 10px 10px 10px;
|
|
|
|
.link {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
list-style-type: none;
|
|
width: 50%;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
|
|
.currency {
|
|
margin: 0 1px;
|
|
|
|
&.active {
|
|
color: $main;
|
|
}
|
|
|
|
span {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
|
|
svg[data-icon='ltc'] {
|
|
width: 24px;
|
|
height: 28px;
|
|
|
|
g {
|
|
transform: scale(1.75) translate(-5px, -5px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
margin-bottom: 35%;
|
|
|
|
svg {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
.balance {
|
|
text-align: right;
|
|
color: $main;
|
|
|
|
p {
|
|
margin: 2px 0;
|
|
|
|
&:first-child {
|
|
font-size: 14px;
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
font-size: 12px;
|
|
}
|
|
|
|
span {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
svg[data-icon='ltc'] {
|
|
width: 10px;
|
|
height: 10px;
|
|
|
|
g {
|
|
transform: scale(1.75) translate(-5px, -5px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 50%;
|
|
|
|
.link {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
color: $darkestgrey;
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
border-left: 20px solid transparent;
|
|
transition: all 0.25s;
|
|
|
|
.activeBorder {
|
|
position: absolute;
|
|
left: -30px;
|
|
width: 10px;
|
|
height: 100%;
|
|
margin: 0;
|
|
background: $main;
|
|
transition: all 0.25s;
|
|
}
|
|
|
|
li {
|
|
margin: 12.5px 0;
|
|
min-width: 200px;
|
|
}
|
|
|
|
&.active {
|
|
color: $white;
|
|
opacity: 1.0;
|
|
|
|
.activeBorder {
|
|
left: -10px;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
width: 32px;
|
|
height: 32px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span {
|
|
margin-left: 15px;
|
|
line-height: 22px;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
letter-spacing: .2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
width: 75%;
|
|
font-size: 18px;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
right: 12.5%;
|
|
}
|
|
|
|
.button {
|
|
margin-bottom: 20px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
letter-spacing: .2px;
|
|
}
|
|
|
|
.content {
|
|
width: 80%;
|
|
}
|
|
|