cool-cool-website / style.css
julien-c's picture
julien-c HF Staff
change text to "cool cool"
739eaca verified
raw
history blame contribute delete
332 Bytes
/* Shared styles across all pages */
body {
font-family: 'Inter', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
@keyframes coolPulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.cool-pulse {
animation: coolPulse 2s infinite;
}