mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 08:17:34 -04:00
19 lines
267 B
CSS
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 {}
|
|
}
|