A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/app/css/itcss/components/hero-balance.scss

106 lines
2.0 KiB

.hero-balance {
@media screen and (max-width: $break-small) {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
margin: 0.3em 0.9em 0em 0.9em;
height: 80vh;
max-height: 225px;
}
@media screen and (min-width: $break-large) {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin: 2.8em 0.9em 0.8em 0.9em;
}
.balance-container {
display: flex;
margin: 0;
justify-content: flex-start;
align-items: center;
@media screen and (max-width: $break-small) {
flex-direction: column;
}
@media screen and (min-width: $break-large) {
flex-direction: row;
flex-grow: 3;
}
}
.balance-display {
@media screen and (max-width: $break-small) {
text-align: center;
.token-amount {
font-size: 175%;
margin-top: 12.5%;
}
.fiat-amount {
font-size: 115%;
margin-top: 8.5%;
color: #A0A0A0;
}
}
@media screen and (min-width: $break-large) {
margin-left: 3%;
justify-content: flex-start;
align-items: flex-start;
.token-amount {
font-size: 135%;
}
.fiat-amount {
margin-top: 0.25%;
font-size: 105%;
}
}
}
.balance-icon {
border-radius: 25px;
width: 45px;
height: 45px;
border: 1px solid $alto;
}
.hero-balance-buttons {
@media screen and (max-width: $break-small) {
width: 100%;
height: 100px; // needed a round number to set the heights of the buttons inside
}
@media screen and (min-width: $break-large) {
flex-grow: 2;
}
button.btn-clear {
font-size: 75%;
background: white;
border: 1px solid;
@media screen and (max-width: $break-small) {
width: 28%;
height: 55%;
}
@media screen and (min-width: $break-large) {
width: 5%;
flex-grow: 2;
height: 4.2vh;
min-height: 28px;
font-size: .7em;
}
}
}
}