forked from svivian/q2a-chat-room
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
57 lines (52 loc) · 779 Bytes
/
Copy pathsample.css
File metadata and controls
57 lines (52 loc) · 779 Bytes
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
/* Q2A Chat Room plugin */
#qa-chat-form {
text-align: center;
}
.qa-chat-post {
width: 600px;
}
#qa-chat-list,
.qa-chat-item,
#qa-chat-user-list,
.qa-chat-user-item {
display: block;
list-style: none;
margin: 0;
padding: 0;
font-size: 13px;
}
#qa-chat-list {
width: 728px;
margin: 1em auto;
}
.qa-chat-item {
overflow: hidden;
padding: 4px 0;
border-top: 1px solid #eee;
}
.qa-chat-item:last-child {
border-bottom: 1px solid #eee;
}
.qa-chat-item-meta {
float: left;
width: 140px;
padding-right: 20px;
font-size: 11px;
color: #999;
text-align: right;
}
.qa-chat-item-data {
float: left;
width: 568px;
}
#qa-chat-user-list {
width: 204px;
margin-top: 5px;
}
.qa-chat-user-item {
padding: 2px 4px;
}
.qa-chat-idle,
.qa-chat-idle > a {
color: #aaa;
}