File: 06_multidemensional.css

package info (click to toggle)
compass-breakpoint-plugin 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 648 kB
  • sloc: javascript: 27; makefile: 2; sh: 1
file content (31 lines) | stat: -rw-r--r-- 934 bytes parent folder | download
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)";
  }
}