Created
September 7, 2011 04:17
-
-
Save ordinz/1199752 to your computer and use it in GitHub Desktop.
SCSS MIXIN
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
@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