summaryrefslogtreecommitdiff
path: root/_sass/bourbon/css3/_transform.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/bourbon/css3/_transform.scss')
-rw-r--r--_sass/bourbon/css3/_transform.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/_sass/bourbon/css3/_transform.scss b/_sass/bourbon/css3/_transform.scss
new file mode 100644
index 0000000..8ee6509
--- /dev/null
+++ b/_sass/bourbon/css3/_transform.scss
@@ -0,0 +1,15 @@
+@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);
+}