Skip to content

Instantly share code, notes, and snippets.

@bstro
Created May 19, 2015 17:46
Show Gist options
  • Select an option

  • Save bstro/f0d063924f7c321c86e8 to your computer and use it in GitHub Desktop.

Select an option

Save bstro/f0d063924f7c321c86e8 to your computer and use it in GitHub Desktop.
@mixin keyframe($animation_name) {
@-webkit-keyframes $animation_name { @content }
@-moz-keyframes $animation_name { @content }
@-o-keyframes $animation_name { @content }
@keyframes $animation_name { @content }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment