aboutsummaryrefslogtreecommitdiffstats
path: root/src/less/lib/animation.less
blob: 4165a7f7a6c96b0a7bb27370644eecec1e5edcb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// --------------------------------------------------------------
// Animations
// --------------------------------------------------------------

@keyframes plyr-progress {
    to {
        background-position: @plyr-progress-loading-size 0;
    }
}

@keyframes plyr-popup {
    from {
        transform: translateY(10px);
        opacity: 0.5;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}