CoolFace
Apppublic

bro1908/seismicwaves-explorer

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css31 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    scroll-behavior: smooth;6}7 8.seismic-wave {9    background-image: url('https://enzostvs-cached-generation.hf.space/generate/abstract-seismic-waves-blue?format=landscape-16_9');10    background-size: cover;11    background-position: center;12}13 14.feature-card:hover {15    transform: translateY(-5px);16    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);17}18 19.testimonial-card {20    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);21}22 23.animate-float {24    animation: float 6s ease-in-out infinite;25}26 27@keyframes float {28    0% { transform: translateY(0px); }29    50% { transform: translateY(-20px); }30    100% { transform: translateY(0px); }31}