Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. background: linear-gradient(137deg, #ad9f9a, #a28491, #9c909e, #b2afba, #8d9ca0, #9c9196, #c0aea7, #9bc5bd, #c0aea7);
  2. background-size: 1800% 1800%;
  3. -webkit-animation: AnimationName 45s ease infinite;
  4. -moz-animation: AnimationName 45s ease infinite;
  5. -o-animation: AnimationName 45s ease infinite;
  6. animation: AnimationName 45s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8.     0%{background-position:0% 77%}
  9.     50%{background-position:100% 24%}
  10.     100%{background-position:0% 77%}
  11. }
  12. @-moz-keyframes AnimationName {
  13.     0%{background-position:0% 77%}
  14.     50%{background-position:100% 24%}
  15.     100%{background-position:0% 77%}
  16. }
  17. @-o-keyframes AnimationName {
  18.     0%{background-position:0% 77%}
  19.     50%{background-position:100% 24%}
  20.     100%{background-position:0% 77%}
  21. }
  22. @keyframes AnimationName {
  23.     0%{background-position:0% 77%}
  24.     50%{background-position:100% 24%}
  25.     100%{background-position:0% 77%}
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement