Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created December 15, 2015 12:07
Show Gist options
  • Save cimmanon/b623fc1774cccd2da28c to your computer and use it in GitHub Desktop.
Save cimmanon/b623fc1774cccd2da28c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
$graceful-usage-threshold: 0.0001;
$animation-support: webkit, moz, o, ms, not khtml;
@import "compass/css3";
@include keyframes(test) {
0% {
color: red;
}
}
@-moz-keyframes test {
0% {
color: red;
}
}
@-o-keyframes test {
0% {
color: red;
}
}
@-webkit-keyframes test {
0% {
color: red;
}
}
@keyframes test {
0% {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment