Skip to content

Instantly share code, notes, and snippets.

@iamvanja
Created April 2, 2017 05:38
Show Gist options
  • Save iamvanja/4056b5dcb710837efa092d788a25854b to your computer and use it in GitHub Desktop.
Save iamvanja/4056b5dcb710837efa092d788a25854b to your computer and use it in GitHub Desktop.
Animated background
background: linear-gradient(180deg, #b60f61, #f2702d, #2db5a7, #be3df4, #008000, #f2c23a);
background-size: 8000% 8000%;
animation: animate-bg 10s linear infinite;
@keyframes animate-bg {
0% {background-position:50% 0%}
50% {background-position:50% 100%}
100% {background-position:50% 0%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment