Skip to content

Instantly share code, notes, and snippets.

@chriseppstein
Forked from scottkellum/SassMeister-input.scss
Created January 6, 2014 19:11
Show Gist options
  • Save chriseppstein/8288000 to your computer and use it in GitHub Desktop.
Save chriseppstein/8288000 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@import "compass";
$map: (
animation: foo 1s infinite,
width: 200px,
height: 100px,
);
foo {
@include prefixed-properties(css-animation, $animation-support-threshold, $properties: $map);
}
foo {
-moz-animation: foo 1s infinite;
-moz-width: 200px;
-moz-height: 100px;
-webkit-animation: foo 1s infinite;
-webkit-width: 200px;
-webkit-height: 100px;
animation: foo 1s infinite;
width: 200px;
height: 100px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment