Browse Source

Comments

pull/216/head
connors 11 years ago
parent
commit
f992bdc989
  1. 12
      lib/sass/mixins.scss

12
lib/sass/mixins.scss

@ -2,6 +2,10 @@
// Mixins // Mixins
// -------------------------------------------------- // --------------------------------------------------
// General
// --------------------------------------------------
// Box orient // Box orient
@mixin box-orient($orient) { @mixin box-orient($orient) {
-webkit-box-orient: $orient; -webkit-box-orient: $orient;
@ -21,7 +25,7 @@
} }
// Transitions & animations // Transitions
// -------------------------------------------------- // --------------------------------------------------
@mixin transition($transition...) { @mixin transition($transition...) {
-webkit-transition: $transition; -webkit-transition: $transition;
@ -40,11 +44,17 @@
transition-timing-function: $function; transition-timing-function: $function;
} }
// Transforms
// --------------------------------------------------
@mixin transform($transform) { @mixin transform($transform) {
-webkit-transform: $transform; -webkit-transform: $transform;
transform: $transform; transform: $transform;
} }
// Animations
// --------------------------------------------------
@mixin animation-name($name) { @mixin animation-name($name) {
-webkit-animation-name: $name; -webkit-animation-name: $name;
animation-name: $name; animation-name: $name;

Loading…
Cancel
Save