added settings.php.dist. you need to copy settings.php.dist to settings.php und fill...
[webchat.git] / chat.css
blob170e89905d65e18d5819bfd839147650ff0ac403
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;
24 display: block;
27 .error {
28 background-color: red;
29 color: white;
32 .status {
33 background-color: #eee;
36 .success {
37 background-color: green;
38 color: white;
41 .timestamp {
42 font-size: 0.8em;
45 .timestamp:after {
46 content: ']';
47 margin-right: 2px;
50 .timestamp:before {
51 content: '[';
54 .nick {
55 font-style: italic;
58 .nick:before {
59 content: '<';
62 .nick:after {
63 content: '>';
64 margin-right: 5px;
67 .loading-image {
68 float: left;
69 display: none;
72 #chatlog {
73 border: 2px solid #ccc;
76 .logEntry {
77 border-top: 1px dashed #ccc;
80 .logEntry:FIRST-CHILD {
81 border-top: 0px;
84 #inputfield {
85 margin-top: 10px;
88 #textinput {
89 width: 95%;
90 margin-top: 3px;
93 .loading {
94 background-image: url(loading.gif);
95 background-repeat: no-repeat;
96 background-position: 100% 2px;