Sha256: ccf5195e4e811767349043099c41f7cc84e87c0e0a99cfa418799269b5f80718
Contents?: true
Size: 589 Bytes
Versions: 7
Compression:
Stored size: 589 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
7 entries across 7 versions & 3 rubygems