36 lines
447 B
CSS
36 lines
447 B
CSS
body{
|
|
margin:0px; /* rip dooms */
|
|
padding:0px;
|
|
background-color:#111;
|
|
color:#444;
|
|
text-align:center;
|
|
}
|
|
#chat{
|
|
height:92%;
|
|
width:90%;
|
|
border:0px;
|
|
}
|
|
#users{
|
|
height:92%;
|
|
width:10%;
|
|
border:0px;
|
|
float:right;
|
|
}
|
|
input{
|
|
padding:10px;
|
|
width:97%;
|
|
background-color:#222;
|
|
border:0px;
|
|
color:#999;
|
|
}
|
|
textarea:focus, input:focus{
|
|
border:0px;
|
|
outline: none;
|
|
}
|
|
#nick{
|
|
float:right;
|
|
color:#f00;
|
|
}
|
|
#time{
|
|
|
|
} |