Sha256: e8fc63c4e8889b5d07bfbf667c41fb17226cfe7dd874686beb8c001ed4d05c69
Contents?: true
Size: 893 Bytes
Versions: 2
Compression:
Stored size: 893 Bytes
Contents
@mixin border-radius($radius){ -moz-border-radius: $radius; -webkit-border-radius: $radius; border-radius: $radius; } @mixin gradient($top_color, $bottom_color){ background-image: -moz-linear-gradient(top, $top_color, $bottom_color); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $top_color),color-stop(1, $bottom_color)); filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='$top_color', EndColorStr='$bottom_color'); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='$top_color', EndColorStr='$bottom_color')"; } @mixin shadow($shadow_params){ -moz-box-shadow: $shadow_params; -webkit-box-shadow: $shadow_params; box-shadow: $shadow_params; } @mixin inner-shadow($shadow_params){ -moz-box-shadow: inset $shadow_params; -webkit-box-shadow: inset $shadow_params; box-shadow: inset $shadow_params; }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cartoset-0.0.2 | app/assets/stylesheets/_mixins.css3.scss |
cartoset-0.0.1 | app/assets/stylesheets/_mixins.css3.scss |