Sha256: 269284996caf986d1f871079a50c1525efbd3158e6f1bc60bf14f0fd9dfe602b
Contents?: true
Size: 688 Bytes
Versions: 4
Compression:
Stored size: 688 Bytes
Contents
/* ============= Theme Mixins ============= */ @mixin opacity ($opacity: 0.5) { -webkit-opacity: $opacity; -moz-opacity: $opacity; opacity: $opacity; } @mixin scale ($factor) { -webkit-transform: scale($factor); -moz-transform: scale($factor); -ms-transform: scale($factor); -o-transform: scale($factor); } @mixin background-size ($string: contain) { -webkit-background-size: $string; -moz-background-size: $string; -o-background-size: $string; background-size: $string; } @mixin reset-box-sizing ($size:content-box) { &, *, *:before, *:after { -webkit-box-sizing: $size; -moz-box-sizing: $size; box-sizing: $size; } }
Version data entries
4 entries across 4 versions & 1 rubygems