Skip to content

Instantly share code, notes, and snippets.

@gmcusaro
Created November 8, 2021 19:51
Show Gist options
  • Save gmcusaro/324da4c5c94e31438e8078c537fc4899 to your computer and use it in GitHub Desktop.
Save gmcusaro/324da4c5c94e31438e8078c537fc4899 to your computer and use it in GitHub Desktop.
Gradient
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