Sha256: 3e140be6e701d030eb0d63cdb22ffc14f6f16a5ff92f6d249b30015891b3c6f0
Contents?: true
Size: 588 Bytes
Versions: 25
Compression:
Stored size: 588 Bytes
Contents
// Misc. Stylesheet // ======================================== // Background Image @mixin background-size($size){ -webkit-background-size: $size; -moz-background-size: $size; -o-background-size: $size; background-size: $size; } // Box Shadow @mixin box-shadow($dim: 0 0 0 0, $color: $black-base){ -webkit-box-shadow: $dim $color; -moz-box-shadow: $dim $color; -o-box-shadow: $dim $color; box-shadow: $dim $color; } // Vertical Center @mixin vertical-center { @include transform(translateY(-50%)); position: absolute; top: 50%; }
Version data entries
25 entries across 25 versions & 1 rubygems