diary-website

Website for diary
git clone https://git.in0rdr.ch/diary-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_perspective.scss (231B)


      1 @mixin perspective($depth: none) {
      2   // none | <length>
      3   @include prefixer(perspective, $depth, webkit moz spec);
      4 }
      5 
      6 @mixin perspective-origin($value: 50% 50%) {
      7   @include prefixer(perspective-origin, $value, webkit moz spec);
      8 }