aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-05-31 04:07:49 +0300
committerValentin Popov <info@valentineus.link>2018-05-31 04:07:49 +0300
commit2655a6fed0c8e21ee24e0efe21a0f6e38c1adf89 (patch)
tree2e4b02a8acacac0131b12115a1d387c230650312
parent63cdb71ca20e4bcc187e5c63888aa458325ecb21 (diff)
downloadobs-somafm_current_track-2655a6fed0c8e21ee24e0efe21a0f6e38c1adf89.tar.xz
obs-somafm_current_track-2655a6fed0c8e21ee24e0efe21a0f6e38c1adf89.zip
Animation-fill-mode function added
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--_scss/utilities/_animationfillmode.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/_scss/utilities/_animationfillmode.scss b/_scss/utilities/_animationfillmode.scss
new file mode 100644
index 0000000..570f6ea
--- /dev/null
+++ b/_scss/utilities/_animationfillmode.scss
@@ -0,0 +1,15 @@
+// Animation Fill Mode
+//
+// The animation-fill-mode property defines what values are applied by the
+// animation outside the time it is executing.
+//
+// Values: none | forwards | backwards | both
+// Default: none
+//
+// https://www.w3.org/TR/css-animations-1/#animation-fill-mode
+@mixin animation-fill-mode($value: none) {
+ -webkit-animation-fill-mode: $value;
+ -moz-animation-fill-mode: $value;
+ -o-animation-fill-mode: $value;
+ animation-fill-mode: $value;
+}