Created
February 8, 2016 10:16
-
-
Save ssbb/f17bf93a7ff5d1e873c4 to your computer and use it in GitHub Desktop.
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
$width: 260px; | |
@for $i from 1 through 50 { | |
$min-width: ($width * $i) + 10px; | |
$max-width: ($width * ($i + 1)) + 10px; | |
$min-width: if(($min-width + 260px) >= $sidebar-breakpoint, $min-width + 260px, $min-width); | |
$max-width: if(($max-width + 260px) >= $sidebar-breakpoint, $max-width + 260px, $max-width); | |
$item-width: 100% / $i; | |
@media only screen and (min-width: $min-width) and (max-width: $max-width) { | |
.video { | |
width: $item-width; | |
&:nth-of-type(#{$i}n + 1) { | |
clear: both; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment