Sha256: 9dcb4b2f6df0ad02498d25d85a30cb1b7c0f0fdad84bb930cead223b1a9fc370
Contents?: true
Size: 584 Bytes
Versions: 18
Compression:
Stored size: 584 Bytes
Contents
@mixin shadow($x: 0, $y: 1px, $blur: 2px, $color: rgba(0, 0, 0, 0.37)) { box-shadow: $x $y $blur $color; -moz-box-shadow: $x $y $blur $color; -webkit-box-shadow: $x $y $blur $color; } @mixin no-shadow { box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; } @mixin inset-shadow($x: 0, $y: 1px, $blur: 2px, $color: #aaa) { box-shadow: inset $x $y $blur $color; -moz-box-shadow: inset $x $y $blur $color; -webkit-box-shadow: inset $x $y $blur $color; } @mixin text-shadow($color: #fff, $x: 0, $y: 1px, $blur: 0) { text-shadow: $color $x $y $blur; }
Version data entries
18 entries across 18 versions & 2 rubygems