aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/animation.scss
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-02-11 11:08:56 -0500
committerJesús <heckyel@hyperbola.info>2022-02-11 11:08:56 -0500
commit69e20fc11381bdc94c416f11527289a34ffb89ed (patch)
tree4b8969904958e4a377a9dd00cabd972c1ce22429 /demo/src/sass/lib/animation.scss
parent421de00c8bb27fd0cd01d19ed4c2681ef2d63446 (diff)
downloadplyr-master.tar.lz
plyr-master.tar.xz
plyr-master.zip
update from upstreamHEADmaster
Diffstat (limited to 'demo/src/sass/lib/animation.scss')
-rw-r--r--demo/src/sass/lib/animation.scss7
1 files changed, 5 insertions, 2 deletions
diff --git a/demo/src/sass/lib/animation.scss b/demo/src/sass/lib/animation.scss
index cc18d59b..751b34c8 100644
--- a/demo/src/sass/lib/animation.scss
+++ b/demo/src/sass/lib/animation.scss
@@ -3,23 +3,26 @@
// ==========================================================================
// Fade
-@keyframes fadein {
+@keyframes fade-in {
0% {
opacity: 0;
}
+
100% {
opacity: 1;
}
}
-@keyframes shrinkHide {
+@keyframes shrink-hide {
0% {
opacity: 0.5;
width: 38px;
}
+
20% {
width: 45px;
}
+
100% {
opacity: 0;
width: 0;