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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
.chatInputMessage {
font-family:Comic Sans MS, Comic Sans MS5, cursive;
border: 1px solid gray;
background-color:#999;
width: 700px;
margin: 7px;
padding: 2px;
border-radius: 10px;
border-bottom-right-radius: 20px;
border-top-right-radius: 20px;
}
.chatButton {
margin: 4px;
}
#chatContainer {
width:800px;
margin:0 auto;
height:400px;
overflow:auto;
}
#sendChat {
margin-left: 10px;
}
.chatBadge {
height:100%;
float:left;
}
.chatUsername {
font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif;
font-size: 17px;
text-overflow: ellipsis;
overflow:hidden;
float: left;
padding-top: 5px;
width: 115px;
}
.chatText {
font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif;
font-size: 16px;
display: inline-block;
width: 525px;
padding: 5px 5px 5px 5px;
}
.chatTimestamp {
font-family:"Times New Roman", Times, serif;
float:left;
padding: 5px 3px 3px 3px;
min-width:70px;
overflow:hidden;
text-overflow: ellipsis;
white-space:nowrap;
}
.chatColumn1 {
width:120px;
min-height: 35px;
padding-left: 7px;
position:absolute;
left:0;top:0;bottom:0;
}
.chatColumn2 {
text-align:left;
margin-left:130px;
min-height: 35px;
}
.chatMessage {
width:780px;
min-height:35px;
margin:1px;
display:block;
clear:both;
margin-bottom:3px;
position:relative;
background-color:#333;
border-radius:20px;
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
}
.chatMessage.self {
background-color: #444;
}
.chatContainer2 {
background-color: #222;
border-radius: 12px;
width:810px;
margin:0 auto 5px;
height:450px;
overflow:auto;
background: rgb(34,34,34); /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, rgba(34,34,34,1) 0%, rgba(119,119,119,1) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(34,34,34,1)), color-stop(100%,rgba(119,119,119,1))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, rgba(34,34,34,1) 0%,rgba(119,119,119,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, rgba(34,34,34,1) 0%,rgba(119,119,119,1) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, rgba(34,34,34,1) 0%,rgba(119,119,119,1) 100%); /* IE10+ */
background: radial-gradient(ellipse at center, rgba(34,34,34,1) 0%,rgba(119,119,119,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#777777',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
|