-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCommentEdit.css
More file actions
59 lines (52 loc) · 877 Bytes
/
CommentEdit.css
File metadata and controls
59 lines (52 loc) · 877 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
.form {
display: none;
background: #FAFAFA;
padding: 32px 0;
border: 1px solid #eee;
border-radius: 4px;
}
.form-content{
width: 100%;
max-width: 600px;
margin: auto;
font-size: 14px;
}
.form-title{
font-size: 16px;
font-weight: 700;
margin-bottom: 16px;
color: #757575;
}
.form-field{
width: 100%;
margin-bottom: 16px;
font-family: 'Lato', sans-serif;
font-size: 16px;
line-height: normal;
padding: 12px 16px;
border-radius: 4px;
border: 1px solid #ddd;
outline: none;
color: #212121;
}
textarea {
min-height: 200px;
}
.post-submit-button {
display: inline-block;
padding: 8px 16px;
font-size: 18px;
color: #FFF;
background: #03A9F4;
text-decoration: none;
border-radius: 4px;
}
.appear {
display: block;
}
.comment-edit {
color: #555;
text-decoration: none;
font-size: 14px;
font-style: italic;
}