breakpoint-sass
Version:
Really Simple Media Queries with Sass
29 lines (28 loc) • 530 B
CSS
/*
* One-sided features (ie. monochrome)
* $not : not screen;
*/
@media not screen {
.not {
content: "$not";
content: "@media not screen";
}
}
@media not tv and (min-width: 500px) {
.not {
content: "$not-plus-default";
content: "@media not tv and (min-width: 500px)";
}
}
@media not screen {
.not {
content: "$not";
content: "@media not screen";
}
}
@media not tv and (min-width: 500px) {
.not {
content: "$not-plus-default";
content: "@media not tv and (min-width: 500px)";
}
}