mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 07:34:20 +03:00
63 lines
1.0 KiB
CSS
63 lines
1.0 KiB
CSS
@supports (display: flex) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports not (display: flex) {
|
|
a {
|
|
color: #000;
|
|
}
|
|
}
|
|
@supports not (not (display: flex)) {
|
|
a {
|
|
color: #000;
|
|
}
|
|
}
|
|
@supports (display: flex) or (cursor: grab) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports (display: flex) and (cursor: grab) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports ((display: flex) and (cursor: grab)) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports ((display: flex)) and ((cursor: grab)) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports ((perspective: 1px) and (not (-webkit-overflow-scrolling: touch))) {
|
|
a {
|
|
color: #000;
|
|
}
|
|
}
|
|
@supports (cursor: grab) or (color: black) {
|
|
a {
|
|
color: black;
|
|
}
|
|
}
|
|
@supports (display: flex) {
|
|
@media screen and (min-width: 900px) {
|
|
article {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
@supports ((display: flex) or (display: -webkit-box) or (display: -webkit-flex) or (display: -moz-box) or (display: -ms-flexbox)) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
@supports (display: flex) or (display: -webkit-box) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|