Skip to content

Instantly share code, notes, and snippets.

@allejo
Created April 22, 2015 05:40
Show Gist options
  • Save allejo/970cd350f1f5292ef033 to your computer and use it in GitHub Desktop.
Save allejo/970cd350f1f5292ef033 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
test
<hr />
test
<hr class="test" />
test
// ----
// libsass (v3.1.0)
// ----
@keyframes fade{
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes fade{
0% { opacity: 0; }
100% { opacity: 1; }
}
@-webkit-keyframes fade{
0% { opacity: 0; }
100% { opacity: 1; }
}
@-ms-keyframes fade{
0% { opacity: 0; }
100% { opacity: 1; }
}
// <--- Error thrown on this line
@-o-keyframes fade{
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-moz-keyframes fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-webkit-keyframes fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-ms-keyframes fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@-o-keyframes fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
test
<hr />
test
<hr class="test" />
test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment