Created
May 13, 2013 12:47
-
-
Save edwardoriordan/5568081 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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.2.9) | |
// --- | |
#foo { | |
$width: 100px; | |
width: $width; | |
background-position: ($width - 20px) center; | |
} | |
#foo.bar { | |
$width: 50px; | |
background-position: ($width - 20px) center; | |
} |
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
#foo { | |
width: 100px; | |
background-position: 80px center; | |
} | |
#foo.bar { | |
background-position: 30px center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment