-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.css
120 lines (110 loc) · 2.14 KB
/
chat.css
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
118
119
120
#chatWindow {
height:400px;
overflow:scroll;
width:700px;
margin:0px auto;
text-align:left;
background-color:#EAEBF8;
border:1px solid #BBBBBC;
}
#chatWindow.transcript {
height:inherit;
overflow:visible;
}
#chatWindow p {
padding: 0px;
margin: 0px;
}
#chatWindow div {
background-color:#ffffff;
border:1px solid #BBBBBC;
margin: 15px;
padding:5px 10px 5px 10px;
}
#chatWindow .question {
background:url(images/question.gif) no-repeat top right #FFFFFF;
}
#chatWindow .comment {
background:url(images/comment.gif) no-repeat top right #FFFFFF;
}
#chatWindow .what {
color:#061141;
font-size:15px;
font-weight:bold;
}
#chatWindow .who {
background:url(images/posted.gif) no-repeat left;
padding-left:12px;
font-size:10px;
font-weight:bold;
color:#4E789E;
}
#chatWindow .content {
padding:5px 0px 5px 10px;
font-size:12px;
}
#submitContentContainer {
width:700px;
margin:10px auto 0px auto;
padding:0px;
font-size:10px;
font-weight:bold;
color:#061141;
}
#submitContentForm {
padding:0px;
margin:0px;
}
#submitContentForm input input.text, textarea {
font-size:12px;
line-height:1.3em;
border-top:1px solid #7c7c7c;
border-left:1px solid #c3c3c3;
border-right:1px solid #c3c3c3;
border-bottom:1px solid #ddd;
background:#fff url(images/fieldbg.gif) repeat-x top;
}
#submitContentForm input {
width:45px;
}
#submitContentForm textarea {
width: 635px;
height: 75px;
}
#myDataContainer {
width:700px;
margin:0px auto;
text-align:left;
background-color:#EAEBF8;
border:1px solid #BBBBBC;
}
#myDataContainer div {
background-color:#ffffff;
border:1px solid #BBBBBC;
margin: 10px;
padding:5px 10px 5px 10px;
overflow:auto;
}
#myData p {
padding: 0px;
margin: 0px;
}
#myData .who {
background:url(images/youSubmitted.gif) no-repeat left;
padding-left:12px;
font-size:10px;
font-weight:bold;
color:#4E789E;
}
#myData .status {
background:url(images/status.gif) no-repeat left;
padding-left:12px;
font-size:10px;
font-weight:bold;
color:#4E789E;
}
#myData .content {
padding:5px 0px 5px 10px;
font-size:12px;
font-weight:normal;
}