Poor man's WriteMonkey

by dirkk0

HTML

<div class="container">
    <textarea rows="5" cols="20" class="textarea1">
      Some text
     </textarea>
</div>

CSS

body {
    -webkit-text-size-adjust:none;
    background-color: #004400;
    height:100%;
}

.textarea1 {
    background:transparent;
    font-family:Monospace, Courier;
    font-size:12pt;
    color:#98FB98;"
    line-height:10em;
    width: 90%;
    height: 90%;
    border:2px white;
    outline: none;
}

.container {
    position:absolute;
    top:10%;
    left:10%;
    display:block;
    width: 80%;
    height: 80%;
    // border: 3px solid #f7c;
}