blob: e2f382c87b00fd86834a9aae334e776d85d7a5bc (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* pichat.css */
html, body {
padding: 1em;
}
#content {
position:absolute;
z-index:3;
}
#chatbox {
position: fixed;
top:48px;
}
h1,h2 {
font: 100% 'helvetica neue',sans-serif;
letter-spacing:10px;
text-transform:uppercase;
font-family: Arial, Helvetica, sans-serif;
font-size: 9px;
top:35px;
position: fixed;
}
#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 img {
max-width: 650px;
width: expression(this.width > 650 ? 650: true);
max-height:400px;
height: expression(this.width > 400 ? 400: true);
max-width:400px;
}
#userList {
overflow: auto;
border: 1px solid blue;
height: 80%;
margin: 0px;
position: fixed;
padding: 5px;
width: 10%;
right: 3%;
}
|