From 521b0aefbee9e69f8018bf8f5c5d6d3654d5db18 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Tue, 26 Nov 2013 23:30:20 -0600 Subject: [PATCH] tidy up --- scss/_mixins.scss | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/scss/_mixins.scss b/scss/_mixins.scss index 4eab877a79..6166589055 100644 --- a/scss/_mixins.scss +++ b/scss/_mixins.scss @@ -162,7 +162,7 @@ } -// Fonts +// Font Mixins // -------------------------------------------------- @mixin font-family-serif() { @@ -204,7 +204,7 @@ } -// Border Radius +// Border Radius Mixins // -------------------------------------------------- @mixin border-radius($radius) { @@ -264,7 +264,7 @@ } -// Transitions +// Transition Mixins // -------------------------------------------------- @mixin transition($transition...) { @@ -287,6 +287,11 @@ -moz-transition-timing-function: $transition-timing; transition-timing-function: $transition-timing; } + + +// Animation Mixins +// -------------------------------------------------- + @mixin animation($animation) { -webkit-animation: $animation; -moz-animation: $animation; @@ -319,7 +324,7 @@ } -// Transformations +// Transformation Mixins // -------------------------------------------------- @mixin rotate($degrees) {