Advertisement
Aly

Voltra: Rainbow Text Code Animated

Aly
May 28th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /* - - Animated Rainbow Text Code by Aly - - */
  2.  
  3. #voltie > div:nth-child(1) > section.voltie_info > h2 > span.voltie_username {
  4. color: #FF8C00;
  5. animation: colorChange 5s infinite ease-in-out;
  6. -o-animation: colorChange 5s infinite ease-in-out;
  7. -ms-animation: colorChange 5s infinite ease-in-out;
  8. -moz-animation: colorChange 5s infinite ease-in-out;
  9. -webkit-animation: colorChange 5s infinite ease-in-out;
  10. }
  11.  
  12. @keyframes colorChange {
  13. 0% {color: #FF8C00;}
  14. 20% {color: #25D306;}
  15. 40% {color: #3DCEFF;}
  16. 60% {color: #FF2DC0;}
  17. 80% {color: #C100ED;}
  18. 100% {color: #FF8C00;}
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement