Created
February 12, 2015 03:34
-
-
Save MichaelArestad/8f4d0ad7fc287f57b354 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
$post-format-icons: ( | |
aside: "\f123", | |
image: "\f128", | |
video: "\f126", | |
audio: "\f127", | |
quote: "\f122", | |
link: "\f103", | |
gallery: "\f103" | |
); | |
@each $type, $character in $post-format-icons { | |
.post-format-#{$type} { | |
content: "#{$character}"; | |
} | |
} |
This file contains hidden or 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
@charset "UTF-8"; | |
.post-format-aside { | |
content: ""; | |
} | |
.post-format-image { | |
content: ""; | |
} | |
.post-format-video { | |
content: ""; | |
} | |
.post-format-audio { | |
content: ""; | |
} | |
.post-format-quote { | |
content: ""; | |
} | |
.post-format-link { | |
content: ""; | |
} | |
.post-format-gallery { | |
content: ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment