frontend price calculator
This commit is contained in:
parent
4f9a39fd36
commit
475a4643fd
4 changed files with 617 additions and 64 deletions
36
hub/services/static/css/price-calculator.css
Normal file
36
hub/services/static/css/price-calculator.css
Normal file
|
@ -0,0 +1,36 @@
|
|||
.form-range::-webkit-slider-thumb {
|
||||
background: #6f42c1;
|
||||
}
|
||||
|
||||
.form-range::-moz-range-thumb {
|
||||
background: #6f42c1;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-check:checked+.btn-outline-primary {
|
||||
background-color: #6f42c1;
|
||||
border-color: #6f42c1;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.card {
|
||||
transition: box-shadow 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
#selectedPlanDetails {
|
||||
animation: fadeIn 0.3s ease-in;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue