﻿<?xml version="1.0" encoding="utf-8"?>
<snippet name="Create Inset Text Shadow" description="Create inset text shadow using CSS" preview="code" type="block">
<insertText location="beforeSelection">
<![CDATA[.textShadow {
    font: bold 60px arial, sans-serif;
    background-color: #565656;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.5);
	/*Chrome, Safari*/
    -webkit-background-clip: text;
	/*Firefox*/
    -moz-background-clip: text;
	/*Standard Syntax*/
    background-clip: text;
}
]]>
</insertText>
<insertText location="afterSelection"><![CDATA[]]>
</insertText>
</snippet>
