mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
22 lines
358 B
CSS
22 lines
358 B
CSS
body {
|
|
color: red;
|
|
}
|
|
:hover {
|
|
color: red;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-animation: foo 1s ease-out;
|
|
-moz-animation: foo 1s ease-out;
|
|
-o-animation: foo 1s ease-out;
|
|
animation: foo 1s ease-out;
|
|
}
|
|
div a {
|
|
display: none;
|
|
}
|
|
[data-test] > div {
|
|
color: red;
|
|
}
|