-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCommentItem.css
More file actions
68 lines (51 loc) · 855 Bytes
/
CommentItem.css
File metadata and controls
68 lines (51 loc) · 855 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
58
59
60
61
62
63
64
65
66
67
68
.comment-single {
position: relative;
display: flex;
margin: 15px;
padding: 15px;
background-color: #ccc;
border-radius: 20px;
}
.btn-delete {
position: absolute;
width: 20px;
height: 20px;
right: 20px;
top: 10px;
font-size: 15px;
border: 0;
background-color: transparent;
}
.btn-delete:hover {
cursor: pointer;
font-weight: bold;
}
.comment-data {
display: flex;
flex-direction: column;
}
.comment-single:hover {
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.comment-single h3 {
display: flex;
align-items: center;
margin-right: 20px;
}
.comment-date {
margin-bottom: 6px;
font-size: 12px;
}
.comment-text {
padding-bottom: 6px;
}
.btn-edit {
width: fit-content;
background-color: transparent;
border: 0;
text-align: left;
cursor: pointer;
}
.btn-edit:hover {
font-weight: bold;
}