aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_scss/_animate.scss19
1 files changed, 19 insertions, 0 deletions
diff --git a/_scss/_animate.scss b/_scss/_animate.scss
new file mode 100644
index 0000000..5a595d7
--- /dev/null
+++ b/_scss/_animate.scss
@@ -0,0 +1,19 @@
+@import 'utilities/keyframes';
+
+@include keyframes(fadeIn) {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@include keyframes(fadeOut) {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}