Last active
September 6, 2022 04:06
-
-
Save jetsloth/bcdd7b0c89b299082a44debe21953fdf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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