1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
/*
* 'OR' mediaqueries.
* tests separated by commas
* $basic-or : max-width 350px, 500px 600px;
* $basic-or-media : 500px, tv 700px color;
*/
@media (max-width: 350px), (min-width: 500px) and (max-width: 600px) {
.basic-or {
content: "$basic-or";
content: "@media (max-width: 350px), (min-width: 500px) and (max-width: 600px)";
}
}
@media (max-width: 350px), (min-width: 500px) and (max-width: 600px) {
.basic-or {
content: "$basic-or";
content: "@media (max-width: 350px), (min-width: 500px) and (max-width: 600px)";
}
}
@media (min-width: 500px), tv and (min-width: 700px) and (color) {
.basic-or-media {
content: "$basic-or";
content: "@media (min-width: 500px), tv and (min-width: 700px) and (color)";
}
}
@media (max-width: 350px), (min-width: 500px) and (max-width: 600px) {
.basic-or-media {
content: "$basic-or";
content: "@media (min-width: 500px), tv and (min-width: 700px) and (color)";
}
}
@media (max-width: 350px), (min-width: 500px) and (max-width: 600px) {
.basic-or-media {
content: "$basic-or";
content: "@media (min-width: 500px), tv and (min-width: 700px) and (color)";
}
}
/* @include breakpoint-set('to ems', true); */
@media (max-width: 21.875em), (min-width: 31.25em) and (max-width: 37.5em) {
.basic-or-to-ems {
content: "$basic-or";
content: "@media (min-width: 31.25em), tv and (min-width: 43.75em) and (color)";
}
}
@media (max-width: 21.875em), (min-width: 31.25em) and (max-width: 37.5em) {
.basic-or-to-ems {
content: "$basic-or";
content: "@media (min-width: 31.25em), tv and (min-width: 43.75em) and (color)";
}
}
|