Advertisement
Nazta

css rainbow tag

Jul 30th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /* Temp/Test*/
  2.  
  3. a[href="/rainbow"] {
  4. pointer-events: none;
  5. }
  6.  
  7. @-webkit-keyframes rainb {
  8. 0% {color:#F00;}
  9. 17% {color:#FF0;}
  10. 33% {color:#0F0;}
  11. 50% {color:#0FF;}
  12. 67% {color:#00F;}
  13. 84% {color:#F0F;}
  14. 100% {color:#F00;}
  15. }
  16.  
  17. @keyframes rainb {
  18. 0% {color:#F00;}
  19. 17% {color:#FF0;}
  20. 33% {color:#0F0;}
  21. 50% {color:#0FF;}
  22. 67% {color:#00F;}
  23. 84% {color:#F0F;}
  24. 100% {color:#F00;}
  25. }
  26.  
  27. .save-button > a:hover, a[href$="/rainbow"] {
  28. -webkit-animation: rainb 5s linear 0s infinite;
  29. animation: rainb 5s linear 0s infinite;
  30. }
  31.  
  32. .entry .buttons .save-button > a:hover {
  33. text-decoration: none;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement