Sha256: e4b7cc7a020c8380370ba21a18442ce7ade998381181f979cd8f972d16128b76

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

/*!
 * bootstrap v3.3.5 (http://getbootstrap.com)
 * based on bootstrap's grid system
 */

@include make-col();
@include make-grid(xx);
// 480
	@include responsive(xs) {
		@include make-grid(xs);
	}
// 768
	@include responsive(sm) {
		@include make-grid(sm);
	}
// 992
	@include responsive(md) {
		@include make-grid(md);
	}
// 1440
	@include responsive(lg) {
		@include make-grid(lg);
	}

.container {
	@include make-container();
	// 992
		@include responsive(md) {
			max-width: ($screen-md - $grid-gutter * 2);
		}
	// 1440
		@include responsive(lg) {
			max-width: ($screen-lg - $grid-gutter * 2);
		}
}

.container-full {
	max-width: none;
}

.row {
	@include make-row();
}

.row-clear {
	// 480
		@media only screen and (min-width: $screen-xs) and (max-width: ($screen-sm - 1)) {
			> .col-xs-2:nth-child(6n+1),
			> .col-xs-3:nth-child(4n+1),
			> .col-xs-4:nth-child(3n+1),
			> .col-xs-6:nth-child(2n+1) {
				clear: left;
			}
		}
	// 768
		@media only screen and (min-width: $screen-sm) and (max-width: ($screen-md - 1)) {
			> .col-sm-2:nth-child(6n+1),
			> .col-sm-3:nth-child(4n+1),
			> .col-sm-4:nth-child(3n+1),
			> .col-sm-6:nth-child(2n+1) {
				clear: left;
			}
		}
	// 992
		@media only screen and (min-width: $screen-md) and (max-width: ($screen-lg - 1)) {
			> .col-md-2:nth-child(6n+1),
			> .col-md-3:nth-child(4n+1),
			> .col-md-4:nth-child(3n+1),
			> .col-md-6:nth-child(2n+1) {
				clear: left;
			}
		}
	// 1440
		@media only screen and (min-width: $screen-lg) {
			> .col-lg-2:nth-child(6n+1),
			> .col-lg-3:nth-child(4n+1),
			> .col-lg-4:nth-child(3n+1),
			> .col-lg-6:nth-child(2n+1) {
				clear: left;
			}
		}
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
material-sass-1.1.0 app/assets/stylesheets/material/base/_grid.scss
material-sass-1.0.0 app/assets/stylesheets/material/base/_grid.scss