aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/lib/animation.scss
diff options
context:
space:
mode:
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;
+ }
+}