blob: a3cbaca5b3fb1b38c317eb4507e9aae5de9141c1 (
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
54
55
56
57
58
59
60
61
62
|
/* pichat.css */
html, body {
padding: 1em;
}
#content, #chatbox {
position: relative;
}
#messagePane {
border: 1px solid green;
height: 80%;
padding: 5px;
position: fixed;
width: 80%;
}
#messageList {
height: 100%;
width: 100%;
position:inherit
overflow-y: auto;
overflow-x: hidden;
border-bottom: 1px solid grey;
}
#msgInputDiv {
height: 15px;
position:relative;
}
#msgInput {
width: 85%;
margin-right: 5px;
margin-top: 15px;
position:relative;
}
#msgSubmit {
width: 14%;
position:relative;
}
.msgDiv {
width: 100%;
max-width:650px;
width: expression(this.width > 650 ? 650: true);max-height:400px;
height: expression(this.width > 400 ? 400: true);}
#userList {
overflow: auto;
border: 1px solid blue;
height: 80%;
margin: 0px;
position: fixed;
padding: 5px;
width: 10%;
right: 3%;
}
|