Created
July 4, 2013 18:39
-
-
Save teeaich/5929556 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 rightright; | |
| } | |
| /* emails */ | |
| a[href^="mailto:"] { | |
| padding-right: 20px; | |
| background: url('email.png') no-repeat center rightright; | |
| } | |
| /* pdfs */ | |
| a[href$=".pdf"] { | |
| padding-right: 18px; | |
| background: url('acrobat.png') no-repeat center rightright; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment