KeeganT

TR Rainbow Text

Jan 15th, 2020
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.12 KB | None | 0 0
  1. @import url['https://fonts.googleapis.com/css?family=Pacifico'];
  2. @import url['https://fonts.googleapis.com/css?family=Anton'];
  3.  
  4.  
  5. table.inputPanel tbody tbody tr:first-of-type {
  6.  
  7. /* Font options */
  8. 'Pacifico', cursive;
  9. text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  10. 40px;
  11.  
  12. /* Chrome, Safari, Opera */
  13. -webkit-animation: rainbow 20s infinite;
  14.  
  15. /* Internet Explorer */
  16. -ms-animation: rainbow 20s infinite;
  17.  
  18. /* Standar Syntax */
  19. animation: rainbow 20s infinite;
  20. }
  21.  
  22. /* Chrome, Safari, Opera */
  23. @-webkit-keyframes rainbow{
  24. 0%{color: orange;}
  25. 10%{color: purple;}
  26. 20%{color: red;}
  27. 30%{color: CadetBlue;}
  28. 40%{color: yellow;}
  29. 50%{color: coral;}
  30. 60%{color: green;}
  31. 70%{color: cyan;}
  32. 80%{color: DeepPink;}
  33. 90%{color: DodgerBlue;}
  34. 100%{color: orange;}
  35. }
  36.  
  37. /* Internet Explorer */
  38. @-ms-keyframes rainbow{
  39. 0%{color: orange;}
  40. 10%{color: purple;}
  41. 20%{color: red;}
  42. 40%{color: yellow;}
  43. 60%{color: green;}
  44. 100%{color: orange;}
  45. }
  46.  
  47. /* Standar Syntax */
  48. @keyframes rainbow{
  49. 0%{color: orange;}
  50. 10%{color: purple;}
  51. 20%{color: red;}
  52. 40%{color: yellow;}
  53. 60%{color: green;}
  54. 100%{color: orange;}
  55. }
Advertisement
Add Comment
Please, Sign In to add comment