Created
June 5, 2017 12:35
-
-
Save Nikolasgrizli/8ad0fc5e2fc8ba1a722e4b811dc030bf to your computer and use it in GitHub Desktop.
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
background: linear-gradient(49deg, #070707, #5a615f, #4fddb4, #44f0be); | |
background-size: 800% 800%; | |
-webkit-animation: AnimationName 16s ease infinite; | |
-moz-animation: AnimationName 16s ease infinite; | |
-o-animation: AnimationName 16s ease infinite; | |
animation: AnimationName 16s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:10% 0%} | |
50%{background-position:91% 100%} | |
100%{background-position:10% 0%} | |
} | |
@-moz-keyframes AnimationName { | |
0%{background-position:10% 0%} | |
50%{background-position:91% 100%} | |
100%{background-position:10% 0%} | |
} | |
@-o-keyframes AnimationName { | |
0%{background-position:10% 0%} | |
50%{background-position:91% 100%} | |
100%{background-position:10% 0%} | |
} | |
@keyframes AnimationName { | |
0%{background-position:10% 0%} | |
50%{background-position:91% 100%} | |
100%{background-position:10% 0%} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment