Skip to content

Instantly share code, notes, and snippets.

@geirarne
Created December 10, 2012 13:44
Show Gist options
  • Save geirarne/4250631 to your computer and use it in GitHub Desktop.
Save geirarne/4250631 to your computer and use it in GitHub Desktop.
sprites mixin
@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