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(169deg, #19e1ad, #f9f9f9); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 30s ease infinite; | |
-moz-animation: AnimationName 30s ease infinite; | |
-o-animation: AnimationName 30s ease infinite; | |
animation: AnimationName 30s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:0% 49%} | |
50%{background-position:100% 52%} | |
100%{background-position:0% 49%} |