Skip to content

Instantly share code, notes, and snippets.

@godfreymakori
Last active January 16, 2021 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save godfreymakori/d486e6c444809fdf9edf9d5d70801f39 to your computer and use it in GitHub Desktop.
Save godfreymakori/d486e6c444809fdf9edf9d5d70801f39 to your computer and use it in GitHub Desktop.
Animated Gradient Background CSS only
body {
background: linear-gradient(-45deg, #8D298A, #F26C25, #F26C25, #8D298A);
background-size: 400% 400%;
-webkit-animation: gradient 15s ease infinite;
animation: gradient 15s ease infinite;
}
@-webkit-keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment