Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.14)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. $alpha-color: red;
  7. $bravo-color: white;
  8. $charlie-color: blue;
  9.  
  10.  
  11. $colors:(
  12. am : $alpha-color,
  13. mer : $bravo-color,
  14. ca : $charlie-color
  15. );
  16.  
  17. @mixin bg($thing) {
  18. @each $key, $value in $thing {
  19. &--#{$key} {
  20. background-color: #{$value};
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement