Skip to content

Instantly share code, notes, and snippets.

@DeeprajPandey
Created October 11, 2019 11:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DeeprajPandey/70ae66be8dab62c8b95d25c5bcfc2a46 to your computer and use it in GitHub Desktop.
Save DeeprajPandey/70ae66be8dab62c8b95d25c5bcfc2a46 to your computer and use it in GitHub Desktop.
Single ruled in-browser notepad - URL encoded to work with Chrome
data:text/html;charset=utf-8, <title>TextEditor</title> <link rel="shortcut icon" href="http://g.etfv.co/https://docs.google.com"/> <style>html%7Bheight%3A%20100%25%3B%7D%20body%7Bbackground%3A%20-webkit-linear-gradient(%23f0f0f0%2C%20%23fff)%3B%20padding%3A%203%25%3B%20height%3A%2094%25%3B%7D%20.paper%20%7B%20font%3A%20normal%2012px%2F1.5%20%22Lucida%20Grande%22%2C%20arial%2C%20sans-serif%3B%20width%3A%2050%25%3B%20height%3A%2080%25%3B%20margin%3A%200%20auto%3B%20padding%3A%206px%205px%204px%2042px%3B%20position%3A%20relative%3B%20color%3A%20%23444%3B%20line-height%3A%2020px%3B%20border%3A%201px%20solid%20%23d2d2d2%3B%20background%3A%20%23fff%3B%20background%3A%20-webkit-gradient(linear%2C%200%200%2C%200%20100%25%2C%20from(%23d9eaf3)%2C%20color-stop(4%25%2C%20%23fff))%200%204px%3B%20background%3A%20-webkit-linear-gradient(top%2C%20%23d9eaf3%200%25%2C%20%23fff%208%25)%200%204px%3B%20background%3A%20-moz-linear-gradient(top%2C%20%23d9eaf3%200%25%2C%20%23fff%208%25)%200%204px%3B%20background%3A%20-ms-linear-gradient(top%2C%20%23d9eaf3%200%25%2C%20%23fff%208%25)%200%204px%3B%20background%3A%20-o-linear-gradient(top%2C%20%23d9eaf3%200%25%2C%20%23fff%208%25)%200%204px%3B%20background%3A%20linear-gradient(top%2C%20%23d9eaf3%200%25%2C%20%23fff%208%25)%200%204px%3B%20-webkit-background-size%3A%20100%25%2020px%3B%20-moz-background-size%3A%20100%25%2020px%3B%20-ms-background-size%3A%20100%25%2020px%3B%20-o-background-size%3A%20100%25%2020px%3B%20background-size%3A%20100%25%2020px%3B%20-webkit-border-radius%3A%203px%3B%20-moz-border-radius%3A%203px%3B%20border-radius%3A%203px%3B%20-webkit-box-shadow%3A%200%201px%202px%20rgba(0%2C0%2C0%2C0.07)%3B%20-moz-box-shadow%3A%200%201px%202px%20rgba(0%2C0%2C0%2C0.07)%3B%20box-shadow%3A%200%201px%202px%20rgba(0%2C0%2C0%2C0.07)%3B%20%7D%20.paper%3A%3Abefore%20%7B%20content%3A%20''%3B%20position%3A%20absolute%3B%20width%3A%204px%3B%20top%3A%200%3B%20left%3A%2030px%3B%20bottom%3A%200%3B%20border%3A%201px%20solid%3B%20border-color%3A%20transparent%20%23efe4e4%3B%20%7D%20textarea%7Bdisplay%3A%20block%3B%20width%3A94%25%3Bmargin%3A0%20auto%3Bpadding%3A3.8%25%203%25%3B%20border%3A%20none%3B%20outline%3A%20none%3B%20height%3A%2094%25%3B%20background%3A%20transparent%3B%20line-height%3A%2020px%3B%7D</style> <body spellcheck="false"> <div class="paper"> <textarea autofocus="autofocus"></textarea> </div> </body> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment