-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
index.css
110 lines (92 loc) · 1.38 KB
/
index.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 20px;
background: #ebeaeb;
color: #0a0a0a;
font-size: 16px;
}
body, textarea {
font-family: Helvetica,sans-serif;
line-height: 1.4;
}
textarea {
font-size: 15px;
}
a {
text-decoration: none;
}
.ribbon {
position: absolute;
top: 0;
right: 0;
border: 0;
}
.app {
margin: 0 auto;
max-width: 700px;
}
.post__header {
margin: 0 0 20px 0;
text-align: center;
}
.post__body {
margin-bottom: 20px;
}
.comments {
font-size: 15px;
}
.comment {
margin-bottom: 20px;
padding: 6px 10px;
background: #e4e1e5;
border-radius: 4px;
box-shadow: 1px 1px 4px 0 rgba(59,26,84,.6);
}
.comment__header {
margin-bottom: 3px;
}
.comment__id {
display: inline-block;
margin: 0;
margin-right: 5px;
cursor: default;
user-select: none;
}
.comment__record {
font-size: 20px;
line-height: 17px;
color: #00f;
cursor: pointer;
}
.comment__record:hover {
color: #f00;
}
.comment__body {
margin: 0;
white-space: pre;
}
.reply {
padding: 6px 10px;
background: #e4e1e5;
border-radius: 4px;
box-shadow: 1px 1px 4px 0 rgba(59,26,84,.6);
}
.reply__body {
width: 100%;
height: 80px;
background: none;
border: none;
padding: 0;
resize: none;
outline: none;
}
.reply-control {
margin-right: 5px;
cursor: pointer;
}
.reply-control:disabled {
cursor: default;
}
.reply-record {
cursor: default;
user-select: none;
}