Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.9)
  3. // Compass (v1.0.1)
  4. // ----
  5.  
  6.  
  7. $border-names: a, b, c;
  8. $border-widths: 1px, 1px, 2px;
  9. $border-styles: solid, dashed, solid;
  10. $border-colors: red, green, blue;
  11. $borders: zip($border-widths, $border-styles, $border-colors);
  12.  
  13. @function border-for($name) {
  14. @return nth($borders, index($border-names, $name))
  15. }
  16.  
  17. @each $name in $border-names {
  18. .border-#{$name} {
  19. border: border-for($name);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement