purefront-wizardry / style.css
Muso98's picture
sen faqat frontend yaratolasanmi?
23e9d56 verified
raw
history blame contribute delete
507 Bytes
/* Custom styles that enhance Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom animation for cards */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.float-card:hover {
animation: float 3s ease-in-out infinite;
}