From 8156027eaacc7a11aacdbdc4763d843afb68c5fc Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 31 May 2018 04:47:51 +0400 Subject: Animation pop-up window Signed-off-by: Valentin Popov --- _scss/_animate.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _scss/_animate.scss 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; + } +} -- cgit v1.2.3