Skip to content

Instantly share code, notes, and snippets.

@schutzsmith
Created May 25, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schutzsmith/136510fff6690a1328fa to your computer and use it in GitHub Desktop.
Save schutzsmith/136510fff6690a1328fa to your computer and use it in GitHub Desktop.
Style Links Based on File Type
/* 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