aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/animation.scss
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2017-12-20 15:14:05 +0000
committerSam Potts <sam@potts.es>2017-12-20 15:14:05 +0000
commit6864149989c6a5b1bb6e9199e1f8af062c64dcc4 (patch)
tree283649e596f5a81780fabe3603bb0be7d0d47485 /demo/src/sass/lib/animation.scss
parentaab53fa91fded2babdef8c3529a0ff1203f92f97 (diff)
downloadplyr-6864149989c6a5b1bb6e9199e1f8af062c64dcc4.tar.lz
plyr-6864149989c6a5b1bb6e9199e1f8af062c64dcc4.tar.xz
plyr-6864149989c6a5b1bb6e9199e1f8af062c64dcc4.zip
Converted to SASS/SCSS
Diffstat (limited to 'demo/src/sass/lib/animation.scss')
-rw-r--r--demo/src/sass/lib/animation.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/demo/src/sass/lib/animation.scss b/demo/src/sass/lib/animation.scss
new file mode 100644
index 00000000..3c14b0a7
--- /dev/null
+++ b/demo/src/sass/lib/animation.scss
@@ -0,0 +1,13 @@
+// ==========================================================================
+// Animations
+// ==========================================================================
+
+// Fade
+@keyframes fadein {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}