Created
December 10, 2012 13:44
-
-
Save geirarne/4250631 to your computer and use it in GitHub Desktop.
sprites mixin
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
@mixin dimensions($width,$height) | |
width: $width | |
height: $height | |
@mixin sprite($x_offset,$y_offset) | |
background: image_url('sprites.png') no-repeat $x_offset $y_offset | |
@mixin spriteblock($width,$height,$bg_x_offset,$bg_y_offset) | |
display: block | |
text-indent: -9999px | |
overflow: hidden | |
@include dimensions($width,$height) | |
@include sprite($bg_x_offset,$bg_y_offset) | |
@mixin bgpos($x_offset,$y_offset) | |
background-position: $x_offset $y_offset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment