Skip to content

Instantly share code, notes, and snippets.

@gregorkas
Created July 24, 2013 07:49
Show Gist options
  • Save gregorkas/6068738 to your computer and use it in GitHub Desktop.
Save gregorkas/6068738 to your computer and use it in GitHub Desktop.
Cornerizr - Tired of those boring flat looking corners? Here is a bookmarklet that makes your (or any other) website beautiful again. Installation tips: 1. create a new bookmark and enter Cornerizr as the name 2. paste the code into the URL field 3. enjoy
javascript:(function(){var newcss='* { border-radius: 30px !important; }';if('\v'=='v'){document.createStyleSheet().cssText=newcss}else{var tag=document.createElement('style');tag.type='text/css';document.getElementsByTagName('head')[0].appendChild(tag);tag[(typeof document.body.style.WebkitAppearance=='string')?'innerText':'innerHTML']=newcss}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment