PageRenderTime 47ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/sass/recipes/shape/polygon/_parallelogram.scss

https://bitbucket.org/decore/my-svadba.ru
Sass | 15 lines | 8 code | 2 blank | 5 comment | 0 complexity | 9d1fd7b8f956aff24ec862352275570a MD5 | raw file
  1. /**
  2. * Shape/Polygon/Parallelogram
  3. *
  4. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  5. */
  6. @import "compass/css3/transform";
  7. @mixin parallelogram($width: 150px, $height: 100px, $skew: 20deg, $background: transparent)
  8. {
  9. width: $width;
  10. height: $height;
  11. @include transform(skew($skew));
  12. background: $background;
  13. }