110 lines
1.9 KiB
SCSS
110 lines
1.9 KiB
SCSS
#view-amount {
|
|
.item-no-bottom-border + .item {
|
|
border-top: 0;
|
|
}
|
|
.icon-bitpay-card {
|
|
background-image: url("../img/icon-bitpay.svg");
|
|
}
|
|
@media(max-width: 480px) {
|
|
.bitcoin-address {
|
|
.icon {
|
|
left: 8px;
|
|
font-size: 24px;
|
|
}
|
|
.big-icon-svg {
|
|
left:5px;
|
|
& > .bg{
|
|
width:30px;
|
|
height:30px;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
font-size: 11px;
|
|
padding-left: 48px;
|
|
}
|
|
}
|
|
.send-gravatar {
|
|
left: 11px;
|
|
position: absolute;
|
|
top: 10px;
|
|
}
|
|
.amount-pane {
|
|
position: absolute;
|
|
top: 125px;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
padding: 0 16px;
|
|
|
|
.amount-bar {
|
|
padding: 24px 0;
|
|
font-size: 18px;
|
|
.title {
|
|
float: left;
|
|
padding-top: 10px;
|
|
}
|
|
}
|
|
.amount {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
flex-grow: 1;
|
|
position: absolute;
|
|
bottom: 254px;
|
|
top: 66px;
|
|
.light {
|
|
color: #A4A4A4;
|
|
}
|
|
}
|
|
}
|
|
|
|
.keypad {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: lighter;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
|
|
.row {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.col {
|
|
line-height: 40px;
|
|
}
|
|
|
|
.operator {
|
|
background-color: #eaeaea;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
|
|
&:active {
|
|
background-color: #f8f8f8;
|
|
}
|
|
}
|
|
|
|
.operator-send {
|
|
font-weight: bolder;
|
|
color: #f8f8f8;
|
|
background-color: #1e3186;
|
|
font-size: 36px;
|
|
cursor: pointer;
|
|
|
|
&:active {
|
|
background-color: #eaeaea;
|
|
}
|
|
}
|
|
|
|
.digit{
|
|
cursor: pointer;
|
|
border-top: 1px solid #eaeaea;
|
|
border-left: 1px solid #eaeaea;
|
|
&:active {
|
|
background-color: #eaeaea;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|