blob: 61d4d0dc5bd89573dec8fee791828899a4fbd069 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
oom-comments {
display: block;
/*padding: 2em;*/
}
oom-comments ul {
list-style: none;
margin: 0;
padding: 0;
}
oom-comments li {
margin: 32px 0;
}
oom-comments article {
max-width: 600px;
}
oom-comments ul ul {
margin-left: 64px;
}
oom-comments .comment-avatar {
width: 50px;
height: 50px;
border-radius: 6px;
float: left;
margin-right: 14px;
box-shadow: 0 0 1px #0009;
}
oom-comments .comment-user {
color: currentColor;
text-decoration: none;
display: block;
position: relative;
}
oom-comments .comment-author {
position: absolute;
left: 35px;
top: 35px;
background: white;
border-radius: 50%;
width: 20px;
height: 20px;
color: gray;
}
oom-comments .comment-user:hover .comment-username {
text-decoration: underline;
}
oom-comments .comment-username {
margin-right: 0.5em;
}
oom-comments .comment-useraddress {
color: gray;
font-size: small;
font-style: normal;
}
oom-comments .comment-time {
font-size: small;
display: flex;
align-items: center;
column-gap: 0.4em;
}
oom-comments .comment-time svg {
width: 1em;
height: 1em;
fill: gray;
}
oom-comments .comment-address {
color: currentColor;
text-decoration: none;
display: block;
margin-top: 0.25em;
}
oom-comments .comment-address:hover {
text-decoration: underline;
}
oom-comments .comment-body {
margin-top: 0.5em;
margin-left: 64px;
line-height: 1.5;
}
oom-comments .comment-body p {
margin: 0.5em 0;
}
oom-comments .comment-counts {
display: flex;
column-gap: 1em;
font-size: small;
}
oom-comments .comment-counts > span {
display: flex;
align-items: center;
column-gap: 0.3em;
color: gray;
}
|