Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.9)
  3. // Compass (v1.0.1)
  4. // ----
  5.  
  6. $colors: #C3E279, #F7FEC8, #FFD069, #F27669, #DC9CBE, #C59AE0, #969DCC;
  7.  
  8. $stops: ();
  9. $current-stop: 0%;
  10. @each $c in $colors {
  11. $stops: append($stops, $c $current-stop, comma);
  12. $current-stop: $current-stop + (100% / length($colors));
  13. $stops: append($stops, $c $current-stop);
  14. }
  15.  
  16. body:before {
  17. content: '';
  18. height: 5px;
  19. display: block;
  20. background: linear-gradient(to right, $stops);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement