Created
March 20, 2015 04:26
-
-
Save zellwk/589c84a84954c01e9347 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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 characters
| <div class="gallery"> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| </div> |
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 characters
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.1) | |
| // Susy (v2.1.3) | |
| // ---- | |
| @import "susy"; | |
| $layout-map: (gutters:0); | |
| @include with-layout($layout-map) { | |
| .gallery__item { | |
| @include gallery(3 of 12); | |
| } | |
| } | |
| // Demo | |
| .gallery__item { | |
| height: 90px; | |
| background: red; | |
| &:nth-child(2n) { | |
| background: blue; | |
| } | |
| } |
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 characters
| .gallery__item { | |
| width: 25%; | |
| float: left; | |
| } | |
| .gallery__item:nth-child(4n + 1) { | |
| margin-left: 0; | |
| margin-right: -100%; | |
| clear: both; | |
| margin-left: 0; | |
| } | |
| .gallery__item:nth-child(4n + 2) { | |
| margin-left: 25%; | |
| margin-right: -100%; | |
| clear: none; | |
| } | |
| .gallery__item:nth-child(4n + 3) { | |
| margin-left: 50%; | |
| margin-right: -100%; | |
| clear: none; | |
| } | |
| .gallery__item:nth-child(4n + 4) { | |
| margin-left: 75%; | |
| margin-right: -100%; | |
| clear: none; | |
| } | |
| .gallery__item { | |
| height: 90px; | |
| background: red; | |
| } | |
| .gallery__item:nth-child(2n) { | |
| background: blue; | |
| } |
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 characters
| <div class="gallery"> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| <div class="gallery__item"></div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment