61 lines
1010 B
SCSS
61 lines
1010 B
SCSS
@import './_shared.scss';
|
|
|
|
.page-container {
|
|
@include page-container;
|
|
}
|
|
|
|
.card {
|
|
@include glass-card;
|
|
padding: 40px;
|
|
|
|
.label {
|
|
font-size: 28px;
|
|
color: $text-secondary;
|
|
margin-bottom: 24px;
|
|
display: block;
|
|
}
|
|
|
|
.input-box {
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
padding-bottom: 20px;
|
|
margin-bottom: 24px;
|
|
|
|
.symbol {
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
color: $text-main;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.input {
|
|
flex: 1;
|
|
height: 60px;
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
color: $primary-green;
|
|
}
|
|
}
|
|
|
|
.balance-tip {
|
|
font-size: 24px;
|
|
color: $text-muted;
|
|
|
|
.all {
|
|
color: $primary-cyan;
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
|
|
.btn-submit {
|
|
margin-top: 80px;
|
|
@include neon-button($primary-green);
|
|
height: 88px;
|
|
line-height: 88px;
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
border-radius: 44px;
|
|
}
|
|
}
|