aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-05-31 03:47:51 +0300
committerValentin Popov <info@valentineus.link>2018-05-31 03:47:51 +0300
commit8156027eaacc7a11aacdbdc4763d843afb68c5fc (patch)
treec463c5bdfdc717921c65abab4585ceac04aba14d
parentd64b84db0a652ae8e4ab0d7c4b21cccd420f2fd8 (diff)
downloadobs-somafm_current_track-8156027eaacc7a11aacdbdc4763d843afb68c5fc.tar.xz
obs-somafm_current_track-8156027eaacc7a11aacdbdc4763d843afb68c5fc.zip
Animation pop-up window
Signed-off-by: Valentin Popov <info@valentineus.link>
-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;
+ }
+}