Skip to content

Instantly share code, notes, and snippets.

@ordinz
Created September 7, 2011 04:17
Show Gist options
  • Save ordinz/1199752 to your computer and use it in GitHub Desktop.
Save ordinz/1199752 to your computer and use it in GitHub Desktop.
SCSS MIXIN
@mixin assetBackground($file) {
background: url('/assets/icons/file-extensions/' + $file + '.png') no-repeat;
text-indent: 40px;
display: block;
height: 42px;
line-height: 42px;
}
.asset {
.PDF {@include assetBackground(pdf);}
.JPG, .JPEG {@include assetBackground(jpg);}
.MP3 {@include assetBackground(mp3);}
.MP4 {@include assetBackground(mp4);}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment