CoolFace
Apppublic

Cufudud/replitail-explorer

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css52 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;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: #888;18    border-radius: 4px;19}20 21::-webkit-scrollbar-thumb:hover {22    background: #555;23}24/* Animation classes */25.fade-in {26    animation: fadeIn 0.5s ease-in;27}28 29@keyframes fadeIn {30    from { opacity: 0; }31    to { opacity: 1; }32}33 34/* Discord specific styles */35::-webkit-scrollbar {36    width: 6px;37    height: 6px;38}39 40::-webkit-scrollbar-track {41    background: #2e3338;42}43 44::-webkit-scrollbar-thumb {45    background: #202225;46    border-radius: 3px;47}48 49::-webkit-scrollbar-thumb:hover {50    background: #18191c;51}52