Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. body{
  2. background-color: black;
  3. color: white;
  4. }
  5.  
  6. .grad1 {
  7. background: red;
  8. background: -webkit-linear-gradient(left, orange , yellow, green, cyan, blue, violet);
  9. background: -o-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
  10. background: -moz-linear-gradient(right, orange, yellow, green, cyan, blue, violet);
  11. background: linear-gradient(to right, orange , yellow, green, cyan, blue, violet);
  12. -webkit-background-clip: text;
  13. -webkit-text-fill-color: transparent;
  14. font-size: 16px;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement