summaryrefslogtreecommitdiff
path: root/assets/css/comment.css
blob: 15b3709180592bcd6eb53d76daadbbbf5e11a9e8 (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
/* comments */
.comment {
    margin-bottom: 20px;
}

.comment:hover {
    background: #F7F8E0;
}

.comment-inner {
    border-left: 4px solid #333;
    padding-bottom: 10px;
    padding-left: 20px;
    margin-left: 20px;
    margin-right: 10px;
}

.comment-preview {
    border: 2px solid #000;
    border-radius: 3px;
    padding: 10px;
}

.comment-preview .comment-inner {
    border: none;
    padding: 0;
    margin: 0;
}

.comment-title {
    margin-bottom: 8px;
    padding-bottom: 3px;
    border-bottom: 1px dotted #aaa;
}

.comment-actions {
    font-size: 0.8em;
    padding: 0;
    text-align: right;
}

.comment-actions li {
    display: inline;
    padding-left: 5px;
    padding-right: 5px;
    border-right: 1px dotted #000;
}

.comment-actions li:last-child {
    padding-right: 0;
    border: 0;
}

.comment-username {
    font-weight: bold;
}

.comment-textarea {
    height: 200px;
    width: 80%;
    max-width: 800px;
}

#comments .comment-textarea {
    height: 80px;
    width: 500px;
}