knowledge-navigator / style.css
Stern8's picture
clone the homepage of this page https://learn-anything.xyz/
0c082f7 verified
raw
history blame contribute delete
489 Bytes
/* Custom styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
#vanta-bg {
pointer-events: none;
}
.custom-shadow {
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Smooth scroll */
html {
scroll-behavior: smooth;
}
/* Animation for cards */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
}