CoolFace
Apppublic

Xesandy/woopos-modular-magic-cart

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css37 linesDownload Raw Back to root
1/* Base styles */2body {3    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;4}5 6/* Module card animations */7@keyframes pulse {8    0%, 100% {9        opacity: 1;10    }11    50% {12        opacity: 0.5;13    }14}15 16.pulse {17    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;18}19 20/* Custom scrollbar */21::-webkit-scrollbar {22    width: 8px;23    height: 8px;24}25 26::-webkit-scrollbar-track {27    background: #f1f1f1;28}29 30::-webkit-scrollbar-thumb {31    background: #c1c1c1;32    border-radius: 4px;33}34 35::-webkit-scrollbar-thumb:hover {36    background: #a1a1a1;37}