Advertisement
Sclafus

coso

Feb 23rd, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. .text-line {
  2. stroke-dasharray: 1200;
  3. stroke-dashoffset: 1200;
  4. animation: dash 3.5s linear forwards, filling 3.5s ease-in forwards;
  5. font-size: 12rem;
  6. }
  7.  
  8. .text-line text {
  9. font-family: Teko, Helvetica, Arial, sans-serif;
  10. font-weight: 600;
  11. }
  12.  
  13. .solid {
  14. font-family: Teko, Helvetica, Arial, sans-serif;
  15. font-weight: 600;
  16. color: #fff;
  17. font-size: 14rem;
  18. text-align: middle;
  19. }
  20.  
  21. @keyframes dash {
  22. to {
  23. stroke-dashoffset: 0;
  24. }
  25. }
  26.  
  27. @keyframes filling {
  28. 0%, 90% { fill: #ffffff; fill-opacity: 0; }
  29. 100% { fill: #ffffff; fill-opacity: 0; }
  30. }
  31.  
  32. @keyframes filling white-fill {
  33. 0%, 90% { fill: #ffffff; fill-opacity: 0; }
  34. 100% { fill: #ffffff; fill-opacity: 1; }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement