0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
gentelella-1.3.0
/
vendors
/
cropper
/
src
/
scss
/
[
Home
]
File: _mixins.scss
// Mixins // ========================= // Opacity // ------------------------- @mixin opacity($opacity) { opacity: $opacity; filter: alpha(opacity=#{$opacity * 100}); // IE8 } // Sizing shortcuts // ------------------------- @mixin size($width, $height) { width: $width; height: $height; } @mixin square($size) { @include size($size, $size); }