Advertisement
Kevick

Untitled

May 26th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1.  
  2. .rainbow {
  3.  
  4. /* Font options */
  5. font-family: 'Oswald', sans-serif;
  6. text-shadow: 2px 2px 4px #000000;
  7. font-size: 1.8rem;
  8.  
  9. /* Chrome, Safari, Opera */
  10. -webkit-animation: rainbow 5s infinite;
  11.  
  12. /* Internet Explorer */
  13. -ms-animation: rainbow 5s infinite;
  14.  
  15. /* Standar Syntax */
  16. animation: rainbow 5s infinite;
  17. }
  18.  
  19. /* Chrome, Safari, Opera */
  20. @-webkit-keyframes rainbow{
  21. 0%{color: orange;}
  22. 10%{color: purple;}
  23. 20%{color: red;}
  24. 30%{color: CadetBlue;}
  25. 40%{color: yellow;}
  26. 50%{color: coral;}
  27. 60%{color: green;}
  28. 70%{color: cyan;}
  29. 80%{color: DeepPink;}
  30. 90%{color: DodgerBlue;}
  31. 100%{color: orange;}
  32. }
  33.  
  34. /* Internet Explorer */
  35. @-ms-keyframes rainbow{
  36. 0%{color: orange;}
  37. 10%{color: purple;}
  38. 20%{color: red;}
  39. 30%{color: CadetBlue;}
  40. 40%{color: yellow;}
  41. 50%{color: coral;}
  42. 60%{color: green;}
  43. 70%{color: cyan;}
  44. 80%{color: DeepPink;}
  45. 90%{color: DodgerBlue;}
  46. 100%{color: orange;}
  47. }
  48.  
  49. /* Standar Syntax */
  50. @keyframes rainbow{
  51. 0%{color: orange;}
  52. 10%{color: purple;}
  53. 20%{color: red;}
  54. 30%{color: CadetBlue;}
  55. 40%{color: yellow;}
  56. 50%{color: coral;}
  57. 60%{color: green;}
  58. 70%{color: cyan;}
  59. 80%{color: DeepPink;}
  60. 90%{color: DodgerBlue;}
  61. 100%{color: orange;}
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement