Wallet/src/sass/views/walletDetails.scss

198 lines
3 KiB
SCSS
Raw Normal View History

.wallet-details {
&__tx-amount {
font-size: 16px;
&--recent {
color: $mid-gray;
font-weight: bold;
}
&--received {
2016-11-08 14:15:24 -05:00
color: #09C286;
}
&--sent {
color: $dark-gray;
}
}
&__tx-time {
color: $light-gray;
font-size: 12.5px;
}
&__tx-title {
flex-grow: 1;
color: $dark-gray;
overflow: hidden;
}
&__tx-icon {
float: left;
2016-11-01 14:56:53 -04:00
margin-right: 25px;
}
&__tx-message {
margin-right: 1rem;
}
&__list {
}
2016-11-08 15:00:54 -05:00
.item {
display: flex;
align-items: center;
background: #fff;
padding-left: 1rem;
}
&__item {
display: flex;
align-items: center;
background: #fff;
2016-11-08 15:00:54 -05:00
padding: 0;
margin: 0;
border: 0;
padding-left: 1rem;
2016-11-03 17:29:29 -04:00
2016-11-03 17:38:46 -04:00
&.proposal {
position: relative;
}
2016-11-03 17:29:29 -04:00
&__marker {
position: absolute;
height: 100%;
width: 3px;
background: #F5A623;
left: 0;
}
}
&__tx-content {
display: flex;
align-items: center;
flex-grow: 1;
padding: 1rem 0;
padding-right: 1rem;
border-bottom: 1px solid rgb(245, 245, 245);
overflow: hidden;
2016-11-04 13:29:19 -04:00
&.no-border {
border: 0;
}
}
&__tx-amount {
white-space: nowrap;
}
2016-11-01 17:32:18 -04:00
&__group-label {
font-size: 14px;
font-weight: 300;
color: #727272;
padding: 2px 1rem;
}
}
2016-09-01 15:04:15 -04:00
#walletDetails {
background: #F8F8F9;
2016-11-11 18:49:23 -05:00
.ionic-refresher-content {
color: white !important;
}
.spinner svg {
stroke: white;
fill: white;
}
2016-11-10 14:26:22 -05:00
.bp-content {
position: relative;
height: 100%;
&.status-bar {
margin-top: 20px;
}
}
2016-09-01 15:04:15 -04:00
.bar-header {
border: 0;
background: none;
2016-09-01 15:04:15 -04:00
.title, .button {
color: #fff;
}
.button {
background-color: transparent;
}
}
2016-09-16 11:30:16 -03:00
.nav-bar-block, .bar {
background-color: inherit !important;
}
ion-content {
margin-top: 180px;
padding-top: 0;
top: 0;
.scroll {
background: rgb(248, 248, 249);
2016-11-10 14:02:34 -05:00
min-height: 300px;
}
}
.amount-wrapper {
position: relative;
overflow: visible;
.amount-bg {
content: '';
bottom: 0;
left: 0;
position: absolute;
width: 100%;
2016-11-10 14:02:34 -05:00
height: 200px;
transform: translateY(100px);
}
}
2016-09-01 15:04:15 -04:00
.amount {
width: 100%;
text-align: center;
color: #fff;
height: 180px;
2016-09-07 13:34:47 -03:00
margin-bottom: 10px;
padding-top: 40px;
display: flex;
align-items: center;
justify-content: center;
2016-09-01 15:04:15 -04:00
&-alternative {
2016-09-07 13:34:47 -03:00
line-height: 36px;
}
strong {
line-height: 100%;
2016-09-01 15:04:15 -04:00
}
}
.item.item-footer {
font-weight: lighter;
}
.tx-search:before {
font-size: 22px !important;
}
.description {
background-color: #f2f2f2;
text-align: center;
font-size: 13px;
color: $mid-gray;
}
}
.wallet-details-wallet-info {
position: absolute;
top: inherit;
left: 10px;
bottom: 15px;
font-size: 20px;
color: #fff;
}
.wallet-not-backed-up-warning {
background: orange;
text-align: center;
color: white;
font-size: 14px;
display: block;
text-decoration: none;
z-index: 9999;
position: relative;
}