Created
July 27, 2011 15:47
-
-
Save courtsimas/1109651 to your computer and use it in GitHub Desktop.
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
$number_h: 157px; | |
#money_amount span { | |
background-image: url(numbers.png); | |
background-repeat:no-repeat; | |
height:$number_h; | |
width:94px; | |
display:block; | |
float:none; | |
margin:0 auto; | |
} | |
#money_amount span.number1 { | |
background-position:center 0; | |
} | |
#money_amount span.number2 { | |
background-position:center -1 * $number_h; | |
} | |
#money_amount span.number3 { | |
background-position:center -2 * $number_h; | |
} | |
#money_amount span.number4 { | |
background-position:center -3 * $number_h; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment