Sha256: 549020c8f8457e5ce42ae1fc7343fddcc1cb361700bbbe01e529eff38d812ac2
Contents?: true
Size: 786 Bytes
Versions: 29
Compression:
Stored size: 786 Bytes
Contents
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group prototype-rotate //// /// Rotate Mixin: Rotate an element to a certain deg /// @param {Number} $deg[] Degree of rotation @mixin rotate($deg) { transform:rotate($deg + deg); } /// RotateX Mixin: Rotate an element to a certain deg on X-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateX($deg) { transform:rotateX($deg + deg); } /// RotateY Mixin: Rotate an element to a certain deg on Y-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateY($deg) { transform:rotateY($deg + deg); } /// RotateZ Mixin: Rotate an element to a certain deg on Z-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateZ($deg) { transform:rotateZ($deg + deg); }
Version data entries
29 entries across 29 versions & 4 rubygems