mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
77 lines
1.0 KiB
CSS
77 lines
1.0 KiB
CSS
.foo { display: grid; }
|
|
|
|
.foo {
|
|
display: grid;
|
|
|
|
@media (orientation: landscape) {
|
|
grid-auto-flow: column;
|
|
}
|
|
}
|
|
|
|
.foo {
|
|
display: grid;
|
|
|
|
@media (orientation: landscape) {
|
|
grid-auto-flow: column;
|
|
|
|
@media (min-inline-size > 1024px) {
|
|
max-inline-size: 1024px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (orientation: landscape) {
|
|
& {
|
|
grid-auto-flow: column;
|
|
}
|
|
}
|
|
|
|
.foo {
|
|
color: red;
|
|
|
|
@media (min-width: 480px) {
|
|
& h1, & h2 { color: blue; }
|
|
}
|
|
}
|
|
|
|
.class {
|
|
@supports not (display: grid) {
|
|
float: right;
|
|
|
|
& .class { color: red }
|
|
}
|
|
}
|
|
|
|
.class {
|
|
color: blue;
|
|
|
|
@supports not (display: grid) {
|
|
float: right;
|
|
|
|
& .class { color: red }
|
|
}
|
|
}
|
|
|
|
.class {
|
|
color: blue;
|
|
|
|
&.foo {
|
|
color: green;
|
|
}
|
|
|
|
@supports not (display: grid) {
|
|
float: right;
|
|
|
|
& .class { color: red }
|
|
}
|
|
}
|
|
|
|
/* Legacy stuff, but allowed by spec */
|
|
.class {
|
|
color: red;
|
|
|
|
@document url("https://www.example.com/") {
|
|
color: green;
|
|
}
|
|
}
|