Created
November 8, 2021 19:51
-
-
Save gmcusaro/324da4c5c94e31438e8078c537fc4899 to your computer and use it in GitHub Desktop.
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
main { | |
background: linear-gradient(to bottom right, #4affde 0%, #5b9dff 40%, #d06bff 60%, #ff34d3 100%); | |
background-size: 200% 200%; | |
animation: movingGradient 5s linear infinite alternate; | |
} | |
@keyframes movingGradient { | |
from { background-position: 0 0; } | |
to { background-position: 100% 100%; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment