summaryrefslogtreecommitdiff
path: root/assets/css/src/comment.css
blob: 91dfd107539311d71c0977ef4f0e7cb08b30c171 (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
68
69
70
/* sorting */
.comment-sorting {
    text-align: right;
    font-size: 0.5em;
}

.comment-sorting a {
    color: #555;
    font-weight: normal;
    text-decoration: none;
}

.comment-sorting a:hover {
    color: #aaa;
}

/* comment container */
.comment {
    padding: 5px;
    margin-bottom: 15px;
}

.comment:hover {
    background: #fafafa;
}

/* comment title */
.comment-title {
    border-bottom: 1px dotted #eee;
    margin-left: 55px;
    margin-bottom: 10px;
}

.comment-username {
    font-weight: bold;
    font-size: 1.1em;
}

.comment-date {
    color: #999;
    font-size: 0.7em;
    font-weight: 200;
}

/* comment actions */
.comment-actions {
    font-size: 0.8em;
    margin-left: 55px;
    margin-top: 8px;
}

.comment-actions li {
    display: inline;
}

.comment-actions a {
    color: #999;
    text-decoration: none;
}

.comment-actions a:focus,
.comment-actions a:hover {
    color: #333;
    text-decoration: underline;
}

/* comment content */
.comment-content {
    margin-left: 55px;
}