Skip to content

Instantly share code, notes, and snippets.

@joepestro
Created March 13, 2009 18:31
Show Gist options
  • Save joepestro/78692 to your computer and use it in GitHub Desktop.
Save joepestro/78692 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
input, textarea {
font-size: 80%;
margin: 1px;
padding: 3px 0 3px 3px;
background-color: #fff;
border-color: #666 #ccc #ccc;
border-style: solid;
border-width: 1px;
color: #000;
font-family: arial, sans-serif;
}
input:focus, textarea:focus {
border: 2px solid #6694E3 !important;
margin: 0 !important;
outline-style: none !important;
outline-width: 0 !important;
}
</style>
</head>
<body>
<div>
<input type="text" size="40" maxlength="2048" />
</div>
<div>
<textarea></textarea>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment