-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCommentListItem.css
More file actions
81 lines (69 loc) · 1.17 KB
/
CommentListItem.css
File metadata and controls
81 lines (69 loc) · 1.17 KB
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
.single-comment {
display: flex;
flex-direction: column;
align-items: flex-end;
margin: 20px 0;
padding: 10px 25px;
border-radius: 2px;
color: #757575;
}
.single-comment div {
display: flex;
justify-content: space-between;
width: 100%;
}
.comment-date {
font-size: 16px;
}
.author-name {
font-size: 16px;
margin-bottom: 16px;
}
.form-field{
width: 100%;
min-height: 120px;
margin-bottom: 12px;
font-family: 'Lato', sans-serif;
font-size: 13px;
line-height: normal;
padding: 6px 10px;
border-radius: 4px;
border: 1px solid #ddd;
outline: none;
color: #212121;
}
.comment-button {
display: inline-block;
padding: 6px 10px;
font-size: 14px;
color: #FFF;
text-decoration: none;
border-radius: 4px;
}
.comment-submit-button {
background: #03A9F4;
}
.comment-cancel-button {
background: #9a533c;
}
.comment-desc {
font-size: 14px;
color: #888;
margin-bottom: 8px;
}
.post-actions {
display: flex;
justify-content: space-between;
}
.comment-action a{
color: #555;
text-decoration: none;
font-size: 14px;
font-style: italic;
}
.comment-delete a:hover{
color: #EF5350;
}
.comment-edit a:hover{
color: #4db258;
}