CoolFace
Apppublic

Simba158/imageflow-optimizer

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css32 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');2 3body {4    font-family: 'Inter', sans-serif;5}6 7/* Custom scrollbar */8::-webkit-scrollbar {9    width: 8px;10}11 12::-webkit-scrollbar-track {13    background: #f1f1f1;14}15 16::-webkit-scrollbar-thumb {17    background: #3B82F6;18    border-radius: 4px;19}20::-webkit-scrollbar-thumb:hover {21    background: #2563EB;22}23 24.hovered-element {25    transition: all 0.3s ease;26}27 28.hovered-element:hover {29    background-color: rgba(255, 255, 255, 0.3);30    transform: translateY(-2px);31}32