Created
July 21, 2014 08:21
-
-
Save og2t/eb399e9d5238d6505a8c 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
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$account-icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0nYxMnoiLz48L3N2Zz4=" | |
$accounts-icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iDE5IDIwIjL3N2Zz4=" | |
$icons: (account-icon: $account-icon, accounts-icon: $accounts-icon) | |
@each $name, $datauri in $icons | |
%#{$name} | |
background-image: url($datauri) | |
=icon($name, $width, $height) | |
@extend %#{$name} | |
width: $width | |
height: $height | |
.item-1, | |
.item-2 | |
+icon(account-icon, 10px, 10px) | |
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
.item-1, | |
.item-2 { | |
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0nYxMnoiLz48L3N2Zz4="); | |
} | |
.item-1, | |
.item-2 { | |
width: 10px; | |
height: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment