﻿<?xml version="1.0" encoding="utf-8"?>

<snippet name="Blur out text using CSS" description="Use this CSS snippet to create blurred text effect " preview="code" type="block">

<insertText location="beforeSelection">

<![CDATA[/* Apply this selector to the element on which this effects needs to be applied*/



.blurryText{

   color: transparent;

   text-shadow: 0 0 5px rgba(131,246,228,0.8);

}]]>

</insertText>

<insertText location="afterSelection"><![CDATA[]]>

</insertText>

</snippet>

