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.
79 lines
1.1 KiB
79 lines
1.1 KiB
7 years ago
|
@import '../../variables.scss';
|
||
|
|
||
|
.wallet {
|
||
|
cursor: pointer;
|
||
|
background: $lightgrey;
|
||
|
transition: background 0.25s;
|
||
|
|
||
|
&:hover {
|
||
|
background: $darkgrey;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.left, .right {
|
||
|
display: inline-block;
|
||
|
vertical-align: top;
|
||
|
width: 50%;
|
||
|
|
||
|
.leftContent, .rightContent {
|
||
|
padding: 25px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.leftContent {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
|
||
|
.details {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
|
||
|
h1 {
|
||
|
font-size: 24px;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 10px;
|
||
|
letter-spacing: 1.5px;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
margin: 2.5px 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
font-size: 100px;
|
||
|
color: $main;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.rightContent {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
|
||
|
.data {
|
||
|
margin: 10px 0;
|
||
|
|
||
|
h2 {
|
||
|
margin-bottom: 5px;
|
||
|
text-transform: uppercase;
|
||
|
font-size: 10px;
|
||
|
letter-spacing: 1.5px;
|
||
|
|
||
|
span {
|
||
|
color: #1DA1F2;
|
||
|
// text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 14px;
|
||
|
padding-bottom: 5px;
|
||
|
border-bottom: 1px solid $main;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|