21 lines
306 B
CSS
21 lines
306 B
CSS
|
* {
|
||
|
margin:0;
|
||
|
padding:0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background:#000;
|
||
|
height:100%;
|
||
|
overflow:hidden;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
font:normal normal bold 12px 'lucida console';
|
||
|
color:#fff;
|
||
|
width:100%;
|
||
|
height:50px;
|
||
|
background:transparent;
|
||
|
border:0;
|
||
|
cursor:default;
|
||
|
overflow-x:hidden;
|
||
|
}
|