Created
January 3, 2024 03:40
-
-
Save geekelo/3daaa0a95410d243b8a44aba271f005d to your computer and use it in GitHub Desktop.
Animated Gradient
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
.gradient-background { | |
background: linear-gradient(67deg,#d2ffda,#94c894,#174217); | |
background-size: 180% 180%; | |
animation: gradient-animation 12s ease infinite; | |
} | |
@keyframes gradient-animation { | |
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