Guest User

rainbow+shadow

a guest
May 22nd, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.29 KB | None | 0 0
  1. #mainTitleText {
  2.     width: 100%;
  3.     color: #1EB656;
  4.     font-size: 130px;
  5.     text-align: center;
  6.     text-shadow: 0 1px 0 #ff0000, 0 2px 0 #ff3300, 0 3px 0 #ffff00, 0 4px 0 #726767, 0 5px 0 #009900 !important;
  7.     -webkit-animation: rainbow 4s linear infinite;
  8.     -moz-animation: rainbow 4s linear infinite;
  9.     animation: rainbow 4s linear infinite;
  10. }
  11. @keyframes rainbow {
  12.     0% {
  13.         color: red;
  14.     }
  15.     14% {
  16.         color: orange;
  17.     }
  18.     28% {
  19.         color: yellow;
  20.     }
  21.     42% {
  22.         color: green;
  23.     }
  24.     56% {
  25.         color: blue;
  26.     }
  27.     70% {
  28.         color: #4B0082;
  29.     }
  30.     84% {
  31.         color: purple;
  32.     }
  33. }
  34. @-moz-keyframes rainbow {
  35.     0% {
  36.         color: red;
  37.     }
  38.     14% {
  39.         color: orange;
  40.     }
  41.     28% {
  42.         color: yellow;
  43.     }
  44.     42% {
  45.         color: green;
  46.     }
  47.     56% {
  48.         color: blue;
  49.     }
  50.     70% {
  51.         color: #4B0082;
  52.     }
  53.     84% {
  54.         color: purple;
  55.     }
  56. }
  57. @-webkit-keyframes rainbow {
  58.     0% {
  59.         color: red;
  60.     }
  61.     14% {
  62.         color: orange;
  63.     }
  64.     28% {
  65.         color: yellow;
  66.     }
  67.     42% {
  68.         color: green;
  69.     }
  70.     56% {
  71.         color: blue;
  72.     }
  73.     70% {
  74.         color: #4B0082;
  75.     }
  76.     84% {
  77.         color: purple;
  78.     }
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment