Last active
August 29, 2015 14:22
-
-
Save briansw/e13612c02b52d15fdf7d to your computer and use it in GitHub Desktop.
Revisions
-
briansw revised this gist
Jun 11, 2015 . 1 changed file with 12 additions and 28 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,35 +1,19 @@ @mixin gridparent($columns) { @extend %#{$columns}; @include whitespacefix; @include nogutters; } @mixin griditem($columns, $font_size) { @extend %#{$columns}; @extend %#{$font_size}; @include inlineblock; } .posts { @include gridparent(c4); .post { @include griditem(c2, regular); } } -
briansw revised this gist
Jun 9, 2015 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,8 @@ .posts-wrapper { @include whitespacefix; @include c6; @include nogutters; .sidebar { @include inlineblock; @include c2; -
briansw revised this gist
Jun 9, 2015 . 1 changed file with 15 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,22 @@ .posts-wrapper { .sidebar { @include inlineblock; @include c2; @include regular; } .posts { @include whitespacefix; @include c4; @include nogutters; .post { @include inlineblock; @include c2; @include regular; } } } .posts-wrapper { -
briansw revised this gist
Jun 9, 2015 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,8 +12,11 @@ .posts-wrapper { @include parentgrid(c6); .sidebar { @include griditem(c2, regular); } .posts { @include parentgrid(c4); .post { @include griditem(c2, regular); } } } -
briansw revised this gist
Jun 9, 2015 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,8 +10,10 @@ } } .posts-wrapper { @include parentgrid(c6); .sidebar { @include griditem(c2, regular); } .posts { @include parentgrid(c4); } .post { @include griditem(c2, regular); } } -
briansw revised this gist
Jun 9, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ } .posts { @include parentgrid(c6); .post { @include griditem(c2, regular); } } -
briansw created this gist
Jun 9, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ .posts { @include whitespacefix; @include c6; @include nogutters; .post { @include inlineblock; @include c2; @include regular; } } .posts { @include parentgrid; .post { @include griditem(c2, regular); } }