linkding/bookmarks/styles/theme/animations.css

39 lines
451 B
CSS
Raw Normal View History

/* Animations */
@keyframes loading {
2024-09-23 09:04:36 +00:00
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes slide-down {
2024-09-23 09:04:36 +00:00
0% {
opacity: 0;
transform: translateY(calc(-1 * var(--unit-8)));
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fade-in {
2024-09-23 09:04:36 +00:00
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade-out {
2024-09-23 09:04:36 +00:00
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}