blob: 552422b8f7426dffb72deb0600fe8ac0e3b7a847 (
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
|
#comments-container {
width: 1100px;
}
#content-wrapper {
max-width: 97%;
}
.accordion-inner {
background: #f5f5f5;
}
#new-comment-form,
#recent-comments-wrapper {
min-height: 300px;
}
#new-comment-form input[type=text],
#new-reply-form input[type=text],
#new-comment-form textarea,
#new-reply-form textarea {
width: 80%;
}
#new-comment-form textarea,
#new-reply-form textarea {
height: 100px;
}
.replies {
margin-left: 15px;
}
.replies .reply {
padding: 3px;
margin: 5px 0;
background: #ffffff;
border-left: 2px solid #1dccaa;
}
.replies .reply small {
display: block;
line-height: 20px;
color: #b4bcc2;
}
.replies .reply p {
margin-bottom: .6em;
}
|