Created
February 18, 2017 14:13
-
-
Save RFV/7f70097d9b0dc7eb4d3661c05150f007 to your computer and use it in GitHub Desktop.
background gradient for ICOFund
This file contains 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
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