Last active
February 27, 2016 18:56
-
-
Save mekhami/a102201bc87d629fc0ed 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
// ---- | |
// libsass (v3.2.2) | |
// ---- | |
.single-list article ol { | |
padding: 0; | |
li { | |
font-size: 10px; | |
.credit { | |
color: black; | |
} | |
.caption { | |
color: green | |
} | |
} | |
&.Success article .entry-content { | |
a { | |
color: red; | |
} | |
} | |
} |
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
.single-list article ol { | |
padding: 0; | |
} | |
.single-list article ol li { | |
font-size: 10px; | |
} | |
.single-list article ol li .credit { | |
color: black; | |
} | |
.single-list article ol li .caption { | |
color: green; | |
} | |
.single-list article ol.Success article .entry-content a { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment