Skip to content

Instantly share code, notes, and snippets.

@jsturgis
Last active August 29, 2015 14:11
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 jsturgis/df3b63902a7f2cdc9770 to your computer and use it in GitHub Desktop.
Save jsturgis/df3b63902a7f2cdc9770 to your computer and use it in GitHub Desktop.
blur text content with css
.blur .content {
color: transparent; /* hide text */
cursor: default;
text-shadow: 0 0 5px rgba(0,0,0,0.5); /* make text blurry */
opacity: 0.75; /* fade text slightly */
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@jsturgis
Copy link
Author

jsturgis commented Dec 9, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment