middleman/middleman-core/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss
Thomas Reynolds 32891dc6fe SassC, woot
2015-09-28 11:24:37 -07:00

16 lines
501 B
SCSS

@mixin transform($property: none) {
// none | <transform-function>
@include prefixer(transform, $property, webkit moz ms o spec);
}
@mixin transform-origin($axes: 50%) {
// x-axis - left | center | right | length | %
// y-axis - top | center | bottom | length | %
// z-axis - length
@include prefixer(transform-origin, $axes, webkit moz ms o spec);
}
@mixin transform-style($style: flat) {
@include prefixer(transform-style, $style, webkit moz ms o spec);
}