Advertisement
izuemis

blinking text

Mar 31st, 2023
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <style>
  2. @font-face {
  3. font-family: Pixelated MS Sans Serif;
  4. src:url(ms_sans_serif.woff) format("woff");
  5. src:url(ms_sans_serif.woff2) format("woff2");
  6. }
  7.  
  8. #blinking {
  9. font-family: Pixelated MS Sans Serif;
  10. font-size: 1.75em;
  11. font-weight: bold;
  12. text-align: center;
  13. animation: rainbow 1s infinite;
  14. }
  15.  
  16. @keyframes rainbow {
  17. 0% {
  18. color: #577481;
  19. }
  20.  
  21. 25% {
  22. color: #577481;
  23. }
  24.  
  25. 50% {
  26. color: #a9c2d4;
  27. }
  28.  
  29. 75% {
  30. color: #b4cdd6;
  31. }
  32.  
  33. 100% {
  34. color: #d0d2d3;
  35. }
  36. }
  37.  
  38. </style>
  39. <div id="blinking">USERNAME</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement