-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomments.css
More file actions
154 lines (136 loc) · 3.15 KB
/
Copy pathcomments.css
File metadata and controls
154 lines (136 loc) · 3.15 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
# Comments
```
<div class="comments-container">
<span class="comments-title">Comments</span>
<span class="markdown-help">Markdown help</span>
<div style="clear: both;"></div>
<div class="comment-box">
<form class="" style="">
<a href="thomasdavis"><img class="comment-profile" src="http://www.gravatar.com/avatar/cff733cf90823edd218a834980379c61.jpg?d=wavatar"></a>
<div class="comment-text">
<textarea placeholder="Add a comment" class="comment-input input-xlarge" id="input01"></textarea>
</div>
<a href="" style="display: none;" class="btn btn-regular add-comment">Add Comment</a>
</form>
<div style="clear: both;"></div>
</div>
<div class="comments-list-container">
<ul class="comments">
<li>
<a href="thomasdavis"><img class="comment-profile" src="http://www.gravatar.com/avatar/cff733cf90823edd218a834980379c61?d=wavatar"></a>
<div class="comment-content">
<a href="thomasdavis" class="comment-username">thomasdavis</a>
<p class="comment-message">Overviews can now have comments</p>
<p class="timeago" title="2012-11-19T03:51:39.313Z">about 3 hours</p>
</div>
<div style="clear: both;"></div>
</li>
<li>
<a href="thomasdavis"><img class="comment-profile" src="http://www.gravatar.com/avatar/cff733cf90823edd218a834980379c61?d=wavatar"></a>
<div class="comment-content">
<a href="thomasdavis" class="comment-username">thomasdavis</a>
<p class="comment-message">asdasd</p>
<p class="timeago" title="2012-11-19T03:51:27.491Z">about 3 hours</p>
</div>
<div style="clear: both;"></div>
</li>
</ul></div>
</div>
```
.comment-heading {
padding-bottom: 15px;
}
*/
.comments-title {
margin: 0;
display: inline-block;
font-size: 24px;
float: left;
}
.markdown-help {
float: right;
font-size: 12px;
color: #39f;
line-height: 35px;
cursor: pointer;
}
.markdown-help:hover {
text-decoration: underline;
}
.comment-box {
padding: 30px 15px 30px 15px;
border-top: 1px solid #CCC;
}
.comment-profile {
float: left;
width: 60px;
padding: 1px;
border: 1px solid #ccc;
}
.comment-text {
width: 400px;
float: left;
margin-left: 20px;
}
.comment-input {
border: 1px solid #ccc;
padding: 10px;
vertical-align: top;
height: 40px;
width: 540px;
font-size: 14px;
}
.add-comment {
float: left;
margin-left: 85px;
}
.comment-username {
color: #4a92fd;
text-decoration: none;
}
.comment-username:hover {
text-decoration: underline;
}
.comment-input:focus {
}
.comments {
list-style: none;
margin: 0;
padding: 0;
}
.comments li {
padding: 30px 15px 30px 15px;
border-top: 1px solid #ccc;
}
.comment-content {
margin-left: 15px;
float: left;
width: 505px;
}
.comment-message {
line-height: 22px;
letter-spacing: 0px;
}
.dateposted {
color: #6b6d70;
font-size: 12px;
margin-bottom: 0;
}
::-webkit-input-placeholder {
font-size: 14px;
font-style: italic;
}
.comments-list {
list-style: none;
padding: 0;
margin: 0;
}
.comments-list > li {
margin-bottom: 20px;
}
.comment {
float: left;
width: 800px;
margin-left: 20px;
}