1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-29 23:25:25 +00:00
notes/node_modules/doiuse/test/cases/unimplemented/keyframes.css
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

19 lines
267 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 {}
}