summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/media-rules.css
blob: 5eea7c380a26ab1f40e2a4e22d6451fa59b87e2f (plain)
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
@media not all {
  div {
    color: blue;
  }
}

@media all {
  div {
    color: red;
  }
}

div {
  width: 20px;
  height: 20px;
  background-color: ghostwhite;
}

@media (max-width: 400px) {
  div {
    color: green;
  }
}

@media (min-height: 300px) and (max-height: 320px) {
  div {
    color: orange;
  }
}