chookchat/client-web/gradient.css

22 lines
413 B
CSS
Raw Permalink Normal View History

2024-11-26 08:32:22 +11:00
/* Credit to Manuel Pinto on Codepen for the code!
https://codepen.io/P1N2O/pen/pyBNzX */
2024-11-23 18:10:56 +11:00
body {
2024-11-26 08:32:22 +11:00
background: linear-gradient(-33deg, #721c7a, #612bd4, #3aa5c5, #30cf7f);
background-size: 400% 400%;
animation: gradient 120s ease infinite;
height: 100vh;
2024-11-23 18:10:56 +11:00
}
@keyframes gradient {
2024-11-26 08:32:22 +11:00
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
2024-11-23 18:10:56 +11:00
}