Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. #about-intro {background: linear-gradient(45deg, rgb(214, 255, 48), rgb(14, 146, 170), rgb(0, 190, 73), rgb(134, 187, 24)) 0% 0% / 400% 400%; animation: CustomAnimation 28s ease infinite;}
  2.  
  3. -webkit-animation: hero-bg 28s ease infinite;
  4. -moz-animation: hero-bg 28s ease infinite;
  5. -o-animation: hero-bg 28s ease infinite;
  6. animation: hero-bg 28s ease infinite;
  7.  
  8. @-webkit-keyframes hero-bg {
  9. 0%{background-position:92% 0%}
  10. 50%{background-position:9% 100%}
  11. 100%{background-position:92% 0%}
  12. }
  13. @-moz-keyframes hero-bg {
  14. 0%{background-position:92% 0%}
  15. 50%{background-position:9% 100%}
  16. 100%{background-position:92% 0%}
  17. }
  18. @-o-keyframes hero-bg {
  19. 0%{background-position:92% 0%}
  20. 50%{background-position:9% 100%}
  21. 100%{background-position:92% 0%}
  22. }
  23. @keyframes hero-bg {
  24. 0%{background-position:92% 0%}
  25. 50%{background-position:9% 100%}
  26. 100%{background-position:92% 0%}
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement