PHP Classes

File: vendors/cropper/src/scss/_mixins.scss

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/cropper/src/scss/_mixins.scss   Download  
File: vendors/cropper/src/scss/_mixins.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 2 years ago
Size: 360 bytes
 

Contents

Class file image Download
// 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); }