/**
 * @file
 * Implements multiple ui related animations.
 */

@keyframes show-up {
    0% {
        transform: translateY(30%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animation-show-up {
    animation: show-up 300ms cubic-bezier(0, 0, 0, 1);
}

@keyframes animation-button-busy {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -28px;
    }
}
