theme sync
This commit is contained in:
@@ -106,4 +106,136 @@ li.autocart-filters:hover {
|
||||
|
||||
.bg-custom-red-opacity {
|
||||
background-color: rgb(150 29 32 / 30%);
|
||||
}
|
||||
}
|
||||
|
||||
.mdc-list-item {
|
||||
height: 48px;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
position: relative;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
padding: 0 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
|
||||
color: var(--mdc-theme-primary) !important;
|
||||
}
|
||||
li.mdc-list-item:hover {
|
||||
background-color:var(--mdc-theme-primary);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.btn-process {
|
||||
font-size: 2rem;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
background-color: #256EFF;
|
||||
box-shadow: 0px 15px 27px 2px rgba(37, 110, 255, 0.28);
|
||||
border: none;
|
||||
outline: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
padding: 1rem 3rem;
|
||||
border-radius: 1rem;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-ring:after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
margin: 0 8px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid #fff;
|
||||
border-color: #fff transparent #fff transparent;
|
||||
animation: ring 1.2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes ring {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-ring.loading {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.loading .btn-ring {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ac-accordion-content {
|
||||
padding: 10px;
|
||||
display: block; /* Start with display: block to ensure proper height transition */
|
||||
overflow: hidden; /* Hide overflowing content */
|
||||
transition: height 0.3s ease; /* Add transition for height */
|
||||
}
|
||||
|
||||
.collapsed .ac-accordion-content {
|
||||
height: 0; /* Collapse the content by setting height to 0 */
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
transition: height 0.3s ease; /* Add transition for height */
|
||||
}
|
||||
|
||||
|
||||
.order-mobile-first {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
.order-mobile-second {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
/* Web Order (Normal order on larger screens) */
|
||||
.order-web-first {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.order-web-second {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
#slide-out-filters{
|
||||
transition: 300ms ease-in-out;
|
||||
translate: -100%;
|
||||
|
||||
}
|
||||
|
||||
/* Styles for screens wider than 768px (web view) */
|
||||
@media screen and (min-width: 768px) {
|
||||
.container {
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
#slide-out-filters{
|
||||
translate: 0;
|
||||
translate: 0px;
|
||||
position: static;
|
||||
z-index: 40;
|
||||
width: 25%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Styles for screens narrower than 768px (mobile view) */
|
||||
@media screen and (max-width: 768px) {
|
||||
.sticky-container{
|
||||
position: static;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user