2020-09-26 23:40:26 +07:00
|
|
|
.card-title {
|
2023-01-03 05:24:14 -06:00
|
|
|
color: var(--title-fg);
|
2021-05-03 10:11:30 -03:00
|
|
|
font-size: 10px;
|
2022-05-31 22:31:01 +02:00
|
|
|
margin-bottom: 4px;
|
2021-05-03 10:11:30 -03:00
|
|
|
font-size: 1rem;
|
2020-07-29 17:30:30 +07:00
|
|
|
}
|
2021-05-03 10:11:30 -03:00
|
|
|
|
|
|
|
.card-text {
|
|
|
|
font-size: 22px;
|
|
|
|
span {
|
|
|
|
font-size: 11px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
.green-color {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fee-estimation-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-06-01 12:28:36 +02:00
|
|
|
flex-direction: row;
|
2021-05-03 10:11:30 -03:00
|
|
|
.item {
|
2022-05-31 22:31:01 +02:00
|
|
|
width: 100px;
|
2021-05-03 10:11:30 -03:00
|
|
|
margin: 0;
|
|
|
|
width: -webkit-fill-available;
|
2022-06-01 12:28:36 +02:00
|
|
|
&:first-child {
|
|
|
|
@media (767px < width < 992px), (width < 576px) {
|
|
|
|
display: none
|
|
|
|
}
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|
2022-06-01 12:28:36 +02:00
|
|
|
margin: 0 auto 0px;
|
2021-05-03 10:11:30 -03:00
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.card-text span {
|
2024-04-04 15:36:24 +09:00
|
|
|
color: var(--transparent-fg);
|
2021-05-03 10:11:30 -03:00
|
|
|
font-size: 12px;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
.fee-text{
|
|
|
|
border-bottom: 1px solid #ffffff1c;
|
|
|
|
width: fit-content;
|
|
|
|
margin: auto;
|
2022-06-01 09:46:52 +02:00
|
|
|
font-size: 20px;
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|
|
|
|
.fiat {
|
|
|
|
display: block;
|
2022-06-01 09:46:52 +02:00
|
|
|
font-size: 13px !important;
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-container{
|
2022-06-01 09:46:52 +02:00
|
|
|
height: 50px;
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-text {
|
|
|
|
.skeleton-loader {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
&:first-child {
|
2022-06-01 09:46:52 +02:00
|
|
|
max-width: 70px;
|
|
|
|
margin: 10px auto 3px;
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|
|
|
|
&:last-child {
|
2021-07-26 20:47:08 -03:00
|
|
|
margin: 10px auto 3px;
|
2021-05-03 10:11:30 -03:00
|
|
|
max-width: 55px;
|
|
|
|
}
|
|
|
|
}
|
2022-05-31 22:31:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fee-progress-bar {
|
2022-06-02 17:44:44 +02:00
|
|
|
width: 25%;
|
2022-06-01 09:46:52 +02:00
|
|
|
height: 22px;
|
2022-06-01 12:28:36 +02:00
|
|
|
margin-bottom: 12px;
|
2022-05-31 22:31:01 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-06-01 09:46:52 +02:00
|
|
|
transition: background-color 1s;
|
2024-04-23 18:59:26 +02:00
|
|
|
color: #fff;
|
2022-06-02 17:44:44 +02:00
|
|
|
&.priority {
|
2022-06-01 12:28:36 +02:00
|
|
|
@media (767px < width < 992px), (width < 576px) {
|
2022-06-02 17:44:44 +02:00
|
|
|
width: 100%;
|
2022-06-01 12:28:36 +02:00
|
|
|
}
|
2022-06-02 17:44:44 +02:00
|
|
|
width: 75%;
|
|
|
|
border-radius: 0px 10px 10px 0px;
|
2022-06-01 12:28:36 +02:00
|
|
|
}
|
2022-06-02 17:44:44 +02:00
|
|
|
&:first-child {
|
2022-06-01 12:28:36 +02:00
|
|
|
@media (767px < width < 992px), (width < 576px) {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
}
|
2022-06-02 17:44:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.band-separator {
|
|
|
|
width: 5%;
|
|
|
|
@media (767px < width < 992px), (width < 576px) {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
&.fill {
|
|
|
|
height: 22px;
|
|
|
|
background: repeating-linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgb(45, 51, 72),
|
|
|
|
rgb(45, 51, 72) 2px,
|
|
|
|
rgb(29, 31, 49) 2px,
|
|
|
|
rgb(29, 31, 49) 4px
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fee-label {
|
|
|
|
padding-top: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 100%;
|
|
|
|
@media (767px < width < 992px), (width < 576px) {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
&.prority {
|
|
|
|
width: 33%;
|
|
|
|
}
|
2022-06-09 15:58:49 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2021-05-03 10:11:30 -03:00
|
|
|
}
|