CoolFace
Apppublic

drrish/tooth-tales

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css27 linesDownload Raw Back to root
1/* Custom styles */2body {3    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;4    min-height: 100vh;5    display: flex;6    flex-direction: column;7}8 9main {10    flex: 1;11}12 13/* Smooth scrolling */14html {15    scroll-behavior: smooth;16}17 18/* Custom animations */19@keyframes float {20    0% { transform: translateY(0px); }21    50% { transform: translateY(-15px); }22    100% { transform: translateY(0px); }23}24 25.float-animation {26    animation: float 6s ease-in-out infinite;27}