CoolFace
Apppublic

Andyskim/acquisition-alchemist-interface

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css34 linesDownload Raw Back to root
1/* Custom styles that complement Tailwind */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/* Smooth scroll behavior */9html {10    scroll-behavior: smooth;11}12 13/* Custom button animation */14.btn-hover-animate {15    transition: transform 0.3s ease, box-shadow 0.3s ease;16}17 18.btn-hover-animate:hover {19    transform: translateY(-2px);20    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);21}22 23/* Custom shadow for cards */24.custom-shadow {25    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);26}27 28/* Gradient text */29.gradient-text {30    background-clip: text;31    -webkit-background-clip: text;32    color: transparent;33    background-image: linear-gradient(to right, #1E40AF, #9333EA);34}