diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-31 04:01:12 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-31 04:06:52 +0300 |
commit | 63cdb71ca20e4bcc187e5c63888aa458325ecb21 (patch) | |
tree | 702e32ca1e87647e0cc11b92c7e76b30d2d3fc95 /_scss/utilities | |
parent | 76bf559070d72cd3b3f1e0ccf659447aa5b3efb0 (diff) | |
download | obs-somafm_current_track-63cdb71ca20e4bcc187e5c63888aa458325ecb21.tar.xz obs-somafm_current_track-63cdb71ca20e4bcc187e5c63888aa458325ecb21.zip |
Animation-name function added
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/utilities')
-rw-r--r-- | _scss/utilities/_animationname.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_scss/utilities/_animationname.scss b/_scss/utilities/_animationname.scss new file mode 100644 index 0000000..0fdbaa0 --- /dev/null +++ b/_scss/utilities/_animationname.scss @@ -0,0 +1,16 @@ +// Animation Name +// +// The animation-name CSS property specifies a list of animations that should +// be applied to the selected element. Each name indicates a @keyframes at-rule +// that defines the property values for the animation sequence. +// +// Values: [ none | <keyframes-name> ] +// Default: none +// +// https://www.w3.org/TR/css-animations-1/#animation-name +@mixin animation-name($value: none) { + -webkit-animation-name: $value; + -moz-animation-name: $value; + -o-animation-name: $value; + animation-name: $value; +} |