mirror of
https://github.com/swc-project/swc.git
synced 2025-01-08 23:10:13 +03:00
40 lines
735 B
CSS
40 lines
735 B
CSS
@keyframes anim {
|
|
from {
|
|
top: -webkit-calc(10% + 10px);
|
|
top: -moz-calc(10% + 10px);
|
|
top: calc(10% + 10px);
|
|
-webkit-transform: rotate(10deg);
|
|
-moz-transform: rotate(10deg);
|
|
-o-transform: rotate(10deg);
|
|
transform: rotate(10deg);
|
|
}
|
|
50% {
|
|
top: 0;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
to {
|
|
top: -webkit-calc(10%);
|
|
top: -moz-calc(10%);
|
|
top: calc(10%);
|
|
-webkit-transform: rotate(0);
|
|
-moz-transform: rotate(0);
|
|
-o-transform: rotate(0);
|
|
transform: rotate(0);
|
|
}
|
|
}
|
|
@media screen {
|
|
@keyframes inside {}
|
|
}
|
|
@keyframes spaces {
|
|
from {
|
|
color: black;
|
|
}
|
|
to {
|
|
color: white;
|
|
}
|
|
}
|