mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
a5f7b4b8aa
Co-authored-by: alexander.akait <sheo13666q@gmail.com>
81 lines
1.3 KiB
CSS
81 lines
1.3 KiB
CSS
@media (min-width: 1) {
|
|
.a {
|
|
order: 1;
|
|
}
|
|
}
|
|
@media (min-width: 2) {
|
|
.a {
|
|
order: 2;
|
|
}
|
|
}
|
|
@media ((min-width: 3) or (min-width: 4)) and (width > 1024px) {
|
|
.a {
|
|
order: 3;
|
|
}
|
|
}
|
|
@media ((color) or (hover)) and (width > 1024px) {
|
|
.a {
|
|
color: green;
|
|
}
|
|
}
|
|
@media ((not (color)) or (hover)) and (width > 1024px) {
|
|
body {
|
|
background: red;
|
|
}
|
|
}
|
|
@media (((color) and (min-width: 20px)) or (hover)) and (min-height: 20px) {
|
|
.a {
|
|
color: green;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: orange;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: red;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: yellow;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media only screen and (width >= 570px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media not (width >= 570px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media only screen and (not (width >= 570px)) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media only screen and ((not (width >= 570px))) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
@media (width >= 570px) and (width < 1000px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|