scratch-www/src/components/masonrygrid/masonrygrid.scss

39 lines
691 B
SCSS
Raw Normal View History

2016-11-07 15:07:07 -05:00
@import "../../frameless";
.masonry {
column-gap: $gutter;
column-width: $cols4;
padding-bottom: 50px;
2016-11-14 10:30:20 -05:00
-webkit-perspective: 1;
2016-11-07 15:07:07 -05:00
}
// column-count required for Firefox, IE and Edge
2016-11-07 15:07:07 -05:00
//4 columns
@media only screen and (max-width: $mobile - 1) {
.masonry {
column-count: 1;
2016-11-07 15:07:07 -05:00
}
}
//6 columns
@media only screen and (min-width: $mobile) and (max-width: $tablet - 1) {
.masonry {
column-count: 1;
2016-11-07 15:07:07 -05:00
}
}
//8 columns
@media only screen and (min-width: $tablet) and (max-width: $desktop - 1) {
.masonry {
column-count: 2;
2016-11-07 15:07:07 -05:00
}
}
// 12 columns
@media only screen and (min-width: $desktop) {
.masonry {
column-count: 3;
2016-11-07 15:07:07 -05:00
}
}