Created
May 24, 2013 19:38
-
-
Save trumball/5645986 to your computer and use it in GitHub Desktop.
Style Links Based On Filetype
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
/* external links */ | |
a[href^="http://"] { | |
padding-right: 13px; | |
background: url('external.gif') no-repeat center right; | |
} | |
/* emails */ | |
a[href^="mailto:"] { | |
padding-right: 20px; | |
background: url('email.png') no-repeat center right; | |
} | |
/* pdfs */ | |
a[href$=".pdf"] { | |
padding-right: 18px; | |
background: url('acrobat.png') no-repeat center right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment