mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
26 lines
313 B
CSS
26 lines
313 B
CSS
@keyframes anim {
|
|
from {
|
|
top: calc(10% + 10px);
|
|
transform: rotate(10deg);
|
|
}
|
|
50% {
|
|
top: 0;
|
|
display: flex;
|
|
}
|
|
to {
|
|
top: calc(10%);
|
|
transform: rotate(0);
|
|
}
|
|
}
|
|
@media screen {
|
|
@keyframes inside {}
|
|
}
|
|
@keyframes spaces {
|
|
from {
|
|
color: black;
|
|
}
|
|
to {
|
|
color: white;
|
|
}
|
|
}
|