CoolFace
Apppublic

bee367/ecogamify-recycledash

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css38 linesDownload Raw Back to root
1/* Custom CSS for TrashToTreasure */2@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');3 4body {5    font-family: 'Inter', sans-serif;6}7 8/* Custom animations */9@keyframes float {10    0%, 100% {11        transform: translateY(0);12    }13    50% {14        transform: translateY(-10px);15    }16}17 18.float-animation {19    animation: float 3s ease-in-out infinite;20}21 22/* Custom scrollbar */23::-webkit-scrollbar {24    width: 8px;25}26 27::-webkit-scrollbar-track {28    background: #f1f1f1;29}30 31::-webkit-scrollbar-thumb {32    background: #22c55e;33    border-radius: 4px;34}35 36::-webkit-scrollbar-thumb:hover {37    background: #16a34a;38}