Skip to content

Instantly share code, notes, and snippets.

View devkinetic's full-sized avatar
🏠
Working from home

Ryan Hartman devkinetic

🏠
Working from home
View GitHub Profile
@devkinetic
devkinetic / _animation.scss
Last active January 28, 2016 21:21 — forked from greypants/gist:3185028
SCSS: keyframe mixins
// ======================================================================
// Animation.scss
// - Contains helpers for keyframes animation in css3
// - Only functionally with Sass 3.2.0 Alpha and Compass 0.13.alpha
// ======================================================================
@mixin animation($name) {
-webkit-animation: #{$name};
-moz-animation: #{$name};
-ms-animation: #{$name};