blob: 383ba7a89097bbeed094ab7d62ab631bd87b7395 (
plain)
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
|
/* pichat.css */
html, body {
padding: 1em;
}
#content, #chatbox {
position: relative;
}
#messagePane {
border: 1px solid green;
height: 600px;
padding: 5px;
position: absolute;
width: 540px;
}
#messageList {
height: 575px;
width: 540px;
overflow-y: auto;
overflow-x: hidden;
border-bottom: 1px solid grey;
}
#msgInputDiv {
height: 15px;
}
#msgInput {
width: 85%;
margin-right: 5px;
}
#msgSubmit {
width: 14%;
}
.msgDiv {
width: 520px;
}
#userList {
overflow: auto;
border: 1px solid blue;
height: 600px;
margin: 0px;
position: absolute;
padding: 5px;
left: 550px;
width: 150px;
}
|