Skip to content

Instantly share code, notes, and snippets.

@labnol
Created October 3, 2012 08:24
Show Gist options
  • Save labnol/3825790 to your computer and use it in GitHub Desktop.
Save labnol/3825790 to your computer and use it in GitHub Desktop.
A textbox that looks like a notepad! Forms are fun!
<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();
});
* {
outline:none;
border:none;
margin:0px;
padding:0px;
font-family:Courier, monospace;
}
body {
background:#333 url(http://remembr.webege.com/images/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://remembr.webege.com/images/lines.png), url(http://remembr.webege.com/images/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://remembr.webege.com/images/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;
}
@ozh
Copy link

ozh commented Dec 12, 2012

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