Skip to content

Instantly share code, notes, and snippets.

@tjoskar
Created August 14, 2013 14:48
Show Gist options
  • Save tjoskar/6231764 to your computer and use it in GitHub Desktop.
Save tjoskar/6231764 to your computer and use it in GitHub Desktop.
Helper functions for (none-compass) sass
$std_color: rgb(70, 70, 70)
=vendor-prefix($name, $argument)
#{$name}: $argument
-webkit-#{$name}: $argument
-ms-#{$name}: $argument
-moz-#{$name}: $argument
-o-#{$name}: $argument
=keyframes($name)
@-webkit-keyframes #{$name}
@content
@-moz-keyframes #{$name}
@content
@-ms-keyframes #{$name}
@content
@keyframes #{$name}
@content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment