mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
25 lines
253 B
CSS
25 lines
253 B
CSS
|
@keyframes important1 {
|
||
|
from {
|
||
|
margin-top: 50px !important;
|
||
|
}
|
||
|
to {
|
||
|
margin-top: 100px !important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes foo {
|
||
|
from {
|
||
|
}
|
||
|
to {
|
||
|
}
|
||
|
15% {
|
||
|
}
|
||
|
0% {
|
||
|
}
|
||
|
100% {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes FOO {
|
||
|
}
|