Created
May 12, 2015 16:59
-
-
Save mekhami/d06081ea64c96d4c75fa 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.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