diff options
author | Valentin Popov <info@valentineus.link> | 2018-04-22 23:29:39 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-04-22 23:29:39 +0300 |
commit | ad91d95861d9b8c78af0630f565a3a702b1fe920 (patch) | |
tree | fe2914caa70b29e59a86265a2e39178222c09636 | |
parent | 773ea029df70ee175d48795d6b26034406960d63 (diff) | |
download | popov.link-ad91d95861d9b8c78af0630f565a3a702b1fe920.tar.xz popov.link-ad91d95861d9b8c78af0630f565a3a702b1fe920.zip |
Add tool 'box-shadow'
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | _scss/utilities/_boxshadow.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/_scss/utilities/_boxshadow.scss b/_scss/utilities/_boxshadow.scss new file mode 100644 index 0000000..4e1d200 --- /dev/null +++ b/_scss/utilities/_boxshadow.scss @@ -0,0 +1,13 @@ +// Box Shadow +// +// The box-shadow CSS property is used to add shadow effects around an element's frame. You can specify multiple effects separated by commas if you wish to do so. A box shadow is described by X and Y offsets relative to the element, blur and spread radii, and color. +// +// Values: offset-x | offset-y | blur-radius | spread-radius | color +// Default: none +// +// https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow +@mixin boxshadow($value: none) { + -webkit-box-shadow: $value; + -moz-box-shadow: $value; + box-shadow: $value; +} |