Guest User

Untitled

a guest
Mar 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. background: linear-gradient(53deg, #47c8a7, #c86547);
  2. background-size: 400% 400%;
  3. -webkit-animation: AnimationName 12s ease infinite;
  4. -moz-animation: AnimationName 12s ease infinite;
  5. -o-animation: AnimationName 12s ease infinite;
  6. animation: AnimationName 12s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8.     0%{background-position:49% 0%}
  9.     50%{background-position:52% 100%}
  10.     100%{background-position:49% 0%}
  11. }
  12. @-moz-keyframes AnimationName {
  13.     0%{background-position:49% 0%}
  14.     50%{background-position:52% 100%}
  15.     100%{background-position:49% 0%}
  16. }
  17. @-o-keyframes AnimationName {
  18.     0%{background-position:49% 0%}
  19.     50%{background-position:52% 100%}
  20.     100%{background-position:49% 0%}
  21. }
  22. @keyframes AnimationName {
  23.     0%{background-position:49% 0%}
  24.     50%{background-position:52% 100%}
  25.     100%{background-position:49% 0%}
  26. }
Add Comment
Please, Sign In to add comment