Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @mixin gridparent($columns) {
  2. @extend %#{$columns};
  3. @include whitespacefix;
  4. @include nogutters;
  5. }
  6.  
  7. @mixin griditem($columns, $font_size) {
  8. @extend %#{$columns};
  9. @extend %#{$font_size};
  10. @include inlineblock;
  11. }
  12.  
  13. .posts {
  14. @include gridparent(c4);
  15.  
  16. .post {
  17. @include griditem(c2, regular);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement