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
|
/*
* Multidimensional lists,
* assume each item is a feature value pair
* $multidimensional : height 500px portrait orientation;
*/
@media (height: 500px) and (orientation: portrait) {
.multidimensional {
content: "$multidimensional";
content: "@media (height: 500px) and (orientation: portrait)";
}
}
@media (height: 500px) and (orientation: portrait) {
.multidimensional {
content: "$multidimensional";
content: "@media (height: 500px) and (orientation: portrait)";
}
}
/* @include breakpoint-set('to ems', true); */
@media (height: 31.25em) and (orientation: portrait) {
.multidimensional-to-ems {
content: "$multidimensional";
content: "@media (height: 31.25em) and (orientation: portrait)";
}
}
@media (height: 31.25em) and (orientation: portrait) {
.multidimensional-to-ems {
content: "$multidimensional";
content: "@media (height: 31.25em) and (orientation: portrait)";
}
}
|