site/_site/styles/animations.css
Ruben 5edbe5703f
Some checks failed
/ build (push) Failing after 35s
reconstruct site to use eleventy
2025-04-20 03:23:57 -05:00

17 lines
No EOL
475 B
CSS

/* various reusable animations */
@keyframes window-appear {
0% { opacity: 0; transform: scale(0.5, 0.5); }
100% { opacity: 1; transform: scale(1, 1); }
}
@keyframes rainbow {
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
}
@keyframes bg-gradient {
0% { background-position: 0% 27% }
50% { background-position: 100% 74% }
100% { background-position: 0% 27% }
}