Sha256: efdd1c448ff0c62947466641d79a947b2b334ba582fb74a0df51192ed5413f0e
Contents?: true
Size: 354 Bytes
Versions: 73
Compression:
Stored size: 354 Bytes
Contents
@mixin shadow($x: 0, $y: 1px, $blur: 2px, $color: rgba(0,0,0,0.37)) { box-shadow: $x $y $blur $color; } @mixin no-shadow { box-shadow: none; } @mixin inset-shadow($x: 0, $y: 1px, $blur: 2px, $color: #aaa) { 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
73 entries across 73 versions & 6 rubygems