﻿<?xml version="1.0" encoding="utf-8"?>
<snippet name="Style Links based on their File Type" description="Based on the file type target different links with a different appearance " preview="code" type="block">
<insertText location="beforeSelection">
<![CDATA[/* external links */

a[href^="http://"] {
    padding-right: 13px;
    color: #1abc9c;
}
/* emails */

a[href^="mailto:"] {
    padding-right: 20px;
    color: #000000;
}
/* pdfs */

a[href$=".pdf"] {
    padding-right: 18px;
    color: #EBEBEB;
}]]>
</insertText>
<insertText location="afterSelection"><![CDATA[]]>
</insertText>
</snippet>
