Skip to content

Instantly share code, notes, and snippets.

@jetsloth
Last active September 6, 2022 04:06
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 jetsloth/bcdd7b0c89b299082a44debe21953fdf to your computer and use it in GitHub Desktop.
Save jetsloth/bcdd7b0c89b299082a44debe21953fdf to your computer and use it in GitHub Desktop.
/*Add animated CSS gradient to your form background*/
.gradient_wrapper {
background: linear-gradient(45deg, #2455EB, #24DDEB, #59EB24);
background-size: 600% 600%;
animation: GradientBackground 9s ease-in infinite;
border:none!important;
}
@keyframes GradientBackground {
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