Wallet/src/sass/views/addresses.scss

80 lines
1.5 KiB
SCSS
Raw Normal View History

2016-11-16 10:15:13 -03:00
#addresses {
.addr {
&-explanation, &-button-group {
padding: 0 1rem;
margin: 1rem 0;
}
&-heading {
font-size: 17px;
color: $dark-gray;
margin: 1rem 0;
}
&-description {
text-align: center;
font-size: 15px;
color: $mid-gray;
margin: 1rem 0;
2016-11-16 15:23:26 -03:00
a {
font-weight: bold;
cursor: pointer;
cursor: hand;
}
2016-11-16 10:15:13 -03:00
}
&-description-disabled {
color: cadetblue;
text-decoration: none;
}
&-balance {
margin-top: 4px;
color: #5DD263;
}
&-path {
margin-top: 4px;
color: #B8B8B8;
}
.addr-title, .addr-value {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.addr-list {
.item {
color: $dark-gray;
padding-top: 1.3rem;
padding-bottom: 1.3rem;
&.has-addr-value {
padding-top: .65rem;
padding-bottom: .65rem;
}
&.item-divider {
color: $mid-gray;
padding-bottom: .5rem;
font-size: .9rem;
}
2016-11-16 15:23:26 -03:00
&.view-all {
margin: 20px 0px 20px 0px;
cursor: pointer;
cursor: hand;
i {
font-size: 35px;
margin-right: 5px;
2016-11-17 09:49:29 -03:00
color: #647ce8;
2016-11-16 15:23:26 -03:00
}
2016-11-17 09:49:29 -03:00
span {
color: #647ce8;
2016-11-16 15:23:26 -03:00
font-weight: bold;
}
2016-11-16 10:15:13 -03:00
}
2016-11-17 09:49:29 -03:00
i {
font-size: 35px;
margin-right: 5px;
}
2016-11-16 10:15:13 -03:00
}
.item-note {
color: $light-gray;
}
}
}