A textbox that looks like a notepad! Forms are fun!
Forked from Stein's Pen A fun textbox.
| <div id="wrapper"> | |
| <form id="paper" method="get" action=""> | |
| <div id="margin">Title: <input id="title" type="text" name="title"></div> | |
| <textarea placeholder="Enter something funny." id="text" name="text" rows="4" style="overflow: hidden; word-wrap: break-word; resize: none; height: 160px; "></textarea> | |
| <br> | |
| <input id="button" type="submit" value="Create"> | |
| </form> | |
| </div> |
| $(document).ready(function(){ | |
| $('#title').focus(); | |
| $('#text').autosize(); | |
| }); |
| <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
| <script src="http://static.tumblr.com/maopbtg/oimmiw86r/jquery.autosize-min.js"></script> |
| * { | |
| outline:none; | |
| border:none; | |
| margin:0px; | |
| padding:0px; | |
| font-family:Courier, monospace; | |
| } | |
| body { | |
| background:#333 url(http://static.tumblr.com/maopbtg/a5emgtoju/inflicted.png) repeat; | |
| } | |
| #paper { | |
| color:#FFF; | |
| font-size:20px; | |
| } | |
| #margin { | |
| margin-left:12px; | |
| margin-bottom:20px; | |
| -webkit-user-select: none; | |
| -moz-user-select: none; | |
| -ms-user-select: none; | |
| -o-user-select: none; | |
| user-select: none; | |
| } | |
| #text { | |
| width:500px; | |
| overflow:hidden; | |
| background-color:#FFF; | |
| color:#222; | |
| font-family:Courier, monospace; | |
| font-weight:normal; | |
| font-size:24px; | |
| resize:none; | |
| line-height:40px; | |
| padding-left:100px; | |
| padding-right:100px; | |
| padding-top:45px; | |
| padding-bottom:34px; | |
| background-image:url(http://static.tumblr.com/maopbtg/E9Bmgtoht/lines.png), url(http://static.tumblr.com/maopbtg/nBUmgtogx/paper.png); | |
| background-repeat:repeat-y, repeat; | |
| -webkit-border-radius:12px; | |
| border-radius:12px; | |
| -webkit-box-shadow: 0px 2px 14px #000; | |
| box-shadow: 0px 2px 14px #000; | |
| border-top:1px solid #FFF; | |
| border-bottom:1px solid #FFF; | |
| } | |
| #title { | |
| background-color:transparent; | |
| border-bottom:3px solid #FFF; | |
| color:#FFF; | |
| font-size:20px; | |
| font-family:Courier, monospace; | |
| height:28px; | |
| font-weight:bold; | |
| width:220px; | |
| } | |
| #button { | |
| cursor:pointer; | |
| margin-top:20px; | |
| float:right; | |
| height:40px; | |
| padding-left:24px; | |
| padding-right:24px; | |
| font-family:Arial, Helvetica, sans-serif; | |
| font-weight:bold; | |
| font-size:20px; | |
| color:#FFF; | |
| text-shadow: 0px -1px 0px #000000; | |
| -webkit-border-radius:8px; | |
| border-radius:8px; | |
| border-top:1px solid #FFF; | |
| -webkit-box-shadow: 0px 2px 14px #000; | |
| box-shadow: 0px 2px 14px #000; | |
| background-color: #62add6; | |
| background-image:url(http://static.tumblr.com/maopbtg/ZHLmgtok7/button.png); | |
| background-repeat:repeat-x; | |
| } | |
| #button:active { | |
| zoom: 1; | |
| filter: alpha(opacity=80); | |
| opacity: 0.8; | |
| } | |
| #button:focus { | |
| zoom: 1; | |
| filter: alpha(opacity=80); | |
| opacity: 0.8; | |
| } | |
| #wrapper { | |
| width:700px; | |
| height:auto; | |
| margin-left:auto; | |
| margin-right:auto; | |
| margin-top:24px; | |
| margin-bottom:100px; | |
| } |