Created
April 22, 2015 05:40
-
-
Save allejo/970cd350f1f5292ef033 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test | |
<hr /> | |
test | |
<hr class="test" /> | |
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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; } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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