Last active
August 29, 2015 14:15
-
-
Save americos/b3f56c814de42b5a2388 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
//Width | |
@each $index, $width in (1: 15%, 2: 30%, 4: 45%) { | |
.collage-width-#{$index} { | |
width: $width; | |
overflow: hidden; | |
} | |
} | |
// Height | |
@each $index, $height in (1: 90px, 2: 190px) { | |
.collage-height-#{$index} { | |
height: $height; | |
overflow: hidden; | |
} | |
} |
This file contains 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
.collage-width-1 { | |
width: 15%; | |
overflow: hidden; | |
} | |
.collage-width-2 { | |
width: 30%; | |
overflow: hidden; | |
} | |
.collage-width-4 { | |
width: 45%; | |
overflow: hidden; | |
} | |
.collage-height-1 { | |
height: 90px; | |
overflow: hidden; | |
} | |
.collage-height-2 { | |
height: 190px; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment