Sha256: 5dfccb8b0fa4a60b1ed9195bca95ad484d53bdd1237f85bf6a5daff874be9564

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

@mixin mobile {
	@media only screen and (min-width : 320px) and (max-width : 480px) {
		@content;
	}
}

@mixin mobile-portrait {
	@media only screen and (max-width : 320px) {
		@content;
	}
}

@mixin mobile-landscape {
	@media only screen and (max-width : 480px) {
		@content;
	}
}

@mixin tablet {
	@media only screen and (min-width : 768px) and (max-width : 1024px) {
		@content;
	}
}

@mixin max-tablet {
	@media only screen and (max-width : 1024px) {
		@content;
	}
}

@mixin tablet-portrait {
	@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
		@content;
	}
}

@mixin tablet-landscape {
	@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
		@content;
	}
}

@mixin desktop {
	@media only screen and (min-width : 1025px) {
		@content;
	}
}

@mixin wide-screen {
	@media only screen and (min-width : 1824px) {
		@content;
	}
}

@mixin retina {
	@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
		@content;
	}
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stitch-0.1.7.beta.3 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.7.beta.2 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.7.beta.1 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.6 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.5 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.4 stylesheets/stitch/patterns/responsive/_media.scss
stitch-0.1.4.beta.2 stylesheets/stitch/patterns/responsive/_media.scss