aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/animation.scss
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-03-17 23:30:16 +1100
committerSam Potts <sam@potts.es>2018-03-17 23:30:16 +1100
commit600f0eb8a3cf49f5268e5c15487797d496bc19b6 (patch)
treeae7d43ee753035458e5927b66eb588ff26d58afd /demo/src/sass/lib/animation.scss
parente0562752eaa4553466b78fb6828d05147a0891d1 (diff)
parent5db73b13276bf50357cc98896421318de66ab042 (diff)
downloadplyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.tar.lz
plyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.tar.xz
plyr-600f0eb8a3cf49f5268e5c15487797d496bc19b6.zip
Merge branch 'beta'
# Conflicts: # readme.md
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;
+ }
+}