need to get the names right...
[webchat.git] / chat.css
blob5b7632cb5e8517c4707bc187cc596fbd7873e12b
1 body {
2 font-family: verdana, sans-serif;
3 font-size: 14px;
6 fieldset {
7 padding: 10px;
10 #chatbox {
11 display: none;
14 #chatlog-fieldset {
15 display: none;
18 #error {
19 display: none;
22 label {
23 font-size: 0.8em;
26 .error {
27 background-color: red;
28 color: white;
31 .status {
32 background-color: #eee;
35 .success {
36 background-color: green;
37 color: white;
40 .timestamp {
41 font-size: 0.8em;
44 .timestamp:after {
45 content: ']';
46 margin-right: 2px;
49 .timestamp:before {
50 content: '[';
53 .nick {
54 font-style: italic;
57 .nick:before {
58 content: '<';
61 .nick:after {
62 content: '>';
63 margin-right: 5px;
66 .loading-image {
67 float: left;
68 display: none;
71 #chatlog {
72 border: 2px solid #ccc;
75 .logEntry {
76 border-top: 1px dashed #ccc;
79 .logEntry:FIRST-CHILD {
80 border-top: 0px;
83 #inputfield {
84 margin-top: 10px;
87 #textinput {
88 width: 95%;
89 margin-top: 3px;
92 .loading {
93 background-image: url(loading.gif);
94 background-repeat: no-repeat;
95 background-position: 100% 2px;