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.
101 lines
1.2 KiB
101 lines
1.2 KiB
7 years ago
|
@import '../../variables.scss';
|
||
|
|
||
|
.header {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
align-items: flex-end;
|
||
|
background: $lightgrey;
|
||
|
margin-bottom: 30px;
|
||
|
padding: 20px;
|
||
|
|
||
|
.status {
|
||
|
font-size: 12px;
|
||
|
color: $darkestgrey;
|
||
|
|
||
|
&.online {
|
||
|
color: $green;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.closeContainer {
|
||
|
background: $lightgrey;
|
||
|
line-height: 12px;
|
||
|
|
||
|
span {
|
||
|
color: $darkestgrey;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.container section {
|
||
|
margin-bottom: 30px;
|
||
|
padding: 0 20px;
|
||
|
|
||
|
.pay, .receive, .sent, .received {
|
||
|
margin: 40px 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
|
||
|
h2 {
|
||
|
color: $secondary;
|
||
|
font-weight: bold;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
.stats {
|
||
|
|
||
|
h4 {
|
||
|
color: $secondary;
|
||
|
font-weight: bold;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin-top: 10px;
|
||
|
color: $darkestgrey;
|
||
|
}
|
||
|
|
||
|
.meter, .amount {
|
||
|
height: 10px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
.meter {
|
||
|
background: $darkgrey;
|
||
|
width: 100%;
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
.amount {
|
||
|
background: $darkestgrey;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.container footer {
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
|
||
|
div {
|
||
|
color: $red;
|
||
|
font-size: 18px;
|
||
|
|
||
|
&:hover {
|
||
|
color: lighten($red, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|