Skip to content

Commit 6b95192

Browse files
committed
Re-add inadvertently removed blog.css
1 parent 7468228 commit 6b95192

File tree

1 file changed

+309
-0
lines changed

1 file changed

+309
-0
lines changed

jquery/css/blog.css

Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
2+
.alignright {
3+
float: right;
4+
}
5+
.alignleft {
6+
float: left;
7+
}
8+
9+
.entry-posted {
10+
color: #999;
11+
font-size: 12px;
12+
}
13+
14+
/* =Comments
15+
----------------------------------------------- */
16+
17+
#comments-title {
18+
color: #666;
19+
font-size: 10px;
20+
font-weight: 500;
21+
line-height: 2.6em;
22+
padding: 0 0 2.6em;
23+
text-transform: uppercase;
24+
}
25+
.nopassword,
26+
.nocomments {
27+
color: #aaa;
28+
font-size: 24px;
29+
font-weight: 100;
30+
margin: 26px 0;
31+
text-align: center;
32+
}
33+
.commentlist {
34+
list-style: none;
35+
margin: 0 auto;
36+
}
37+
.content .commentlist,
38+
.page-template-sidebar-page-php .commentlist {
39+
width: 100%; /* reset the width for the one-column and sidebar page layout */
40+
}
41+
#content .commentlist > li.comment {
42+
background: #f6f6f6;
43+
border: 1px solid #ddd;
44+
-moz-border-radius: 3px;
45+
border-radius: 3px;
46+
margin: 0 0 1.625em 50px;
47+
padding: 1.625em;
48+
position: relative;
49+
}
50+
.commentlist .pingback {
51+
margin: 0 0 1.625em;
52+
padding: 0 1.625em;
53+
}
54+
.commentlist .children {
55+
list-style: none;
56+
margin: 0;
57+
}
58+
.commentlist .children li.comment {
59+
background: #fff;
60+
border-left: 1px solid #ddd;
61+
-moz-border-radius: 0 3px 3px 0;
62+
border-radius: 0 3px 3px 0;
63+
margin: 1.625em 0 0;
64+
padding: 1.625em;
65+
position: relative;
66+
}
67+
.commentlist .children li.comment .fn {
68+
display: block;
69+
}
70+
.comment-meta .fn {
71+
font-style: normal;
72+
}
73+
.comment-meta {
74+
color: #666;
75+
font-size: 12px;
76+
line-height: 2.2em;
77+
}
78+
.commentlist .children li.comment .comment-meta {
79+
line-height: 1.625em;
80+
margin-left: 50px;
81+
}
82+
.commentlist .children li.comment .comment-content {
83+
margin: 1.625em 0 0;
84+
-ms-word-break: break-all;
85+
word-break: break-all;
86+
word-break: break-word;
87+
-webkit-hyphens: auto;
88+
-moz-hyphens: auto;
89+
hyphens: auto;
90+
}
91+
.comment-meta a {
92+
font-weight: bold;
93+
}
94+
.comment-meta a:focus,
95+
.comment-meta a:active,
96+
.comment-meta a:hover {
97+
}
98+
.commentlist .avatar {
99+
-moz-border-radius: 3px;
100+
border-radius: 3px;
101+
-webkit-box-shadow: 0 1px 2px #ccc;
102+
-moz-box-shadow: 0 1px 2px #ccc;
103+
box-shadow: 0 1px 2px #ccc;
104+
left: -102px;
105+
padding: 0;
106+
position: absolute;
107+
top: 0;
108+
}
109+
.commentlist > li:before {
110+
content: url(images/comment-arrow.png);
111+
left: -21px;
112+
position: absolute;
113+
}
114+
.commentlist > li.pingback:before {
115+
content: '';
116+
}
117+
.commentlist .children .avatar {
118+
background: none;
119+
-webkit-box-shadow: none;
120+
-moz-box-shadow: none;
121+
box-shadow: none;
122+
left: 2.2em;
123+
padding: 0;
124+
top: 2.2em;
125+
}
126+
a.comment-reply-link {
127+
background: #eee;
128+
-moz-border-radius: 3px;
129+
border-radius: 3px;
130+
color: #666;
131+
display: inline-block;
132+
font-size: 12px;
133+
padding: 0 8px;
134+
text-decoration: none;
135+
}
136+
a.comment-reply-link:hover,
137+
a.comment-reply-link:focus,
138+
a.comment-reply-link:active {
139+
background: #888;
140+
color: #fff;
141+
}
142+
a.comment-reply-link > span {
143+
display: inline-block;
144+
position: relative;
145+
top: -1px;
146+
}
147+
148+
/* Post author highlighting */
149+
.commentlist > li.bypostauthor {
150+
background: #ddd;
151+
border-color: #d3d3d3;
152+
}
153+
.commentlist > li.bypostauthor .comment-meta {
154+
color: #575757;
155+
}
156+
.commentlist > li.bypostauthor .comment-meta a:focus,
157+
.commentlist > li.bypostauthor .comment-meta a:active,
158+
.commentlist > li.bypostauthor .comment-meta a:hover {
159+
}
160+
.commentlist > li.bypostauthor:before {
161+
content: url(images/comment-arrow-bypostauthor.png);
162+
}
163+
164+
/* Post Author threaded comments */
165+
.commentlist .children > li.bypostauthor {
166+
background: #ddd;
167+
border-color: #d3d3d3;
168+
}
169+
170+
/* sidebar-page.php comments */
171+
/* Make sure we have room for our comment avatars */
172+
.page-template-sidebar-page-php .commentlist > li.comment,
173+
.page-template-sidebar-page-php.commentlist .pingback {
174+
margin-left: 102px;
175+
width: auto;
176+
}
177+
/* And a full-width comment form */
178+
.page-template-sidebar-page-php #respond {
179+
width: auto;
180+
}
181+
182+
/* Comment Form */
183+
#respond {
184+
background: #ddd;
185+
border: 1px solid #d3d3d3;
186+
-moz-border-radius: 3px;
187+
border-radius: 3px;
188+
margin: 0 auto 1.625em;
189+
padding: 1.625em;
190+
position: relative;
191+
}
192+
#respond input[type="text"],
193+
#respond textarea {
194+
background: #fff;
195+
border: 4px solid #eee;
196+
-moz-border-radius: 5px;
197+
border-radius: 5px;
198+
-webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
199+
-moz-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
200+
box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
201+
position: relative;
202+
padding: 10px;
203+
}
204+
#respond .comment-form-author,
205+
#respond .comment-form-email,
206+
#respond .comment-form-url,
207+
#respond .comment-form-comment {
208+
position: relative;
209+
}
210+
#respond textarea {
211+
resize: vertical;
212+
width: 95%;
213+
}
214+
#respond .comment-form-author .required,
215+
#respond .comment-form-email .required {
216+
color: #bd3500;
217+
font-size: 22px;
218+
font-weight: bold;
219+
left: -13px;
220+
top: 6px;
221+
position: absolute;
222+
z-index: 1;
223+
}
224+
#respond .comment-notes,
225+
#respond .logged-in-as {
226+
font-size: 13px;
227+
}
228+
#respond p {
229+
margin: 10px 0;
230+
}
231+
#respond .form-submit {
232+
float: right;
233+
margin: -20px 0 10px;
234+
}
235+
#respond input#submit {
236+
background: #222;
237+
border: none;
238+
-moz-border-radius: 3px;
239+
border-radius: 3px;
240+
-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
241+
-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
242+
box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
243+
color: #eee;
244+
cursor: pointer;
245+
font-size: 15px;
246+
margin: 20px 0;
247+
padding: 5px 42px 5px 22px;
248+
position: relative;
249+
left: 20px;
250+
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
251+
}
252+
#respond input#submit:active {
253+
background: #1982d1;
254+
color: #bfddf3;
255+
}
256+
#respond #cancel-comment-reply-link {
257+
color: #666;
258+
margin-left: 10px;
259+
text-decoration: none;
260+
}
261+
#respond .logged-in-as a:hover,
262+
#respond #cancel-comment-reply-link:hover {
263+
text-decoration: underline;
264+
}
265+
.commentlist #respond {
266+
margin: 1.625em 0 0;
267+
width: auto;
268+
}
269+
#reply-title {
270+
color: #373737;
271+
font-size: 24px;
272+
font-weight: bold;
273+
line-height: 30px;
274+
}
275+
#cancel-comment-reply-link {
276+
color: #888;
277+
display: block;
278+
font-size: 10px;
279+
font-weight: normal;
280+
line-height: 2.2em;
281+
letter-spacing: 0.05em;
282+
position: absolute;
283+
right: 1.625em;
284+
text-decoration: none;
285+
text-transform: uppercase;
286+
top: 1.1em;
287+
}
288+
#cancel-comment-reply-link:focus,
289+
#cancel-comment-reply-link:active,
290+
#cancel-comment-reply-link:hover {
291+
color: #ff4b33;
292+
}
293+
#respond label {
294+
line-height: 2.2em;
295+
}
296+
#respond input[type=text] {
297+
display: block;
298+
height: 24px;
299+
width: 75%;
300+
}
301+
#respond p {
302+
font-size: 12px;
303+
}
304+
p.comment-form-comment {
305+
margin: 0;
306+
}
307+
.form-allowed-tags {
308+
display: none;
309+
}

0 commit comments

Comments
 (0)