1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
html {
font-family: sans-serif;
background-color: #335;
font-size: 16px;
}
body {
}
h1 {
text-align: center;
font-size: 20px;
color: #fff;
padding: 10px 10px 20px 10px;
}
h2 {
border-bottom: 1px solid black;
display: block;
font-size: 18px;
}
div#main {
width: 600px;
margin: 0px auto 0px auto;
padding: 0px;
background-color: #fff;
height: 460px;
}
div#warnings {
color: red;
font-weight: bold;
margin: 10px;
}
div#join-section {
float: left;
margin: 10px;
}
div#users-section {
width: 170px;
float: right;
padding: 0px;
margin: 10px;
}
ul#users {
list-style-type: none;
padding-left: 0px;
height: 300px;
overflow: auto;
}
div#chat-section {
width: 390px;
float: left;
margin: 10px;
}
div#messages {
margin: 0px;
height: 300px;
overflow: auto;
}
div#messages p {
margin: 0px;
padding: 0px;
}
div#footer {
text-align: center;
font-size: 12px;
color: #fff;
margin: 10px 0px 30px 0px;
}
div#footer a {
color: #fff;
}
div.clear {
clear: both;
}
|