This repository has been archived on 2026-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
plyr/demo/src/less/lib/animation.less
T
2016-06-07 12:34:36 +01:00

9 lines
244 B
Plaintext

// ==========================================================================
// Animations
// ==========================================================================
// Fade
@keyframes fade-in {
0% { opacity: 0 }
100% { opacity: 1 }
}