Guest User

Untitled

a guest
Oct 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /**
  2. * Gradient Text Experiment
  3. */
  4.  
  5. html {
  6. background: #000;
  7. min-height: 100%;
  8. font-family: "Trade Gothic Next LT Pro";
  9. text-align: center;
  10. color: #fff;
  11. }
  12.  
  13. .gradient {
  14. background: linear-gradient(45deg, #f06, yellow);
  15. -webkit-background-clip: text;
  16. -webkit-text-fill-color: transparent;
  17. font-size: 72px;
  18. }
Add Comment
Please, Sign In to add comment