Skip to content

Instantly share code, notes, and snippets.

@RFV
Created February 18, 2017 14:13
Show Gist options
  • Save RFV/7f70097d9b0dc7eb4d3661c05150f007 to your computer and use it in GitHub Desktop.
Save RFV/7f70097d9b0dc7eb4d3661c05150f007 to your computer and use it in GitHub Desktop.
background gradient for ICOFund
background: linear-gradient(254deg, #4747fb, #000000, #fb0202, #02fb02);
background-size: 800% 800%;
-webkit-animation: AnimationName 16s ease infinite;
-moz-animation: AnimationName 16s ease infinite;
animation: AnimationName 16s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:0% 9%}
50%{background-position:100% 92%}
100%{background-position:0% 9%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 9%}
50%{background-position:100% 92%}
100%{background-position:0% 9%}
}
@keyframes AnimationName {
0%{background-position:0% 9%}
50%{background-position:100% 92%}
100%{background-position:0% 9%}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment