2024-04-13 09:05:05 +00:00
|
|
|
.close-button {
|
|
|
|
position: absolute;
|
|
|
|
top: 0.5em;
|
|
|
|
right: 0.5em;
|
2024-04-13 21:13:11 +09:00
|
|
|
}
|
|
|
|
|
2024-04-13 20:53:19 +09:00
|
|
|
.estimating {
|
|
|
|
color: var(--green)
|
2024-04-13 21:13:11 +09:00
|
|
|
}
|
2024-06-26 18:35:36 +09:00
|
|
|
|
|
|
|
.paymentMethod {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: var(--secondary);
|
|
|
|
border-radius: 15px;
|
|
|
|
border: 2px solid var(--bg);
|
|
|
|
cursor: pointer;
|
2024-06-27 02:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.default-slot:not(:only-child) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pie {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 330px;
|
2024-06-27 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.fee-card {
|
|
|
|
padding: 15px;
|
|
|
|
background-color: var(--bg);
|
|
|
|
|
|
|
|
.feerate {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.rate {
|
|
|
|
font-size: 0.9em;
|
|
|
|
.symbol {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-border {
|
|
|
|
border: solid 1px black;
|
|
|
|
background-color: #0c4a87;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feerate.active {
|
|
|
|
background-color: var(--primary) !important;
|
|
|
|
opacity: 1;
|
|
|
|
border: 1px solid #007fff !important;
|
|
|
|
}
|
|
|
|
.feerate:focus {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2024-06-30 06:51:01 +00:00
|
|
|
.grayOut {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
2024-06-27 09:10:32 +00:00
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-toggle {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
&:first-child {
|
|
|
|
margin-right: 1px;
|
|
|
|
}
|
|
|
|
border: solid 1px black;
|
|
|
|
border-bottom: none;
|
|
|
|
background-color: #323655;
|
|
|
|
border-top-left-radius: 10px !important;
|
|
|
|
border-top-right-radius: 10px !important;
|
|
|
|
}
|
|
|
|
.tab.active {
|
|
|
|
background-color: #5d659d !important;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.tab:focus {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-accelerator {
|
|
|
|
tr {
|
|
|
|
td {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.group-first {
|
|
|
|
td {
|
|
|
|
padding-top: 0.75rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.group-last, &:last-child {
|
|
|
|
td {
|
|
|
|
padding-bottom: 0.75rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.dashed-top {
|
|
|
|
border-top: 1px dashed grey;
|
|
|
|
}
|
|
|
|
&.dashed-bottom {
|
|
|
|
border-bottom: 1px dashed grey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
&:first-child {
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
&.info {
|
|
|
|
color: #6c757d;
|
|
|
|
white-space: initial;
|
|
|
|
}
|
|
|
|
&.amt {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 0.2em;
|
|
|
|
}
|
|
|
|
&.units {
|
|
|
|
padding-left: 0.2em;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.accelerate-cols {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: stretch;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
2024-06-28 07:02:12 +00:00
|
|
|
.payment-area {
|
|
|
|
background: var(--bg);
|
|
|
|
}
|
|
|
|
|
2024-06-27 09:10:32 +00:00
|
|
|
.col.pie {
|
|
|
|
flex-grow: 0;
|
|
|
|
padding: 0 1em;
|
|
|
|
position: relative;
|
|
|
|
top: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
white-space: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-background {
|
|
|
|
background-color: var(--bg);
|
2024-06-28 07:02:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.checkout-text {
|
|
|
|
color: rgb(186, 186, 186);
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-accelerate {
|
|
|
|
background-color: var(--tertiary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-small-height {
|
|
|
|
line-height: 1;
|
2024-06-30 03:43:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.summary-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 2em;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2024-06-30 06:51:01 +00:00
|
|
|
}
|