CSS Schnipsel
Hintergrund filter blury:
selector {
backdrop-filter: blur(4px);
}
Versand und Steuer Infos ausgeblendet:
selector p.wc-gzd-additional-info {display:none;};
Elemente nach Zeit ausblenden:
selector {
animation: fadeOut 2s ease-out 3s forwards;
}
@keyframes fadeOut {
from { opacity: 1;
}
to { opacity: 0;
}
}
Währungssymbol abstand
.elementor-price-table__currency {
margin-left: 10px;
}
Maquee Effect ohne Stottern
selector .swiper-wrapper{
transition-timing-function: linear !important;
}