author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
child 10 | 372f2766ea20 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
2 |
Theme Name: Twenty Thirteen |
|
5 | 3 |
Theme URI: https://wordpress.org/themes/twentythirteen/ |
0 | 4 |
Author: the WordPress team |
5 | 5 |
Author URI: https://wordpress.org/ |
0 | 6 |
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
7 |
Version: 2.4 |
0 | 8 |
License: GNU General Public License v2 or later |
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready |
0 | 11 |
Text Domain: twentythirteen |
12 |
||
13 |
This theme, like WordPress, is licensed under the GPL. |
|
14 |
Use it to make something cool, have fun, and share what you've learned with others. |
|
15 |
*/ |
|
16 |
||
17 |
||
18 |
/** |
|
19 |
* Table of Contents: |
|
20 |
* |
|
21 |
* 1.0 - Reset |
|
22 |
* 2.0 - Repeatable Patterns |
|
23 |
* 3.0 - Basic Structure |
|
24 |
* 4.0 - Header |
|
25 |
* 4.1 - Site Header |
|
26 |
* 4.2 - Navigation |
|
27 |
* 5.0 - Content |
|
28 |
* 5.1 - Entry Header |
|
29 |
* 5.2 - Entry Meta |
|
30 |
* 5.3 - Entry Content |
|
31 |
* 5.4 - Galleries |
|
32 |
* 5.5 - Post Formats |
|
33 |
* 5.6 - Attachments |
|
34 |
* 5.7 - Post/Paging Navigation |
|
35 |
* 5.8 - Author Bio |
|
36 |
* 5.9 - Archives |
|
37 |
* 5.10 - Search Results/No posts |
|
38 |
* 5.11 - 404 |
|
39 |
* 5.12 - Comments |
|
40 |
* 5.13 - Multisite |
|
41 |
* 6.0 - Sidebar |
|
42 |
* 6.1 - Widgets |
|
43 |
* 7.0 - Footer |
|
44 |
* 8.0 - Media Queries |
|
45 |
* 9.0 - Print |
|
46 |
* ---------------------------------------------------------------------------- |
|
47 |
*/ |
|
48 |
||
49 |
||
50 |
/** |
|
51 |
* 1.0 Reset |
|
52 |
* |
|
53 |
* Modified from Normalize.css to provide cross-browser consistency and a smart |
|
54 |
* default styling of HTML elements. |
|
55 |
* |
|
56 |
* @see http://git.io/normalize |
|
57 |
* ---------------------------------------------------------------------------- |
|
58 |
*/ |
|
59 |
||
60 |
* { |
|
61 |
-webkit-box-sizing: border-box; |
|
62 |
-moz-box-sizing: border-box; |
|
63 |
box-sizing: border-box; |
|
64 |
} |
|
65 |
||
66 |
article, |
|
67 |
aside, |
|
68 |
details, |
|
69 |
figcaption, |
|
70 |
figure, |
|
71 |
footer, |
|
72 |
header, |
|
73 |
nav, |
|
74 |
section, |
|
75 |
summary { |
|
76 |
display: block; |
|
77 |
} |
|
78 |
||
79 |
audio, |
|
80 |
canvas, |
|
81 |
video { |
|
82 |
display: inline-block; |
|
83 |
} |
|
84 |
||
85 |
audio:not([controls]) { |
|
86 |
display: none; |
|
87 |
height: 0; |
|
88 |
} |
|
89 |
||
90 |
[hidden] { |
|
91 |
display: none; |
|
92 |
} |
|
93 |
||
94 |
html { |
|
95 |
font-size: 100%; |
|
96 |
overflow-y: scroll; |
|
97 |
-webkit-text-size-adjust: 100%; |
|
98 |
-ms-text-size-adjust: 100%; |
|
99 |
} |
|
100 |
||
101 |
html, |
|
102 |
button, |
|
103 |
input, |
|
104 |
select, |
|
105 |
textarea { |
|
106 |
font-family: "Source Sans Pro", Helvetica, sans-serif; |
|
107 |
} |
|
108 |
||
109 |
body { |
|
110 |
color: #141412; |
|
111 |
line-height: 1.5; |
|
112 |
margin: 0; |
|
113 |
} |
|
114 |
||
115 |
a { |
|
116 |
color: #ca3c08; |
|
117 |
text-decoration: none; |
|
118 |
} |
|
119 |
||
120 |
a:visited { |
|
121 |
color: #ac0404; |
|
122 |
} |
|
123 |
||
124 |
a:focus { |
|
125 |
outline: thin dotted; |
|
126 |
} |
|
127 |
||
128 |
a:active, |
|
129 |
a:hover { |
|
130 |
color: #ea9629; |
|
131 |
outline: 0; |
|
132 |
} |
|
133 |
||
134 |
a:hover { |
|
135 |
text-decoration: underline; |
|
136 |
} |
|
137 |
||
138 |
h1, |
|
139 |
h2, |
|
140 |
h3, |
|
141 |
h4, |
|
142 |
h5, |
|
143 |
h6 { |
|
144 |
clear: both; |
|
145 |
font-family: Bitter, Georgia, serif; |
|
146 |
line-height: 1.3; |
|
147 |
} |
|
148 |
||
149 |
h1 { |
|
150 |
font-size: 48px; |
|
151 |
margin: 33px 0; |
|
152 |
} |
|
153 |
||
154 |
h2 { |
|
155 |
font-size: 30px; |
|
156 |
margin: 25px 0; |
|
157 |
} |
|
158 |
||
159 |
h3 { |
|
160 |
font-size: 22px; |
|
161 |
margin: 22px 0; |
|
162 |
} |
|
163 |
||
164 |
h4 { |
|
165 |
font-size: 20px; |
|
166 |
margin: 25px 0; |
|
167 |
} |
|
168 |
||
169 |
h5 { |
|
170 |
font-size: 18px; |
|
171 |
margin: 30px 0; |
|
172 |
} |
|
173 |
||
174 |
h6 { |
|
175 |
font-size: 16px; |
|
176 |
margin: 36px 0; |
|
177 |
} |
|
178 |
||
179 |
address { |
|
180 |
font-style: italic; |
|
181 |
margin: 0 0 24px; |
|
182 |
} |
|
183 |
||
184 |
abbr[title] { |
|
185 |
border-bottom: 1px dotted; |
|
186 |
} |
|
187 |
||
188 |
b, |
|
189 |
strong { |
|
190 |
font-weight: bold; |
|
191 |
} |
|
192 |
||
193 |
dfn { |
|
194 |
font-style: italic; |
|
195 |
} |
|
196 |
||
197 |
mark { |
|
198 |
background: #ff0; |
|
199 |
color: #000; |
|
200 |
} |
|
201 |
||
202 |
p { |
|
203 |
margin: 0 0 24px; |
|
204 |
} |
|
205 |
||
206 |
code, |
|
207 |
kbd, |
|
208 |
pre, |
|
209 |
samp { |
|
210 |
font-family: monospace, serif; |
|
211 |
font-size: 14px; |
|
212 |
-webkit-hyphens: none; |
|
213 |
-moz-hyphens: none; |
|
214 |
-ms-hyphens: none; |
|
215 |
hyphens: none; |
|
216 |
} |
|
217 |
||
218 |
pre { |
|
219 |
background: #f5f5f5; |
|
220 |
color: #666; |
|
221 |
font-family: monospace; |
|
222 |
font-size: 14px; |
|
223 |
margin: 20px 0; |
|
224 |
overflow: auto; |
|
225 |
padding: 20px; |
|
226 |
white-space: pre; |
|
227 |
white-space: pre-wrap; |
|
228 |
word-wrap: break-word; |
|
229 |
} |
|
230 |
||
231 |
blockquote, |
|
232 |
q { |
|
233 |
-webkit-hyphens: none; |
|
234 |
-moz-hyphens: none; |
|
235 |
-ms-hyphens: none; |
|
236 |
hyphens: none; |
|
237 |
quotes: none; |
|
238 |
} |
|
239 |
||
240 |
blockquote:before, |
|
241 |
blockquote:after, |
|
242 |
q:before, |
|
243 |
q:after { |
|
244 |
content: ""; |
|
245 |
content: none; |
|
246 |
} |
|
247 |
||
248 |
blockquote { |
|
249 |
font-size: 18px; |
|
250 |
font-style: italic; |
|
251 |
font-weight: 300; |
|
252 |
margin: 24px 40px; |
|
253 |
} |
|
254 |
||
255 |
blockquote blockquote { |
|
256 |
margin-right: 0; |
|
257 |
} |
|
258 |
||
259 |
blockquote cite, |
|
260 |
blockquote small { |
|
261 |
font-size: 14px; |
|
262 |
font-weight: normal; |
|
263 |
text-transform: uppercase; |
|
264 |
} |
|
265 |
||
266 |
blockquote em, |
|
267 |
blockquote i { |
|
268 |
font-style: normal; |
|
269 |
font-weight: 300; |
|
270 |
} |
|
271 |
||
272 |
blockquote strong, |
|
273 |
blockquote b { |
|
274 |
font-weight: 400; |
|
275 |
} |
|
276 |
||
277 |
small { |
|
278 |
font-size: smaller; |
|
279 |
} |
|
280 |
||
281 |
sub, |
|
282 |
sup { |
|
283 |
font-size: 75%; |
|
284 |
line-height: 0; |
|
285 |
position: relative; |
|
286 |
vertical-align: baseline; |
|
287 |
} |
|
288 |
||
289 |
sup { |
|
290 |
top: -0.5em; |
|
291 |
} |
|
292 |
||
293 |
sub { |
|
294 |
bottom: -0.25em; |
|
295 |
} |
|
296 |
||
297 |
dl { |
|
298 |
margin: 0 20px; |
|
299 |
} |
|
300 |
||
301 |
dt { |
|
302 |
font-weight: bold; |
|
303 |
} |
|
304 |
||
305 |
dd { |
|
306 |
margin: 0 0 20px; |
|
307 |
} |
|
308 |
||
309 |
menu, |
|
310 |
ol, |
|
311 |
ul { |
|
312 |
margin: 16px 0; |
|
313 |
padding: 0 0 0 40px; |
|
314 |
} |
|
315 |
||
316 |
ul { |
|
317 |
list-style-type: square; |
|
318 |
} |
|
319 |
||
320 |
nav ul, |
|
321 |
nav ol { |
|
322 |
list-style: none; |
|
323 |
list-style-image: none; |
|
324 |
} |
|
325 |
||
326 |
li > ul, |
|
327 |
li > ol { |
|
328 |
margin: 0; |
|
329 |
} |
|
330 |
||
331 |
img { |
|
332 |
-ms-interpolation-mode: bicubic; |
|
333 |
border: 0; |
|
334 |
vertical-align: middle; |
|
335 |
} |
|
336 |
||
337 |
svg:not(:root) { |
|
338 |
overflow: hidden; |
|
339 |
} |
|
340 |
||
341 |
figure { |
|
342 |
margin: 0; |
|
343 |
} |
|
344 |
||
345 |
form { |
|
346 |
margin: 0; |
|
347 |
} |
|
348 |
||
349 |
fieldset { |
|
350 |
border: 1px solid #c0c0c0; |
|
351 |
margin: 0 2px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
352 |
min-width: inherit; |
0 | 353 |
padding: 0.35em 0.625em 0.75em; |
354 |
} |
|
355 |
||
356 |
legend { |
|
357 |
border: 0; |
|
358 |
padding: 0; |
|
359 |
white-space: normal; |
|
360 |
} |
|
361 |
||
362 |
button, |
|
363 |
input, |
|
364 |
select, |
|
365 |
textarea { |
|
366 |
font-size: 100%; |
|
367 |
margin: 0; |
|
368 |
max-width: 100%; |
|
369 |
vertical-align: baseline; |
|
370 |
} |
|
371 |
||
372 |
button, |
|
373 |
input { |
|
374 |
line-height: normal; |
|
375 |
} |
|
376 |
||
377 |
button, |
|
378 |
html input[type="button"], |
|
379 |
input[type="reset"], |
|
380 |
input[type="submit"] { |
|
381 |
-webkit-appearance: button; |
|
382 |
cursor: pointer; |
|
383 |
} |
|
384 |
||
385 |
button[disabled], |
|
386 |
input[disabled] { |
|
387 |
cursor: default; |
|
388 |
} |
|
389 |
||
390 |
input[type="checkbox"], |
|
391 |
input[type="radio"] { |
|
392 |
padding: 0; |
|
393 |
} |
|
394 |
||
395 |
input[type="search"] { |
|
396 |
-webkit-appearance: textfield; |
|
397 |
padding-right: 2px; /* Don't cut off the webkit search cancel button */ |
|
398 |
width: 270px; |
|
399 |
} |
|
400 |
||
401 |
input[type="search"]::-webkit-search-decoration { |
|
402 |
-webkit-appearance: none; |
|
403 |
} |
|
404 |
||
405 |
button::-moz-focus-inner, |
|
406 |
input::-moz-focus-inner { |
|
407 |
border: 0; |
|
408 |
padding: 0; |
|
409 |
} |
|
410 |
||
411 |
textarea { |
|
412 |
overflow: auto; |
|
413 |
vertical-align: top; |
|
414 |
} |
|
415 |
||
416 |
table { |
|
417 |
border-bottom: 1px solid #ededed; |
|
418 |
border-collapse: collapse; |
|
419 |
border-spacing: 0; |
|
420 |
font-size: 14px; |
|
421 |
line-height: 2; |
|
422 |
margin: 0 0 20px; |
|
423 |
width: 100%; |
|
424 |
} |
|
425 |
||
426 |
caption, |
|
427 |
th, |
|
428 |
td { |
|
429 |
font-weight: normal; |
|
430 |
text-align: left; |
|
431 |
} |
|
432 |
||
433 |
caption { |
|
434 |
font-size: 16px; |
|
435 |
margin: 20px 0; |
|
436 |
} |
|
437 |
||
438 |
th { |
|
439 |
font-weight: bold; |
|
440 |
text-transform: uppercase; |
|
441 |
} |
|
442 |
||
443 |
td { |
|
444 |
border-top: 1px solid #ededed; |
|
445 |
padding: 6px 10px 6px 0; |
|
446 |
} |
|
447 |
||
448 |
del { |
|
449 |
color: #333; |
|
450 |
} |
|
451 |
||
452 |
ins { |
|
453 |
background: #fff9c0; |
|
454 |
text-decoration: none; |
|
455 |
} |
|
456 |
||
457 |
hr { |
|
458 |
background: url(images/dotted-line.png) repeat center top; |
|
459 |
background-size: 4px 4px; |
|
460 |
border: 0; |
|
461 |
height: 1px; |
|
462 |
margin: 0 0 24px; |
|
463 |
} |
|
464 |
||
465 |
||
466 |
/** |
|
467 |
* 2.0 Repeatable Patterns |
|
468 |
* ---------------------------------------------------------------------------- |
|
469 |
*/ |
|
470 |
||
471 |
.genericon:before, |
|
472 |
.menu-toggle:after, |
|
473 |
.featured-post:before, |
|
474 |
.date a:before, |
|
475 |
.entry-meta .author a:before, |
|
476 |
.format-audio .entry-content:before, |
|
477 |
.comments-link a:before, |
|
478 |
.tags-links a:first-child:before, |
|
479 |
.categories-links a:first-child:before, |
|
480 |
.edit-link a:before, |
|
481 |
.attachment .entry-title:before, |
|
482 |
.attachment-meta:before, |
|
483 |
.attachment-meta a:before, |
|
484 |
.comment-awaiting-moderation:before, |
|
485 |
.comment-reply-link:before, |
|
486 |
.comment-reply-login:before, |
|
487 |
.comment-reply-title small a:before, |
|
488 |
.bypostauthor > .comment-body .fn:before, |
|
489 |
.error404 .page-title:before { |
|
490 |
-webkit-font-smoothing: antialiased; |
|
491 |
display: inline-block; |
|
492 |
font: normal 16px/1 Genericons; |
|
493 |
vertical-align: text-bottom; |
|
494 |
} |
|
495 |
||
496 |
/* Clearing floats */ |
|
497 |
.clear:after, |
|
498 |
.attachment .entry-header:after, |
|
499 |
.site-footer .widget-area:after, |
|
500 |
.entry-content:after, |
|
501 |
.page-content:after, |
|
502 |
.navigation:after, |
|
503 |
.nav-links:after, |
|
504 |
.gallery:after, |
|
505 |
.comment-form-author:after, |
|
506 |
.comment-form-email:after, |
|
507 |
.comment-form-url:after, |
|
508 |
.comment-body:after { |
|
509 |
clear: both; |
|
510 |
} |
|
511 |
||
512 |
.clear:before, |
|
513 |
.clear:after, |
|
514 |
.attachment .entry-header:before, |
|
515 |
.attachment .entry-header:after, |
|
516 |
.site-footer .widget-area:before, |
|
517 |
.site-footer .widget-area:after, |
|
518 |
.entry-content:before, |
|
519 |
.entry-content:after, |
|
520 |
.page-content:before, |
|
521 |
.page-content:after, |
|
522 |
.navigation:before, |
|
523 |
.navigation:after, |
|
524 |
.nav-links:before, |
|
525 |
.nav-links:after, |
|
526 |
.gallery:before, |
|
527 |
.gallery:after, |
|
528 |
.comment-form-author:before, |
|
529 |
.comment-form-author:after, |
|
530 |
.comment-form-email:before, |
|
531 |
.comment-form-email:after, |
|
532 |
.comment-form-url:before, |
|
533 |
.comment-form-url:after, |
|
534 |
.comment-body:before, |
|
535 |
.comment-body:after { |
|
536 |
content: ""; |
|
537 |
display: table; |
|
538 |
} |
|
539 |
||
540 |
/* Assistive text */ |
|
541 |
.screen-reader-text { |
|
542 |
clip: rect(1px, 1px, 1px, 1px); |
|
5 | 543 |
overflow: hidden; |
0 | 544 |
position: absolute !important; |
5 | 545 |
height: 1px; |
546 |
width: 1px; |
|
0 | 547 |
} |
548 |
||
549 |
.screen-reader-text:focus { |
|
550 |
background-color: #f1f1f1; |
|
551 |
border-radius: 3px; |
|
552 |
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); |
|
553 |
clip: auto !important; |
|
554 |
color: #21759b; |
|
555 |
display: block; |
|
556 |
font-size: 14px; |
|
557 |
font-weight: bold; |
|
558 |
height: auto; |
|
559 |
line-height: normal; |
|
560 |
padding: 15px 23px 14px; |
|
561 |
position: absolute; |
|
562 |
left: 5px; |
|
563 |
top: 5px; |
|
564 |
text-decoration: none; |
|
565 |
width: auto; |
|
566 |
z-index: 100000; /* Above WP toolbar */ |
|
567 |
} |
|
568 |
||
569 |
/* Form fields, general styles first. */ |
|
570 |
button, |
|
571 |
input, |
|
572 |
textarea { |
|
573 |
border: 2px solid #d4d0ba; |
|
574 |
font-family: inherit; |
|
575 |
padding: 5px; |
|
576 |
} |
|
577 |
||
578 |
input, |
|
579 |
textarea { |
|
580 |
color: #141412; |
|
581 |
} |
|
582 |
||
583 |
input:focus, |
|
584 |
textarea:focus { |
|
585 |
border: 2px solid #c3c0ab; |
|
586 |
outline: 0; |
|
587 |
} |
|
588 |
||
589 |
/* Buttons */ |
|
590 |
button, |
|
591 |
input[type="submit"], |
|
592 |
input[type="button"], |
|
593 |
input[type="reset"] { |
|
594 |
background: #e05d22; /* Old browsers */ |
|
595 |
background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */ |
|
596 |
background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */ |
|
597 |
border: none; |
|
598 |
border-bottom: 3px solid #b93207; |
|
599 |
border-radius: 2px; |
|
600 |
color: #fff; |
|
601 |
display: inline-block; |
|
602 |
padding: 11px 24px 10px; |
|
603 |
text-decoration: none; |
|
604 |
} |
|
605 |
||
606 |
button:hover, |
|
607 |
button:focus, |
|
608 |
input[type="submit"]:hover, |
|
609 |
input[type="button"]:hover, |
|
610 |
input[type="reset"]:hover, |
|
611 |
input[type="submit"]:focus, |
|
612 |
input[type="button"]:focus, |
|
613 |
input[type="reset"]:focus { |
|
614 |
background: #ed6a31; /* Old browsers */ |
|
615 |
background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */ |
|
616 |
background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */ |
|
617 |
outline: none; |
|
618 |
} |
|
619 |
||
620 |
button:active, |
|
621 |
input[type="submit"]:active, |
|
622 |
input[type="button"]:active, |
|
623 |
input[type="reset"]:active { |
|
624 |
background: #d94412; /* Old browsers */ |
|
625 |
background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */ |
|
626 |
background: linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */ |
|
627 |
border: none; |
|
628 |
border-top: 3px solid #b93207; |
|
629 |
padding: 10px 24px 11px; |
|
630 |
} |
|
631 |
||
632 |
.post-password-required input[type="submit"] { |
|
633 |
padding: 7px 24px 4px; |
|
634 |
vertical-align: bottom; |
|
635 |
} |
|
636 |
||
637 |
.post-password-required input[type="submit"]:active { |
|
638 |
padding: 5px 24px 6px; |
|
639 |
} |
|
640 |
||
641 |
/* Placeholder text color -- selectors need to be separate to work. */ |
|
642 |
::-webkit-input-placeholder { |
|
643 |
color: #7d7b6d; |
|
644 |
} |
|
645 |
||
646 |
:-moz-placeholder { |
|
647 |
color: #7d7b6d; |
|
648 |
} |
|
649 |
||
650 |
::-moz-placeholder { |
|
651 |
color: #7d7b6d; |
|
652 |
} |
|
653 |
||
654 |
:-ms-input-placeholder { |
|
655 |
color: #7d7b6d; |
|
656 |
} |
|
657 |
||
658 |
/* |
|
659 |
* Responsive images |
|
660 |
* |
|
661 |
* Fluid images for posts, comments, and widgets |
|
662 |
*/ |
|
663 |
.entry-content img, |
|
664 |
.entry-summary img, |
|
665 |
.comment-content img, |
|
666 |
.widget img, |
|
667 |
.wp-caption { |
|
668 |
max-width: 100%; |
|
669 |
} |
|
670 |
||
671 |
/* Make sure images with WordPress-added height and width attributes are scaled correctly. */ |
|
672 |
.entry-content img, |
|
673 |
.entry-summary img, |
|
674 |
.comment-content img[height], |
|
675 |
img[class*="align"], |
|
676 |
img[class*="wp-image-"], |
|
677 |
img[class*="attachment-"] { |
|
678 |
height: auto; |
|
679 |
} |
|
680 |
||
681 |
img.size-full, |
|
682 |
img.size-large, |
|
683 |
img.wp-post-image { |
|
684 |
height: auto; |
|
685 |
max-width: 100%; |
|
686 |
} |
|
687 |
||
688 |
/* Make sure videos and embeds fit their containers. */ |
|
689 |
embed, |
|
690 |
iframe, |
|
691 |
object, |
|
692 |
video { |
|
693 |
max-width: 100%; |
|
694 |
} |
|
695 |
||
696 |
/* Override the Twitter embed fixed width. */ |
|
697 |
.entry-content .twitter-tweet-rendered { |
|
698 |
max-width: 100% !important; |
|
699 |
} |
|
700 |
||
701 |
/* Images */ |
|
702 |
.alignleft { |
|
703 |
float: left; |
|
704 |
} |
|
705 |
||
706 |
.alignright { |
|
707 |
float: right; |
|
708 |
} |
|
709 |
||
710 |
.aligncenter { |
|
711 |
display: block; |
|
712 |
margin-left: auto; |
|
713 |
margin-right: auto; |
|
714 |
} |
|
715 |
||
5 | 716 |
figure.wp-caption.alignleft, |
0 | 717 |
img.alignleft { |
718 |
margin: 5px 20px 5px 0; |
|
719 |
} |
|
720 |
||
721 |
.wp-caption.alignleft { |
|
722 |
margin: 5px 10px 5px 0; |
|
723 |
} |
|
724 |
||
5 | 725 |
figure.wp-caption.alignright, |
0 | 726 |
img.alignright { |
727 |
margin: 5px 0 5px 20px; |
|
728 |
} |
|
729 |
||
730 |
.wp-caption.alignright { |
|
731 |
margin: 5px 0 5px 10px; |
|
732 |
} |
|
733 |
||
734 |
img.aligncenter { |
|
735 |
margin: 5px auto; |
|
736 |
} |
|
737 |
||
738 |
img.alignnone { |
|
739 |
margin: 5px 0; |
|
740 |
} |
|
741 |
||
742 |
.wp-caption .wp-caption-text, |
|
743 |
.entry-caption, |
|
744 |
.gallery-caption { |
|
745 |
color: #220e10; |
|
746 |
font-size: 18px; |
|
747 |
font-style: italic; |
|
748 |
font-weight: 300; |
|
5 | 749 |
margin: 0 0 24px; |
750 |
} |
|
751 |
||
752 |
div.wp-caption.alignright img[class*="wp-image-"] { |
|
753 |
float: right; |
|
754 |
} |
|
755 |
||
756 |
div.wp-caption.alignright .wp-caption-text { |
|
757 |
padding-left: 10px; |
|
0 | 758 |
} |
759 |
||
760 |
img.wp-smiley, |
|
761 |
.rsswidget img { |
|
762 |
border: 0; |
|
763 |
border-radius: 0; |
|
764 |
box-shadow: none; |
|
765 |
margin-bottom: 0; |
|
766 |
margin-top: 0; |
|
767 |
padding: 0; |
|
768 |
} |
|
769 |
||
770 |
.wp-caption.alignleft + ul, |
|
5 | 771 |
.wp-caption.alignleft + ol { |
0 | 772 |
list-style-position: inside; |
773 |
} |
|
774 |
||
775 |
||
776 |
/** |
|
777 |
* 3.0 Basic Structure |
|
778 |
* ---------------------------------------------------------------------------- |
|
779 |
*/ |
|
780 |
||
781 |
.site { |
|
782 |
background-color: #fff; |
|
783 |
border-left: 1px solid #f2f2f2; |
|
784 |
border-right: 1px solid #f2f2f2; |
|
785 |
margin: 0 auto; |
|
786 |
max-width: 1600px; |
|
787 |
width: 100%; |
|
788 |
} |
|
789 |
||
790 |
.site-main { |
|
791 |
position: relative; |
|
792 |
} |
|
793 |
||
794 |
.site-main .sidebar-container { |
|
795 |
height: 0; |
|
796 |
position: absolute; |
|
797 |
top: 40px; |
|
798 |
width: 100%; |
|
799 |
z-index: 1; |
|
800 |
} |
|
801 |
||
802 |
.site-main .sidebar-inner { |
|
803 |
margin: 0 auto; |
|
804 |
max-width: 1040px; |
|
805 |
} |
|
806 |
||
807 |
||
808 |
/** |
|
809 |
* 4.0 Header |
|
810 |
* ---------------------------------------------------------------------------- |
|
811 |
*/ |
|
812 |
||
813 |
/** |
|
814 |
* 4.1 Site Header |
|
815 |
* ---------------------------------------------------------------------------- |
|
816 |
*/ |
|
817 |
||
818 |
.site-header { |
|
819 |
position: relative; |
|
820 |
} |
|
821 |
||
822 |
.site-header .home-link { |
|
823 |
color: #141412; |
|
824 |
display: block; |
|
825 |
margin: 0 auto; |
|
826 |
max-width: 1080px; |
|
827 |
min-height: 230px; |
|
828 |
padding: 0 20px; |
|
829 |
text-decoration: none; |
|
830 |
width: 100%; |
|
831 |
} |
|
832 |
||
833 |
.site-header .site-title:hover { |
|
834 |
text-decoration: underline; |
|
835 |
} |
|
836 |
||
837 |
.site-title { |
|
838 |
font-size: 60px; |
|
839 |
font-weight: bold; |
|
840 |
line-height: 1; |
|
841 |
margin: 0; |
|
842 |
padding: 58px 0 10px; |
|
843 |
} |
|
844 |
||
845 |
.site-description { |
|
846 |
font: 300 italic 24px "Source Sans Pro", Helvetica, sans-serif; |
|
847 |
margin: 0; |
|
848 |
} |
|
849 |
||
850 |
||
851 |
/** |
|
852 |
* 4.2 Navigation |
|
853 |
* ---------------------------------------------------------------------------- |
|
854 |
*/ |
|
855 |
||
856 |
.main-navigation { |
|
857 |
clear: both; |
|
858 |
margin: 0 auto; |
|
859 |
max-width: 1080px; |
|
860 |
min-height: 45px; |
|
861 |
position: relative; |
|
862 |
} |
|
863 |
||
864 |
ul.nav-menu, |
|
865 |
div.nav-menu > ul { |
|
866 |
margin: 0; |
|
867 |
padding: 0 40px 0 0; |
|
868 |
} |
|
869 |
||
870 |
.nav-menu li { |
|
871 |
display: inline-block; |
|
872 |
position: relative; |
|
873 |
} |
|
874 |
||
875 |
.nav-menu li a { |
|
876 |
color: #141412; |
|
877 |
display: block; |
|
878 |
font-size: 15px; |
|
879 |
line-height: 1; |
|
880 |
padding: 15px 20px; |
|
881 |
text-decoration: none; |
|
882 |
} |
|
883 |
||
884 |
.nav-menu li:hover > a, |
|
5 | 885 |
.nav-menu li a:hover, |
886 |
.nav-menu li:focus > a, |
|
887 |
.nav-menu li a:focus { |
|
0 | 888 |
background-color: #220e10; |
889 |
color: #fff; |
|
890 |
} |
|
891 |
||
892 |
.nav-menu .sub-menu, |
|
893 |
.nav-menu .children { |
|
894 |
background-color: #220e10; |
|
895 |
border: 2px solid #f7f5e7; |
|
896 |
border-top: 0; |
|
897 |
padding: 0; |
|
898 |
position: absolute; |
|
899 |
left: -2px; |
|
900 |
z-index: 99999; |
|
5 | 901 |
height: 1px; |
902 |
width: 1px; |
|
903 |
overflow: hidden; |
|
904 |
clip: rect(1px, 1px, 1px, 1px); |
|
0 | 905 |
} |
906 |
||
907 |
.nav-menu .sub-menu ul, |
|
908 |
.nav-menu .children ul { |
|
909 |
border-left: 0; |
|
910 |
left: 100%; |
|
911 |
top: 0; |
|
912 |
} |
|
913 |
||
914 |
ul.nav-menu ul a, |
|
915 |
.nav-menu ul ul a { |
|
916 |
color: #fff; |
|
917 |
margin: 0; |
|
918 |
width: 200px; |
|
919 |
} |
|
920 |
||
921 |
ul.nav-menu ul a:hover, |
|
5 | 922 |
.nav-menu ul ul a:hover, |
923 |
ul.nav-menu ul a:focus, |
|
924 |
.nav-menu ul ul a:focus { |
|
0 | 925 |
background-color: #db572f; |
926 |
} |
|
927 |
||
928 |
ul.nav-menu li:hover > ul, |
|
5 | 929 |
.nav-menu ul li:hover > ul, |
930 |
ul.nav-menu .focus > ul, |
|
931 |
.nav-menu .focus > ul { |
|
932 |
clip: inherit; |
|
933 |
overflow: inherit; |
|
934 |
height: inherit; |
|
935 |
width: inherit; |
|
0 | 936 |
} |
937 |
||
938 |
.nav-menu .current_page_item > a, |
|
939 |
.nav-menu .current_page_ancestor > a, |
|
940 |
.nav-menu .current-menu-item > a, |
|
941 |
.nav-menu .current-menu-ancestor > a { |
|
942 |
color: #bc360a; |
|
943 |
font-style: italic; |
|
944 |
} |
|
945 |
||
946 |
.menu-toggle { |
|
947 |
display: none; |
|
948 |
} |
|
949 |
||
950 |
/* Navbar */ |
|
951 |
.navbar { |
|
952 |
background-color: #f7f5e7; |
|
953 |
margin: 0 auto; |
|
954 |
max-width: 1600px; |
|
955 |
width: 100%; |
|
956 |
} |
|
957 |
||
958 |
.site-header .search-form { |
|
959 |
position: absolute; |
|
960 |
right: 20px; |
|
961 |
top: 1px; |
|
962 |
} |
|
963 |
||
964 |
.site-header .search-field { |
|
965 |
background-color: transparent; |
|
966 |
background-image: url(images/search-icon.png); |
|
967 |
background-position: 5px center; |
|
968 |
background-repeat: no-repeat; |
|
969 |
background-size: 24px 24px; |
|
970 |
border: none; |
|
971 |
cursor: pointer; |
|
972 |
height: 37px; |
|
973 |
margin: 3px 0; |
|
974 |
padding: 0 0 0 34px; |
|
975 |
position: relative; |
|
976 |
-webkit-transition: width 400ms ease, background 400ms ease; |
|
977 |
transition: width 400ms ease, background 400ms ease; |
|
5 | 978 |
width: 1px; |
0 | 979 |
} |
980 |
||
981 |
.site-header .search-field:focus { |
|
982 |
background-color: #fff; |
|
983 |
border: 2px solid #c3c0ab; |
|
984 |
cursor: text; |
|
985 |
outline: 0; |
|
986 |
width: 230px; |
|
987 |
} |
|
988 |
||
989 |
||
990 |
/** |
|
991 |
* 5.0 Content |
|
992 |
* ---------------------------------------------------------------------------- |
|
993 |
*/ |
|
994 |
||
995 |
.hentry { |
|
996 |
padding: 40px 0; |
|
997 |
} |
|
998 |
||
999 |
.entry-header, |
|
1000 |
.entry-content, |
|
1001 |
.entry-summary, |
|
1002 |
.entry-meta { |
|
1003 |
margin: 0 auto; |
|
1004 |
max-width: 604px; |
|
1005 |
width: 100%; |
|
1006 |
} |
|
1007 |
||
1008 |
.sidebar .entry-header, |
|
1009 |
.sidebar .entry-content, |
|
1010 |
.sidebar .entry-summary, |
|
1011 |
.sidebar .entry-meta { |
|
1012 |
max-width: 1040px; |
|
1013 |
padding: 0 376px 0 60px; |
|
1014 |
} |
|
1015 |
||
1016 |
||
1017 |
/** |
|
1018 |
* 5.1 Entry Header |
|
1019 |
* ---------------------------------------------------------------------------- |
|
1020 |
*/ |
|
1021 |
||
1022 |
.sidebar .entry-header .entry-meta { |
|
1023 |
padding: 0; |
|
1024 |
} |
|
1025 |
||
1026 |
.entry-thumbnail img { |
|
1027 |
display: block; |
|
1028 |
margin: 0 auto 10px; |
|
1029 |
} |
|
1030 |
||
1031 |
.entry-header { |
|
1032 |
margin-bottom: 30px; |
|
1033 |
} |
|
1034 |
||
1035 |
.entry-title { |
|
1036 |
font-weight: normal; |
|
1037 |
margin: 0 0 5px; |
|
1038 |
} |
|
1039 |
||
1040 |
.entry-title a { |
|
1041 |
color: #141412; |
|
1042 |
} |
|
1043 |
||
1044 |
.entry-title a:hover { |
|
1045 |
color: #ea9629; |
|
1046 |
} |
|
1047 |
||
1048 |
||
1049 |
/** |
|
1050 |
* 5.2 Entry Meta |
|
1051 |
* ---------------------------------------------------------------------------- |
|
1052 |
*/ |
|
1053 |
||
1054 |
.entry-meta { |
|
1055 |
clear: both; |
|
1056 |
font-size: 14px; |
|
1057 |
} |
|
1058 |
||
1059 |
.entry-meta a { |
|
1060 |
color: #bc360a; |
|
1061 |
} |
|
1062 |
||
1063 |
.entry-meta a:hover { |
|
1064 |
color: #bc360a; |
|
1065 |
} |
|
1066 |
||
1067 |
.entry-meta > span { |
|
1068 |
margin-right: 20px; |
|
1069 |
} |
|
1070 |
||
1071 |
.entry-meta > span:last-child { |
|
1072 |
margin-right: 0; |
|
1073 |
} |
|
1074 |
||
1075 |
.featured-post:before { |
|
1076 |
content: "\f308"; |
|
1077 |
margin-right: 2px; |
|
1078 |
} |
|
1079 |
||
1080 |
.entry-meta .date a:before { |
|
1081 |
content: "\f303"; |
|
1082 |
} |
|
1083 |
||
1084 |
.comments-link a:before { |
|
1085 |
content: "\f300"; |
|
1086 |
margin-right: 2px; |
|
1087 |
position: relative; |
|
1088 |
top: -1px; |
|
1089 |
} |
|
1090 |
||
1091 |
.entry-meta .author a:before { |
|
1092 |
content: "\f304"; |
|
1093 |
position: relative; |
|
1094 |
top: -1px; |
|
1095 |
} |
|
1096 |
||
1097 |
.categories-links a:first-child:before { |
|
1098 |
content: "\f301"; |
|
1099 |
} |
|
1100 |
||
1101 |
.tags-links a:first-child:before { |
|
1102 |
content: "\f302"; |
|
1103 |
position: relative; |
|
1104 |
top: -1px; |
|
1105 |
} |
|
1106 |
||
1107 |
.edit-link a:before { |
|
1108 |
content: "\f411"; |
|
1109 |
position: relative; |
|
1110 |
top: -1px; |
|
1111 |
} |
|
1112 |
||
1113 |
.single-author .entry-meta .author, |
|
1114 |
.sticky.format-standard .entry-meta .date, |
|
1115 |
.sticky.format-audio .entry-meta .date, |
|
1116 |
.sticky.format-chat .entry-meta .date, |
|
1117 |
.sticky.format-image .entry-meta .date, |
|
1118 |
.sticky.format-gallery .entry-meta .date { |
|
1119 |
display: none; |
|
1120 |
} |
|
1121 |
||
1122 |
||
1123 |
/** |
|
1124 |
* 5.3 Entry Content |
|
1125 |
* ---------------------------------------------------------------------------- |
|
1126 |
*/ |
|
1127 |
||
1128 |
.entry-content { |
|
1129 |
-webkit-hyphens: auto; |
|
1130 |
-moz-hyphens: auto; |
|
1131 |
-ms-hyphens: auto; |
|
1132 |
hyphens: auto; |
|
1133 |
word-wrap: break-word; |
|
1134 |
} |
|
1135 |
||
1136 |
.entry-content a, |
|
1137 |
.comment-content a { |
|
1138 |
color: #bc360a; |
|
1139 |
} |
|
1140 |
||
1141 |
.entry-content a:hover, |
|
1142 |
.comment-content a:hover { |
|
1143 |
color: #ea9629; |
|
1144 |
} |
|
1145 |
||
5 | 1146 |
.entry-content .more-link { |
1147 |
white-space: nowrap; |
|
1148 |
} |
|
1149 |
||
0 | 1150 |
.entry-content blockquote { |
1151 |
font-size: 24px; |
|
1152 |
} |
|
1153 |
||
1154 |
.entry-content blockquote cite, |
|
1155 |
.entry-content blockquote small { |
|
1156 |
font-size: 16px; |
|
1157 |
} |
|
1158 |
||
1159 |
.entry-content img.alignleft, |
|
1160 |
.entry-content .wp-caption.alignleft { |
|
1161 |
margin-left: -60px; |
|
1162 |
} |
|
1163 |
||
1164 |
.entry-content img.alignright, |
|
1165 |
.entry-content .wp-caption.alignright { |
|
1166 |
margin-right: -60px; |
|
1167 |
} |
|
1168 |
||
1169 |
footer.entry-meta { |
|
1170 |
margin-top: 24px; |
|
1171 |
} |
|
1172 |
||
1173 |
.format-standard footer.entry-meta { |
|
1174 |
margin-top: 0; |
|
1175 |
} |
|
1176 |
||
1177 |
/* Page links */ |
|
1178 |
.page-links { |
|
1179 |
clear: both; |
|
1180 |
font-size: 16px; |
|
1181 |
font-style: italic; |
|
1182 |
font-weight: normal; |
|
1183 |
line-height: 2.2; |
|
1184 |
margin: 20px 0; |
|
1185 |
text-transform: uppercase; |
|
1186 |
} |
|
1187 |
||
1188 |
.page-links a, |
|
1189 |
.page-links > span { |
|
1190 |
background: #fff; |
|
1191 |
border: 1px solid #fff; |
|
1192 |
padding: 5px 10px; |
|
1193 |
text-decoration: none; |
|
1194 |
} |
|
1195 |
||
1196 |
.format-status .entry-content .page-links a, |
|
1197 |
.format-gallery .entry-content .page-links a, |
|
1198 |
.format-chat .entry-content .page-links a, |
|
1199 |
.format-quote .entry-content .page-links a, |
|
1200 |
.page-links a { |
|
1201 |
background: #e63f2a; |
|
1202 |
border: 1px solid #e63f2a; |
|
1203 |
color: #fff; |
|
1204 |
} |
|
1205 |
||
1206 |
.format-gallery .entry-content .page-links a:hover, |
|
1207 |
.format-audio .entry-content .page-links a:hover, |
|
1208 |
.format-status .entry-content .page-links a:hover, |
|
1209 |
.format-video .entry-content .page-links a:hover, |
|
1210 |
.format-chat .entry-content .page-links a:hover, |
|
1211 |
.format-quote .entry-content .page-links a:hover, |
|
1212 |
.page-links a:hover { |
|
1213 |
background: #fff; |
|
1214 |
color: #e63f2a; |
|
1215 |
} |
|
1216 |
||
1217 |
.format-status .entry-content .page-links > span, |
|
1218 |
.format-quote .entry-content .page-links > span { |
|
1219 |
background: none; |
|
1220 |
} |
|
1221 |
||
1222 |
.page-links .page-links-title { |
|
1223 |
background: transparent; |
|
1224 |
border: none; |
|
1225 |
margin-right: 20px; |
|
1226 |
padding: 0; |
|
1227 |
} |
|
1228 |
||
1229 |
/* Mediaelements */ |
|
1230 |
.hentry .mejs-mediaelement, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1231 |
.widget .mejs-mediaelement, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
.hentry .mejs-container .mejs-controls, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
.widget .mejs-container .mejs-controls { |
0 | 1234 |
background: #220e10; |
1235 |
} |
|
1236 |
||
1237 |
.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1238 |
.widget .mejs-controls .mejs-time-rail .mejs-time-loaded, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1239 |
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current { |
0 | 1241 |
background: #fff; |
1242 |
} |
|
1243 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1244 |
.hentry .mejs-controls .mejs-time-rail .mejs-time-current, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1245 |
.widget .mejs-controls .mejs-time-rail .mejs-time-current { |
0 | 1246 |
background: #ea9629; |
1247 |
} |
|
1248 |
||
1249 |
.hentry .mejs-controls .mejs-time-rail .mejs-time-total, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1250 |
.widget .mejs-controls .mejs-time-rail .mejs-time-total, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1251 |
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1252 |
.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total { |
0 | 1253 |
background: #595959; |
1254 |
} |
|
1255 |
||
1256 |
.hentry .mejs-controls .mejs-time-rail span, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1257 |
.widget .mejs-controls .mejs-time-rail span, |
0 | 1258 |
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1259 |
.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1260 |
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1261 |
.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current { |
0 | 1262 |
border-radius: 0; |
1263 |
} |
|
1264 |
||
1265 |
||
1266 |
/** |
|
1267 |
* 5.4 Galleries |
|
1268 |
* ---------------------------------------------------------------------------- |
|
1269 |
*/ |
|
1270 |
||
1271 |
.gallery { |
|
1272 |
margin-bottom: 20px; |
|
1273 |
margin-left: -4px; |
|
1274 |
} |
|
1275 |
||
1276 |
.gallery-item { |
|
1277 |
float: left; |
|
1278 |
margin: 0 4px 4px 0; |
|
1279 |
overflow: hidden; |
|
1280 |
position: relative; |
|
1281 |
} |
|
1282 |
||
1283 |
.gallery-columns-1.gallery-size-medium, |
|
1284 |
.gallery-columns-1.gallery-size-thumbnail, |
|
1285 |
.gallery-columns-2.gallery-size-thumbnail, |
|
1286 |
.gallery-columns-3.gallery-size-thumbnail { |
|
1287 |
display: table; |
|
1288 |
margin: 0 auto 20px; |
|
1289 |
} |
|
1290 |
||
1291 |
.gallery-columns-1 .gallery-item, |
|
1292 |
.gallery-columns-2 .gallery-item, |
|
1293 |
.gallery-columns-3 .gallery-item { |
|
1294 |
text-align: center; |
|
1295 |
} |
|
1296 |
||
1297 |
.gallery-columns-4 .gallery-item { |
|
1298 |
max-width: 23%; |
|
1299 |
max-width: -webkit-calc(25% - 4px); |
|
1300 |
max-width: calc(25% - 4px); |
|
1301 |
} |
|
1302 |
||
1303 |
.gallery-columns-5 .gallery-item { |
|
1304 |
max-width: 19%; |
|
1305 |
max-width: -webkit-calc(20% - 4px); |
|
1306 |
max-width: calc(20% - 4px); |
|
1307 |
} |
|
1308 |
||
1309 |
.gallery-columns-6 .gallery-item { |
|
1310 |
max-width: 15%; |
|
1311 |
max-width: -webkit-calc(16.7% - 4px); |
|
1312 |
max-width: calc(16.7% - 4px); |
|
1313 |
} |
|
1314 |
||
1315 |
.gallery-columns-7 .gallery-item { |
|
1316 |
max-width: 13%; |
|
1317 |
max-width: -webkit-calc(14.28% - 4px); |
|
1318 |
max-width: calc(14.28% - 4px); |
|
1319 |
} |
|
1320 |
||
1321 |
.gallery-columns-8 .gallery-item { |
|
1322 |
max-width: 11%; |
|
1323 |
max-width: -webkit-calc(12.5% - 4px); |
|
1324 |
max-width: calc(12.5% - 4px); |
|
1325 |
} |
|
1326 |
||
1327 |
.gallery-columns-9 .gallery-item { |
|
1328 |
max-width: 9%; |
|
1329 |
max-width: -webkit-calc(11.1% - 4px); |
|
1330 |
max-width: calc(11.1% - 4px); |
|
1331 |
} |
|
1332 |
||
1333 |
.gallery-columns-1 .gallery-item:nth-of-type(1n), |
|
1334 |
.gallery-columns-2 .gallery-item:nth-of-type(2n), |
|
1335 |
.gallery-columns-3 .gallery-item:nth-of-type(3n), |
|
1336 |
.gallery-columns-4 .gallery-item:nth-of-type(4n), |
|
1337 |
.gallery-columns-5 .gallery-item:nth-of-type(5n), |
|
1338 |
.gallery-columns-6 .gallery-item:nth-of-type(6n), |
|
1339 |
.gallery-columns-7 .gallery-item:nth-of-type(7n), |
|
1340 |
.gallery-columns-8 .gallery-item:nth-of-type(8n), |
|
1341 |
.gallery-columns-9 .gallery-item:nth-of-type(9n) { |
|
1342 |
margin-right: 0; |
|
1343 |
} |
|
1344 |
||
5 | 1345 |
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), |
1346 |
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), |
|
1347 |
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1348 |
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1349 |
.widget-area .gallery-columns-2 figure.gallery-item:nth-of-type(2n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1350 |
.widget-area .gallery-columns-3 figure.gallery-item:nth-of-type(3n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1351 |
.widget-area .gallery-columns-4 figure.gallery-item:nth-of-type(4n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1352 |
.widget-area .gallery-columns-5 figure.gallery-item:nth-of-type(5n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1353 |
.widget-area .gallery-columns-6 figure.gallery-item:nth-of-type(6n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1354 |
.widget-area .gallery-columns-7 figure.gallery-item:nth-of-type(7n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1355 |
.widget-area .gallery-columns-8 figure.gallery-item:nth-of-type(8n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1356 |
.widget-area .gallery-columns-9 figure.gallery-item:nth-of-type(9n+1) { |
5 | 1357 |
clear: left; |
1358 |
} |
|
1359 |
||
0 | 1360 |
.gallery-caption { |
1361 |
background-color: rgba(0, 0, 0, 0.7); |
|
1362 |
box-sizing: border-box; |
|
1363 |
color: #fff; |
|
1364 |
font-size: 14px; |
|
1365 |
line-height: 1.3; |
|
1366 |
margin: 0; |
|
1367 |
max-height: 50%; |
|
1368 |
opacity: 0; |
|
1369 |
padding: 2px 8px; |
|
1370 |
position: absolute; |
|
1371 |
bottom: 0; |
|
1372 |
left: 0; |
|
1373 |
text-align: left; |
|
1374 |
-webkit-transition: opacity 400ms ease; |
|
1375 |
transition: opacity 400ms ease; |
|
1376 |
width: 100%; |
|
1377 |
} |
|
1378 |
||
1379 |
.gallery-caption:before { |
|
1380 |
box-shadow: 0 -10px 15px #000 inset; |
|
1381 |
content: ""; |
|
1382 |
height: 100%; |
|
1383 |
min-height: 49px; |
|
1384 |
position: absolute; |
|
1385 |
left: 0; |
|
1386 |
top: 0; |
|
1387 |
width: 100%; |
|
1388 |
} |
|
1389 |
||
1390 |
.gallery-item:hover .gallery-caption { |
|
1391 |
opacity: 1; |
|
1392 |
} |
|
1393 |
||
1394 |
.gallery-columns-7 .gallery-caption, |
|
1395 |
.gallery-columns-8 .gallery-caption, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1396 |
.gallery-columns-9 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1397 |
.widget-area .gallery-columns-2 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1398 |
.widget-area .gallery-columns-3 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1399 |
.widget-area .gallery-columns-4 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1400 |
.widget-area .gallery-columns-5 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1401 |
.widget-area .gallery-columns-6 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1402 |
.widget-area .gallery-columns-7 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1403 |
.widget-area .gallery-columns-8 .gallery-caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1404 |
.widget-area .gallery-columns-9 .gallery-caption { |
0 | 1405 |
display: none; |
1406 |
} |
|
1407 |
||
1408 |
||
1409 |
/** |
|
1410 |
* 5.5 Post Formats |
|
1411 |
* ---------------------------------------------------------------------------- |
|
1412 |
*/ |
|
1413 |
||
1414 |
/* Aside */ |
|
1415 |
.format-aside { |
|
1416 |
background-color: #f7f5e7; |
|
1417 |
} |
|
1418 |
||
1419 |
.blog .format-aside:first-of-type, |
|
1420 |
.single .format-aside:first-of-type, |
|
1421 |
.format-aside + .format-aside, |
|
1422 |
.format-aside + .format-link, |
|
1423 |
.format-link + .format-aside { |
|
1424 |
box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2); |
|
1425 |
} |
|
1426 |
||
1427 |
.format-aside .entry-meta { |
|
1428 |
margin-top: 0; |
|
1429 |
} |
|
1430 |
||
1431 |
.format-aside blockquote { |
|
1432 |
font-size: 100%; |
|
1433 |
font-weight: normal; |
|
1434 |
} |
|
1435 |
||
1436 |
.format-aside cite { |
|
1437 |
font-size: 100%; |
|
1438 |
text-transform: none; |
|
1439 |
} |
|
1440 |
||
1441 |
.format-aside cite:before { |
|
1442 |
content: "\2014"; |
|
1443 |
margin-right: 5px; |
|
1444 |
} |
|
1445 |
||
1446 |
/* Audio */ |
|
1447 |
.format-audio { |
|
1448 |
background-color: #db572f; |
|
1449 |
} |
|
1450 |
||
1451 |
.format-audio .entry-title { |
|
1452 |
font-size: 28px; |
|
1453 |
font-weight: bold; |
|
1454 |
} |
|
1455 |
||
1456 |
.format-audio .entry-content:before { |
|
1457 |
content: "\f109"; |
|
1458 |
float: left; |
|
1459 |
font-size: 64px; |
|
1460 |
position: relative; |
|
1461 |
top: 4px; |
|
1462 |
} |
|
1463 |
||
1464 |
.format-audio .entry-content a, |
|
1465 |
.format-audio .entry-meta a, |
|
1466 |
.format-audio .entry-content a:hover, |
|
1467 |
.format-audio .entry-meta a:hover { |
|
1468 |
color: #fbfaf3; |
|
1469 |
} |
|
1470 |
||
1471 |
.format-audio .audio-content { |
|
1472 |
background: url(images/dotted-line.png) repeat-y left top; |
|
1473 |
background-size: 4px 4px; |
|
1474 |
float: right; |
|
1475 |
padding-left: 35px; |
|
1476 |
width: 80%; |
|
1477 |
width: -webkit-calc(100% - 85px); |
|
1478 |
width: calc(100% - 85px); |
|
1479 |
} |
|
1480 |
||
1481 |
.format-audio .wp-audio-shortcode { |
|
1482 |
height: 30px !important; /* Override mediaelement.js style */ |
|
1483 |
margin: 20px 0; |
|
1484 |
max-width: 400px !important; /* Override mediaelement.js style */ |
|
1485 |
} |
|
1486 |
||
1487 |
.format-audio audio { |
|
1488 |
max-width: 100% !important; /* Avoid player width overflow. */ |
|
1489 |
} |
|
1490 |
||
1491 |
/* Chat */ |
|
1492 |
.format-chat { |
|
1493 |
background-color: #eadaa6; |
|
1494 |
} |
|
1495 |
||
1496 |
.format-chat .entry-title { |
|
1497 |
font-size: 28px; |
|
1498 |
font-weight: bold; |
|
1499 |
} |
|
1500 |
||
1501 |
.format-chat .entry-meta a, |
|
1502 |
.format-chat .entry-content a { |
|
1503 |
color: #722d19; |
|
1504 |
} |
|
1505 |
||
1506 |
.format-chat .entry-meta .date a:before { |
|
1507 |
content: "\f108"; |
|
1508 |
margin-right: 2px; |
|
1509 |
} |
|
1510 |
||
1511 |
.format-chat .entry-meta .author { |
|
1512 |
display: none; |
|
1513 |
} |
|
1514 |
||
1515 |
.format-chat .chat { |
|
1516 |
margin: 0; |
|
1517 |
} |
|
1518 |
||
1519 |
.format-chat .chat .chat-timestamp { |
|
1520 |
color: #722d19; |
|
1521 |
float: right; |
|
1522 |
font-size: 12px; |
|
1523 |
font-weight: normal; |
|
1524 |
margin: 5px 10px 0; |
|
1525 |
} |
|
1526 |
||
1527 |
.format-chat .chat .fn { |
|
1528 |
font-style: normal; |
|
1529 |
} |
|
1530 |
||
1531 |
/* Gallery */ |
|
1532 |
.format-gallery { |
|
1533 |
background-color: #fbca3c; |
|
1534 |
} |
|
1535 |
||
1536 |
.format-gallery .entry-header { |
|
1537 |
margin-bottom: 15px; |
|
1538 |
} |
|
1539 |
||
1540 |
.format-gallery .entry-title { |
|
1541 |
font-size: 50px; |
|
1542 |
font-weight: 400; |
|
1543 |
margin: 0; |
|
1544 |
} |
|
1545 |
||
1546 |
.format-gallery .entry-meta a, |
|
1547 |
.format-gallery .entry-content a { |
|
1548 |
color: #722d19; |
|
1549 |
} |
|
1550 |
||
1551 |
/* Image */ |
|
1552 |
.format-image .entry-title { |
|
1553 |
font-size: 28px; |
|
1554 |
font-weight: bold; |
|
1555 |
} |
|
1556 |
||
1557 |
.format-image .categories-links, |
|
1558 |
.format-image .tags-links { |
|
1559 |
display: none; |
|
1560 |
} |
|
1561 |
||
1562 |
/* Link */ |
|
1563 |
.format-link { |
|
1564 |
background-color: #f7f5e7; |
|
1565 |
} |
|
1566 |
||
1567 |
.blog .format-link:first-of-type, |
|
1568 |
.single .format-link:first-of-type { |
|
1569 |
box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2); |
|
1570 |
} |
|
1571 |
||
1572 |
.format-link .entry-header, |
|
1573 |
.format-link .entry-content p:last-child { |
|
1574 |
margin-bottom: 0; |
|
1575 |
} |
|
1576 |
||
1577 |
.format-link .entry-title { |
|
1578 |
color: #ca3c08; |
|
1579 |
display: inline; |
|
1580 |
font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif; |
|
1581 |
margin-right: 20px; |
|
1582 |
} |
|
1583 |
||
1584 |
.format-link .entry-title a { |
|
1585 |
color: #bc360a; |
|
1586 |
} |
|
1587 |
||
1588 |
.format-link div.entry-meta { |
|
1589 |
display: inline; |
|
1590 |
} |
|
1591 |
||
5 | 1592 |
/* Standard */ |
1593 |
.format-standard .wp-video, |
|
1594 |
.format-standard .wp-audio-shortcode, |
|
1595 |
.format-audio .wp-audio-shortcode, |
|
1596 |
.format-standard .video-player { |
|
1597 |
margin-bottom: 24px; |
|
1598 |
} |
|
1599 |
||
0 | 1600 |
/* Quote */ |
1601 |
.format-quote { |
|
1602 |
background-color: #210d10; |
|
1603 |
} |
|
1604 |
||
1605 |
.format-quote .entry-content, |
|
1606 |
.format-quote .entry-meta { |
|
1607 |
color: #f7f5e7; |
|
1608 |
} |
|
1609 |
||
1610 |
.format-quote .entry-content blockquote { |
|
1611 |
font-size: 28px; |
|
1612 |
margin: 0; |
|
1613 |
} |
|
1614 |
||
1615 |
.format-quote .entry-content a, |
|
1616 |
.format-quote .entry-meta a, |
|
1617 |
.format-quote .linked { |
|
1618 |
color: #e63f2a; |
|
1619 |
} |
|
1620 |
||
1621 |
.format-quote .entry-content cite a { |
|
1622 |
border-bottom: 1px dotted #fff; |
|
1623 |
color: #fff; |
|
1624 |
} |
|
1625 |
||
1626 |
.format-quote .entry-content cite a:hover { |
|
1627 |
text-decoration: none; |
|
1628 |
} |
|
1629 |
||
1630 |
.format-quote blockquote small, |
|
1631 |
.format-quote blockquote cite { |
|
1632 |
display: block; |
|
1633 |
font-size: 16px; |
|
1634 |
} |
|
1635 |
||
1636 |
.format-quote blockquote { |
|
1637 |
font-style: italic; |
|
1638 |
font-weight: 300; |
|
1639 |
padding-left: 75px; |
|
1640 |
position: relative; |
|
1641 |
} |
|
1642 |
||
1643 |
.format-quote blockquote:before { |
|
1644 |
content: '\201C'; |
|
1645 |
font-size: 140px; |
|
1646 |
font-weight: 400; |
|
1647 |
line-height: .8; |
|
1648 |
padding-right: 25px; |
|
1649 |
position: absolute; |
|
1650 |
left: -15px; |
|
1651 |
top: -3px; |
|
1652 |
} |
|
1653 |
||
1654 |
.format-quote .entry-meta .author { |
|
1655 |
display: none; |
|
1656 |
} |
|
1657 |
||
1658 |
/* Status */ |
|
1659 |
.format-status { |
|
1660 |
background-color: #722d19; |
|
1661 |
padding: 0; |
|
1662 |
} |
|
1663 |
||
1664 |
.format-status .entry-content, |
|
1665 |
.format-status .entry-meta { |
|
1666 |
padding-left: 35px; |
|
1667 |
position: relative; |
|
1668 |
} |
|
1669 |
||
1670 |
.format-status .entry-content a { |
|
1671 |
color: #eadaa6; |
|
1672 |
} |
|
1673 |
||
1674 |
.format-status .entry-meta a { |
|
1675 |
color: #f7f5e7; |
|
1676 |
} |
|
1677 |
||
1678 |
.sidebar .format-status .entry-content, |
|
1679 |
.sidebar .format-status .entry-meta { |
|
1680 |
padding-left: 95px; |
|
1681 |
} |
|
1682 |
||
1683 |
.format-status .entry-content:before, |
|
1684 |
.format-status .entry-meta:before { |
|
1685 |
background: url(images/dotted-line.png) repeat-y left bottom; |
|
1686 |
background-size: 4px 4px; |
|
1687 |
content: ""; |
|
1688 |
display: block; |
|
1689 |
height: 100%; |
|
1690 |
position: absolute; |
|
1691 |
left: 10px; |
|
1692 |
top: 0; |
|
1693 |
width: 1px; |
|
1694 |
} |
|
1695 |
||
1696 |
.sidebar .format-status .entry-content:before, |
|
1697 |
.sidebar .format-status .entry-meta:before { |
|
1698 |
left: 70px; |
|
1699 |
} |
|
1700 |
||
1701 |
.format-status .categories-links, |
|
1702 |
.format-status .tags-links { |
|
1703 |
display: none; |
|
1704 |
} |
|
1705 |
||
1706 |
/* Ensures the dots in the dot background are in lockstep. */ |
|
1707 |
.format-status .entry-meta:before { |
|
1708 |
background-position: left top; |
|
1709 |
} |
|
1710 |
||
1711 |
.format-status .entry-content { |
|
1712 |
color: #f7f5e7; |
|
1713 |
font-size: 24px; |
|
1714 |
font-style: italic; |
|
1715 |
font-weight: 300; |
|
1716 |
padding-bottom: 30px; |
|
1717 |
padding-top: 40px; |
|
1718 |
position: relative; |
|
1719 |
} |
|
1720 |
||
1721 |
.format-status .entry-content p:first-child:before { |
|
1722 |
background-color: rgba(0, 0, 0, 0.65); |
|
1723 |
content: ""; |
|
1724 |
height: 3px; |
|
1725 |
margin-top: 13px; |
|
1726 |
position: absolute; |
|
1727 |
left: 4px; |
|
1728 |
width: 13px; |
|
1729 |
} |
|
1730 |
||
1731 |
.sidebar .format-status .entry-content > p:first-child:before { |
|
1732 |
left: 64px; |
|
1733 |
} |
|
1734 |
||
1735 |
.format-status .entry-content p:last-child { |
|
1736 |
margin-bottom: 0; |
|
1737 |
} |
|
1738 |
||
1739 |
.format-status .entry-meta { |
|
1740 |
margin-top: 0; |
|
1741 |
padding-bottom: 40px; |
|
1742 |
} |
|
1743 |
||
1744 |
.format-status .entry-meta .date a:before { |
|
1745 |
content: "\f105"; |
|
1746 |
} |
|
1747 |
||
1748 |
/* Video */ |
|
1749 |
.format-video { |
|
1750 |
background-color: #db572f; |
|
1751 |
} |
|
1752 |
||
1753 |
.format-video .entry-content a, |
|
1754 |
.format-video .entry-meta a, |
|
1755 |
.format-video .entry-content a:hover, |
|
1756 |
.format-video .entry-meta a:hover { |
|
1757 |
color: #fbfaf3; |
|
1758 |
} |
|
1759 |
||
1760 |
.format-video .entry-title { |
|
1761 |
font-size: 50px; |
|
1762 |
font-weight: 400; |
|
1763 |
} |
|
1764 |
||
1765 |
.format-video .entry-meta { |
|
1766 |
color: #220e10; |
|
1767 |
} |
|
1768 |
||
1769 |
||
1770 |
/** |
|
1771 |
* 5.6 Attachments |
|
1772 |
* ---------------------------------------------------------------------------- |
|
1773 |
*/ |
|
1774 |
||
1775 |
.attachment .hentry { |
|
1776 |
background-color: #e8e5ce; |
|
1777 |
margin: 0; |
|
1778 |
padding: 0; |
|
1779 |
} |
|
1780 |
||
1781 |
.attachment .entry-header { |
|
1782 |
margin-bottom: 0; |
|
1783 |
max-width: 1040px; |
|
1784 |
padding: 30px 0; |
|
1785 |
} |
|
1786 |
||
1787 |
.attachment .entry-title { |
|
1788 |
display: inline-block; |
|
1789 |
float: left; |
|
1790 |
font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif; |
|
1791 |
margin: 0; |
|
1792 |
} |
|
1793 |
||
1794 |
.attachment .entry-title:before { |
|
1795 |
content: "\f416"; |
|
1796 |
font-size: 32px; |
|
1797 |
margin-right: 10px; |
|
1798 |
} |
|
1799 |
||
1800 |
.attachment .entry-meta { |
|
1801 |
clear: none; |
|
1802 |
color: inherit; |
|
1803 |
float: right; |
|
1804 |
max-width: 604px; |
|
1805 |
padding: 9px 0 0; |
|
1806 |
text-align: right; |
|
1807 |
} |
|
1808 |
||
1809 |
.hentry.attachment:not(.image-attachment) .entry-meta { |
|
1810 |
max-width: 104px; |
|
1811 |
} |
|
1812 |
||
1813 |
.attachment footer.entry-meta { |
|
1814 |
display: none; |
|
1815 |
} |
|
1816 |
||
1817 |
.attachment-meta:before { |
|
1818 |
content: "\f307"; |
|
1819 |
} |
|
1820 |
||
1821 |
.full-size-link a:before { |
|
1822 |
content: "\f402"; |
|
1823 |
} |
|
1824 |
||
1825 |
.full-size-link:before { |
|
1826 |
content: none; |
|
1827 |
} |
|
1828 |
||
1829 |
.attachment .entry-meta a, |
|
1830 |
.attachment .entry-meta .edit-link:before, |
|
1831 |
.attachment .full-size-link:before { |
|
1832 |
color: #ca3c08; |
|
1833 |
} |
|
1834 |
||
1835 |
.attachment .entry-content { |
|
1836 |
background-color: #fff; |
|
1837 |
max-width: 100%; |
|
1838 |
padding: 40px 0; |
|
1839 |
} |
|
1840 |
||
1841 |
.image-navigation { |
|
1842 |
margin: 0 auto; |
|
1843 |
max-width: 1040px; |
|
1844 |
position: relative; |
|
1845 |
} |
|
1846 |
||
1847 |
.image-navigation a:hover { |
|
1848 |
text-decoration: none; |
|
1849 |
} |
|
1850 |
||
1851 |
.image-navigation .nav-previous, |
|
1852 |
.image-navigation .nav-next { |
|
1853 |
position: absolute; |
|
1854 |
top: 50px; |
|
1855 |
} |
|
1856 |
||
1857 |
.image-navigation .nav-previous { |
|
1858 |
left: 0; |
|
1859 |
} |
|
1860 |
||
1861 |
.image-navigation .nav-next { |
|
1862 |
right: 0; |
|
1863 |
} |
|
1864 |
||
1865 |
.image-navigation .meta-nav { |
|
1866 |
font-size: 32px; |
|
1867 |
font-weight: 300; |
|
1868 |
vertical-align: -4px; |
|
1869 |
} |
|
1870 |
||
1871 |
.attachment .entry-attachment, |
|
1872 |
.attachment .type-attachment p { |
|
1873 |
margin: 0 auto; |
|
1874 |
max-width: 724px; |
|
1875 |
text-align: center; |
|
1876 |
} |
|
1877 |
||
1878 |
.attachment .entry-attachment .attachment { |
|
1879 |
display: inline-block; |
|
1880 |
} |
|
1881 |
||
1882 |
.attachment .entry-caption { |
|
1883 |
text-align: left; |
|
1884 |
} |
|
1885 |
||
1886 |
.attachment .entry-description { |
|
1887 |
margin: 20px auto 0; |
|
1888 |
max-width: 604px; |
|
1889 |
} |
|
1890 |
||
1891 |
.attachment .entry-caption p:last-child, |
|
1892 |
.attachment .entry-description p:last-child { |
|
1893 |
margin: 0; |
|
1894 |
} |
|
1895 |
||
1896 |
.attachment .site-main .sidebar-container { |
|
1897 |
display: none; |
|
1898 |
} |
|
1899 |
||
5 | 1900 |
.attachment .entry-content .mejs-audio { |
1901 |
max-width: 400px; |
|
1902 |
margin: 0 auto; |
|
1903 |
} |
|
1904 |
||
1905 |
.attachment .entry-content .wp-video { |
|
1906 |
margin: 0 auto; |
|
1907 |
} |
|
1908 |
||
1909 |
.attachment .entry-content .mejs-container { |
|
1910 |
margin-bottom: 24px; |
|
1911 |
} |
|
0 | 1912 |
|
1913 |
/** |
|
1914 |
* 5.7 Post/Paging Navigation |
|
1915 |
* ---------------------------------------------------------------------------- |
|
1916 |
*/ |
|
1917 |
||
1918 |
.navigation .nav-previous { |
|
1919 |
float: left; |
|
1920 |
} |
|
1921 |
||
1922 |
.navigation .nav-next { |
|
1923 |
float: right; |
|
1924 |
} |
|
1925 |
||
1926 |
.navigation a { |
|
1927 |
color: #bc360a; |
|
1928 |
} |
|
1929 |
||
1930 |
.navigation a:hover { |
|
1931 |
color: #ea9629; |
|
1932 |
text-decoration: none; |
|
1933 |
} |
|
1934 |
||
1935 |
.paging-navigation { |
|
1936 |
background-color: #e8e5ce; |
|
1937 |
padding: 40px 0; |
|
1938 |
} |
|
1939 |
||
1940 |
.paging-navigation .nav-links { |
|
1941 |
margin: 0 auto; |
|
1942 |
max-width: 604px; |
|
1943 |
width: 100%; |
|
1944 |
} |
|
1945 |
||
1946 |
.sidebar .paging-navigation .nav-links { |
|
1947 |
max-width: 1040px; |
|
1948 |
padding: 0 376px 0 60px; |
|
1949 |
} |
|
1950 |
||
1951 |
.paging-navigation .nav-next { |
|
1952 |
padding: 13px 0; |
|
1953 |
} |
|
1954 |
||
1955 |
.paging-navigation a { |
|
1956 |
font-size: 22px; |
|
1957 |
font-style: italic; |
|
1958 |
font-weight: 300; |
|
1959 |
} |
|
1960 |
||
1961 |
.paging-navigation .meta-nav { |
|
1962 |
background-color: #e63f2a; |
|
1963 |
border-radius: 50%; |
|
1964 |
color: #fff; |
|
1965 |
display: inline-block; |
|
1966 |
font-size: 26px; |
|
1967 |
padding: 3px 0 8px; |
|
1968 |
text-align: center; |
|
1969 |
width: 50px; |
|
1970 |
} |
|
1971 |
||
1972 |
.paging-navigation .nav-previous .meta-nav { |
|
1973 |
margin-right: 10px; |
|
1974 |
padding: 17px 0 23px; |
|
1975 |
width: 80px; |
|
1976 |
} |
|
1977 |
||
1978 |
.paging-navigation .nav-next .meta-nav { |
|
1979 |
margin-left: 10px; |
|
1980 |
} |
|
1981 |
||
1982 |
.paging-navigation a:hover .meta-nav { |
|
1983 |
background-color: #ea9629; |
|
1984 |
text-decoration: none; |
|
1985 |
} |
|
1986 |
||
1987 |
.post-navigation { |
|
1988 |
background-color: #fff; |
|
1989 |
color: #ca3c08; |
|
1990 |
font-size: 20px; |
|
1991 |
font-style: italic; |
|
1992 |
font-weight: 300; |
|
1993 |
padding: 20px 0; |
|
1994 |
} |
|
1995 |
||
1996 |
.post-navigation .nav-links { |
|
1997 |
margin: 0 auto; |
|
1998 |
max-width: 1040px; |
|
1999 |
} |
|
2000 |
||
2001 |
.sidebar .post-navigation .nav-links { |
|
2002 |
padding: 0 376px 0 60px; |
|
2003 |
} |
|
2004 |
||
2005 |
.post-navigation a[rel="next"] { |
|
2006 |
float: right; |
|
2007 |
text-align: right; |
|
2008 |
} |
|
2009 |
||
2010 |
||
2011 |
/** |
|
2012 |
* 5.8 Author Bio |
|
2013 |
* ---------------------------------------------------------------------------- |
|
2014 |
*/ |
|
2015 |
||
2016 |
.author-info { |
|
2017 |
margin: 0 auto; |
|
2018 |
max-width: 604px; |
|
2019 |
padding: 30px 0 10px; |
|
2020 |
text-align: left; /* gallery & video post formats */ |
|
2021 |
width: 100%; |
|
2022 |
} |
|
2023 |
||
2024 |
.author.sidebar .author-info { |
|
2025 |
max-width: 1040px; |
|
2026 |
padding: 30px 376px 10px 60px; |
|
2027 |
} |
|
2028 |
||
2029 |
.single .author-info { |
|
2030 |
padding: 50px 0 0; |
|
2031 |
} |
|
2032 |
||
2033 |
.author-avatar .avatar { |
|
2034 |
float: left; |
|
2035 |
margin: 0 30px 30px 0; |
|
2036 |
} |
|
2037 |
||
2038 |
.single-format-status .author-description { |
|
2039 |
color: #f7f5e7; |
|
2040 |
} |
|
2041 |
||
2042 |
.author-description .author-title { |
|
2043 |
clear: none; |
|
2044 |
font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif; |
|
2045 |
margin: 0 0 8px; |
|
2046 |
} |
|
2047 |
||
2048 |
.author-link { |
|
2049 |
color: #ca3c08; |
|
2050 |
margin-left: 2px; |
|
2051 |
} |
|
2052 |
||
2053 |
.author.archive .author-link { |
|
2054 |
display: none; |
|
2055 |
} |
|
2056 |
||
2057 |
||
2058 |
/** |
|
2059 |
* 5.9 Archives |
|
2060 |
* ---------------------------------------------------------------------------- |
|
2061 |
*/ |
|
2062 |
||
2063 |
.archive-header { |
|
2064 |
background-color: #e8e5ce; |
|
2065 |
} |
|
2066 |
||
2067 |
.archive-title, |
|
2068 |
.archive-meta { |
|
2069 |
font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif; |
|
2070 |
margin: 0 auto; |
|
2071 |
max-width: 1040px; |
|
2072 |
padding: 30px 0; |
|
2073 |
width: 100%; |
|
2074 |
} |
|
2075 |
||
2076 |
.archive-meta { |
|
2077 |
font-size: 16px; |
|
2078 |
font-style: normal; |
|
2079 |
font-weight: normal; |
|
2080 |
margin-top: -15px; |
|
2081 |
padding: 0 0 11px; |
|
2082 |
} |
|
2083 |
||
2084 |
.sidebar .archive-meta { |
|
2085 |
padding-right: 316px; |
|
2086 |
} |
|
2087 |
||
2088 |
||
2089 |
/** |
|
2090 |
* 5.10 Search Results/No posts |
|
2091 |
* ---------------------------------------------------------------------------- |
|
2092 |
*/ |
|
2093 |
||
2094 |
.page-header { |
|
2095 |
background-color: #e8e5ce; |
|
2096 |
} |
|
2097 |
||
2098 |
.page-title { |
|
2099 |
font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif; |
|
2100 |
margin: 0 auto; |
|
2101 |
max-width: 1040px; |
|
2102 |
padding: 30px 0; |
|
2103 |
width: 100%; |
|
2104 |
} |
|
2105 |
||
2106 |
.page-content { |
|
2107 |
margin: 0 auto; |
|
2108 |
max-width: 604px; |
|
2109 |
padding: 40px 0; |
|
2110 |
width: 100%; |
|
2111 |
} |
|
2112 |
||
2113 |
.sidebar .page-content { |
|
2114 |
margin: 0 auto; |
|
2115 |
max-width: 1040px; |
|
2116 |
padding: 40px 376px 40px 60px; |
|
2117 |
} |
|
2118 |
||
2119 |
||
2120 |
/** |
|
2121 |
* 5.11 404 |
|
2122 |
* ---------------------------------------------------------------------------- |
|
2123 |
*/ |
|
2124 |
||
2125 |
.error404 .page-header { |
|
2126 |
background-color: #fff; |
|
2127 |
} |
|
2128 |
||
2129 |
.error404 .page-title { |
|
2130 |
line-height: 0.6; |
|
2131 |
margin: 0; |
|
2132 |
padding: 300px; |
|
2133 |
position: relative; |
|
2134 |
text-align: center; |
|
2135 |
width: auto; |
|
2136 |
} |
|
2137 |
||
2138 |
.error404 .page-title:before { |
|
2139 |
color: #e8e5ce; |
|
2140 |
content: "\f423"; |
|
2141 |
font-size: 964px; |
|
2142 |
line-height: 0.6; |
|
2143 |
overflow: hidden; |
|
2144 |
position: absolute; |
|
2145 |
left: 7px; |
|
2146 |
top: 28px; |
|
2147 |
} |
|
2148 |
||
2149 |
.error404 .page-wrapper { |
|
2150 |
background-color: #e8e5ce; |
|
2151 |
} |
|
2152 |
||
2153 |
.error404 .page-header, |
|
2154 |
.error404 .page-content { |
|
2155 |
margin: 0 auto; |
|
2156 |
max-width: 1040px; |
|
2157 |
padding-bottom: 40px; |
|
2158 |
width: 100%; |
|
2159 |
} |
|
2160 |
||
2161 |
||
2162 |
/** |
|
2163 |
* 5.12 Comments |
|
2164 |
* ---------------------------------------------------------------------------- |
|
2165 |
*/ |
|
2166 |
||
2167 |
.comments-title, |
|
2168 |
.comment-list, |
|
2169 |
.comment-reply-title, |
|
2170 |
.must-log-in, |
|
2171 |
.comment-respond .comment-form, |
|
2172 |
.comment-respond iframe { |
|
2173 |
display: block; |
|
2174 |
margin-left: auto; |
|
2175 |
margin-right: auto; |
|
2176 |
max-width: 604px; |
|
2177 |
width: 100%; |
|
2178 |
} |
|
2179 |
||
2180 |
.sidebar .comments-title, |
|
2181 |
.sidebar .comment-list, |
|
2182 |
.sidebar .must-log-in, |
|
2183 |
.sidebar .comment-reply-title, |
|
2184 |
.sidebar .comment-navigation, |
|
2185 |
.sidebar .comment-respond .comment-form { |
|
2186 |
max-width: 1040px; |
|
2187 |
padding-left: 60px; |
|
2188 |
padding-right: 376px; |
|
2189 |
} |
|
2190 |
||
2191 |
.comments-title { |
|
2192 |
font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif; |
|
2193 |
} |
|
2194 |
||
2195 |
.comment-list, |
|
2196 |
.comment-list .children { |
|
2197 |
list-style-type: none; |
|
2198 |
padding: 0; |
|
2199 |
} |
|
2200 |
||
2201 |
.comment-list .children { |
|
2202 |
margin-left: 20px; |
|
2203 |
} |
|
2204 |
||
2205 |
.comment-list > li:after, |
|
2206 |
.comment-list .children > li:before { |
|
2207 |
background: url(images/dotted-line.png) repeat left top; |
|
2208 |
background-size: 4px 4px; |
|
2209 |
content: ""; |
|
2210 |
display: block; |
|
2211 |
height: 1px; |
|
2212 |
width: 100%; |
|
2213 |
} |
|
2214 |
||
2215 |
.comment-list > li:last-child:after { |
|
2216 |
display: none; |
|
2217 |
} |
|
2218 |
||
2219 |
.comment-body { |
|
2220 |
padding: 24px 0; |
|
2221 |
position: relative; |
|
2222 |
} |
|
2223 |
||
2224 |
.comment-author { |
|
2225 |
float: left; |
|
2226 |
max-width: 74px; |
|
2227 |
} |
|
2228 |
||
2229 |
.comment-author .avatar { |
|
2230 |
display: block; |
|
2231 |
margin-bottom: 10px; |
|
2232 |
} |
|
2233 |
||
2234 |
.comment-author .fn { |
|
2235 |
word-wrap: break-word; |
|
2236 |
} |
|
2237 |
||
2238 |
.comment-author .fn, |
|
2239 |
.comment-author .url, |
|
2240 |
.comment-reply-link, |
|
2241 |
.comment-reply-login { |
|
2242 |
color: #bc360a; |
|
2243 |
font-size: 14px; |
|
2244 |
font-style: normal; |
|
2245 |
font-weight: normal; |
|
2246 |
} |
|
2247 |
||
2248 |
.says { |
|
2249 |
display: none; |
|
2250 |
} |
|
2251 |
||
2252 |
.no-avatars .comment-author { |
|
2253 |
margin: 0 0 5px; |
|
2254 |
max-width: 100%; |
|
2255 |
position: relative; |
|
2256 |
} |
|
2257 |
||
2258 |
.no-avatars .comment-metadata, |
|
2259 |
.no-avatars .comment-content, |
|
2260 |
.no-avatars .comment-list .reply { |
|
2261 |
width: 100%; |
|
2262 |
} |
|
2263 |
||
2264 |
.bypostauthor > .comment-body .fn:before { |
|
2265 |
content: "\f408"; |
|
2266 |
vertical-align: text-top; |
|
2267 |
} |
|
2268 |
||
2269 |
.comment-list .edit-link { |
|
2270 |
margin-left: 20px; |
|
2271 |
} |
|
2272 |
||
2273 |
.comment-metadata, |
|
2274 |
.comment-awaiting-moderation, |
|
2275 |
.comment-content, |
|
2276 |
.comment-list .reply { |
|
2277 |
float: right; |
|
2278 |
width: 79%; |
|
2279 |
width: -webkit-calc(100% - 124px); |
|
2280 |
width: calc(100% - 124px); |
|
2281 |
word-wrap: break-word; |
|
2282 |
} |
|
2283 |
||
2284 |
.comment-meta, |
|
2285 |
.comment-meta a { |
|
2286 |
color: #a2a2a2; |
|
2287 |
font-size: 13px; |
|
2288 |
} |
|
2289 |
||
2290 |
.comment-meta a:hover { |
|
2291 |
color: #ea9629; |
|
2292 |
} |
|
2293 |
||
2294 |
.comment-metadata { |
|
2295 |
margin-bottom: 20px; |
|
2296 |
} |
|
2297 |
||
2298 |
.ping-meta { |
|
2299 |
color: #a2a2a2; |
|
2300 |
font-size: 13px; |
|
2301 |
line-height: 2; |
|
2302 |
} |
|
2303 |
||
2304 |
.comment-awaiting-moderation { |
|
2305 |
color: #a2a2a2; |
|
2306 |
} |
|
2307 |
||
2308 |
.comment-awaiting-moderation:before { |
|
2309 |
content: "\f414"; |
|
2310 |
margin-right: 5px; |
|
2311 |
position: relative; |
|
2312 |
top: -2px; |
|
2313 |
} |
|
2314 |
||
2315 |
.comment-reply-link:before, |
|
2316 |
.comment-reply-login:before { |
|
2317 |
content: "\f412"; |
|
2318 |
margin-right: 3px; |
|
2319 |
} |
|
2320 |
||
2321 |
/* Comment form */ |
|
2322 |
.comment-respond { |
|
2323 |
background-color: #f7f5e7; |
|
2324 |
padding: 30px 0; |
|
2325 |
} |
|
2326 |
||
2327 |
.comment .comment-respond { |
|
2328 |
margin-bottom: 20px; |
|
2329 |
padding: 20px; |
|
2330 |
} |
|
2331 |
||
2332 |
.comment-reply-title { |
|
2333 |
font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif; |
|
2334 |
} |
|
2335 |
||
2336 |
.comment-reply-title small a { |
|
2337 |
color: #131310; |
|
2338 |
display: inline-block; |
|
2339 |
float: right; |
|
2340 |
height: 16px; |
|
2341 |
overflow: hidden; |
|
2342 |
width: 16px; |
|
2343 |
} |
|
2344 |
||
2345 |
.comment-reply-title small a:hover { |
|
2346 |
color: #ed331c; |
|
2347 |
text-decoration: none; |
|
2348 |
} |
|
2349 |
||
2350 |
.comment-reply-title small a:before { |
|
2351 |
content: "\f406"; |
|
2352 |
vertical-align: top; |
|
2353 |
} |
|
2354 |
||
2355 |
.sidebar .comment-list .comment-reply-title, |
|
2356 |
.sidebar .comment-list .comment-respond .comment-form { |
|
2357 |
padding: 0; |
|
2358 |
} |
|
2359 |
||
2360 |
.comment-form .comment-notes { |
|
2361 |
margin-bottom: 15px; |
|
2362 |
} |
|
2363 |
||
2364 |
.comment-form .comment-form-author, |
|
2365 |
.comment-form .comment-form-email, |
|
2366 |
.comment-form .comment-form-url { |
|
2367 |
margin-bottom: 8px; |
|
2368 |
} |
|
2369 |
||
2370 |
.comment-form [for="author"], |
|
2371 |
.comment-form [for="email"], |
|
2372 |
.comment-form [for="url"], |
|
2373 |
.comment-form [for="comment"] { |
|
2374 |
float: left; |
|
2375 |
padding: 5px 0; |
|
2376 |
width: 120px; |
|
2377 |
} |
|
2378 |
||
2379 |
.comment-form .required { |
|
2380 |
color: #ed331c; |
|
2381 |
} |
|
2382 |
||
2383 |
.comment-form input[type="text"], |
|
2384 |
.comment-form input[type="email"], |
|
2385 |
.comment-form input[type="url"] { |
|
2386 |
max-width: 270px; |
|
2387 |
width: 60%; |
|
2388 |
} |
|
2389 |
||
2390 |
.comment-form textarea { |
|
2391 |
width: 100%; |
|
2392 |
} |
|
2393 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2394 |
.comment-form #wp-comment-cookies-consent { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2395 |
margin: 0 10px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2396 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2397 |
|
0 | 2398 |
.form-allowed-tags, |
2399 |
.form-allowed-tags code { |
|
2400 |
color: #686758; |
|
2401 |
font-size: 12px; |
|
2402 |
} |
|
2403 |
||
2404 |
.form-allowed-tags code { |
|
2405 |
font-size: 10px; |
|
2406 |
margin-left: 3px; |
|
2407 |
} |
|
2408 |
||
2409 |
.comment-list .pingback, |
|
2410 |
.comment-list .trackback { |
|
2411 |
padding-top: 24px; |
|
2412 |
} |
|
2413 |
||
2414 |
.comment-navigation { |
|
2415 |
font-size: 20px; |
|
2416 |
font-style: italic; |
|
2417 |
font-weight: 300; |
|
2418 |
margin: 0 auto; |
|
2419 |
max-width: 604px; |
|
2420 |
padding: 20px 0 30px; |
|
2421 |
width: 100%; |
|
2422 |
} |
|
2423 |
||
2424 |
.no-comments { |
|
2425 |
background-color: #f7f5e7; |
|
2426 |
font-size: 20px; |
|
2427 |
font-style: italic; |
|
2428 |
font-weight: 300; |
|
2429 |
margin: 0; |
|
2430 |
padding: 40px 0; |
|
2431 |
text-align: center; |
|
2432 |
} |
|
2433 |
||
2434 |
.sidebar .no-comments { |
|
2435 |
padding-left: 60px; |
|
2436 |
padding-right: 376px; |
|
2437 |
} |
|
2438 |
||
2439 |
||
2440 |
/** |
|
2441 |
* 5.13 Multisite |
|
2442 |
* ---------------------------------------------------------------------------- |
|
2443 |
*/ |
|
2444 |
||
2445 |
.site-main .mu_register { |
|
2446 |
margin: 0 auto; |
|
2447 |
max-width: 604px; |
|
2448 |
width: 100%; |
|
2449 |
} |
|
2450 |
||
2451 |
.mu_alert { |
|
2452 |
margin-top: 25px; |
|
2453 |
} |
|
2454 |
||
2455 |
.site-main .mu_register input[type="submit"], |
|
2456 |
.site-main .mu_register #blog_title, |
|
2457 |
.site-main .mu_register #user_email, |
|
2458 |
.site-main .mu_register #blogname, |
|
2459 |
.site-main .mu_register #user_name { |
|
2460 |
font-size: inherit; |
|
2461 |
width: 270px; |
|
2462 |
} |
|
2463 |
||
2464 |
.site-main .mu_register input[type="submit"] { |
|
2465 |
width: auto; |
|
2466 |
} |
|
2467 |
||
2468 |
||
2469 |
/** |
|
2470 |
* 6.0 Sidebar |
|
2471 |
* ---------------------------------------------------------------------------- |
|
2472 |
*/ |
|
2473 |
||
2474 |
.site-main .widget-area { |
|
2475 |
float: right; |
|
2476 |
width: 300px; |
|
2477 |
} |
|
2478 |
||
2479 |
||
2480 |
/** |
|
2481 |
* 6.1 Widgets |
|
2482 |
* ---------------------------------------------------------------------------- |
|
2483 |
*/ |
|
2484 |
||
2485 |
.widget { |
|
2486 |
background-color: rgba(247, 245, 231, 0.7); |
|
2487 |
font-size: 14px; |
|
2488 |
-webkit-hyphens: auto; |
|
2489 |
-moz-hyphens: auto; |
|
2490 |
-ms-hyphens: auto; |
|
2491 |
hyphens: auto; |
|
2492 |
margin: 0 0 24px; |
|
2493 |
padding: 20px; |
|
2494 |
word-wrap: break-word; |
|
2495 |
} |
|
2496 |
||
2497 |
.widget .widget-title { |
|
2498 |
font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif; |
|
2499 |
margin: 0 0 10px; |
|
2500 |
} |
|
2501 |
||
2502 |
.widget ul, |
|
2503 |
.widget ol { |
|
2504 |
list-style-type: none; |
|
2505 |
margin: 0; |
|
2506 |
padding: 0; |
|
2507 |
} |
|
2508 |
||
2509 |
.widget li { |
|
2510 |
padding: 5px 0; |
|
2511 |
} |
|
2512 |
||
2513 |
.widget .children li:last-child { |
|
2514 |
padding-bottom: 0; |
|
2515 |
} |
|
2516 |
||
2517 |
.widget li > ul, |
|
2518 |
.widget li > ol { |
|
2519 |
margin-left: 20px; |
|
2520 |
} |
|
2521 |
||
2522 |
.widget a { |
|
2523 |
color: #bc360a; |
|
2524 |
} |
|
2525 |
||
2526 |
.widget a:hover { |
|
2527 |
color: #ea9629; |
|
2528 |
} |
|
2529 |
||
2530 |
/* Search widget */ |
|
2531 |
.search-form .search-submit { |
|
2532 |
display: none; |
|
2533 |
} |
|
2534 |
||
2535 |
/* RSS Widget */ |
|
2536 |
.widget_rss .rss-date { |
|
2537 |
display: block; |
|
2538 |
} |
|
2539 |
||
2540 |
.widget_rss .rss-date, |
|
2541 |
.widget_rss li > cite { |
|
2542 |
color: #a2a2a2; |
|
2543 |
} |
|
2544 |
||
2545 |
/* Calendar Widget */ |
|
2546 |
.widget_calendar table, |
|
2547 |
.widget_calendar td { |
|
2548 |
border: 0; |
|
2549 |
border-collapse: separate; |
|
2550 |
border-spacing: 1px; |
|
2551 |
} |
|
2552 |
||
2553 |
.widget_calendar caption { |
|
2554 |
font-size: 14px; |
|
2555 |
margin: 0; |
|
2556 |
} |
|
2557 |
||
2558 |
.widget_calendar th, |
|
2559 |
.widget_calendar td { |
|
2560 |
padding: 0; |
|
2561 |
text-align: center; |
|
2562 |
} |
|
2563 |
||
2564 |
.widget_calendar a { |
|
2565 |
display: block; |
|
2566 |
} |
|
2567 |
||
2568 |
.widget_calendar a:hover { |
|
2569 |
background-color: rgba(0, 0, 0, 0.15); |
|
2570 |
} |
|
2571 |
||
2572 |
.widget_calendar tbody td { |
|
2573 |
background-color: rgba(255, 255, 255, 0.5); |
|
2574 |
} |
|
2575 |
||
2576 |
.site-footer .widget_calendar tbody td { |
|
2577 |
background-color: rgba(255, 255, 255, 0.05); |
|
2578 |
} |
|
2579 |
||
2580 |
.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad { |
|
2581 |
background-color: transparent; |
|
2582 |
} |
|
2583 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2584 |
/* Text widget */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2585 |
.widget_text ul, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2586 |
.widget_text ol { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2587 |
padding-left: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2588 |
margin-bottom: 16px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2589 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2590 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2591 |
.widget_text li:last-child { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2592 |
padding-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2593 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2594 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2595 |
.widget_text li > ul, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2596 |
.widget_text li > ol { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2597 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2598 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2599 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2600 |
.widget_text ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2601 |
list-style: square; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2602 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2603 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2604 |
.widget_text ol { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2605 |
list-style: decimal; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2606 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2607 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2608 |
/* Tag Cloud widget */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2609 |
.tagcloud ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2610 |
list-style-type: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2611 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2612 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2613 |
.tagcloud ul li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2614 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2615 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2616 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2617 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2618 |
/* Gallery Widget */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2619 |
.widget .gallery-columns-1 .gallery-item { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2620 |
max-width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2621 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2622 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2623 |
.widget .gallery-columns-2 .gallery-item { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2624 |
max-width: 49%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2625 |
max-width: -webkit-calc(50% - 4px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2626 |
max-width: calc(50% - 4px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2627 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2628 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2629 |
.widget .gallery-columns-3 .gallery-item { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2630 |
max-width: 22%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2631 |
max-width: -webkit-calc(33% - 4px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2632 |
max-width: calc(33% - 4px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2633 |
} |
0 | 2634 |
|
2635 |
/** |
|
2636 |
* 7.0 Footer |
|
2637 |
* ---------------------------------------------------------------------------- |
|
2638 |
*/ |
|
2639 |
||
2640 |
.site-footer { |
|
2641 |
background-color: #e8e5ce; |
|
2642 |
color: #686758; |
|
2643 |
font-size: 14px; |
|
2644 |
text-align: center; |
|
2645 |
} |
|
2646 |
||
2647 |
.site-footer .widget-area, |
|
2648 |
.sidebar .site-footer { |
|
2649 |
text-align: left; |
|
2650 |
} |
|
2651 |
||
2652 |
.site-footer a { |
|
2653 |
color: #686758; |
|
2654 |
} |
|
2655 |
||
2656 |
.site-footer .sidebar-container { |
|
2657 |
background-color: #220e10; |
|
2658 |
padding: 20px 0; |
|
2659 |
} |
|
2660 |
||
2661 |
.site-footer .widget-area { |
|
2662 |
margin: 0 auto; |
|
2663 |
max-width: 1040px; |
|
2664 |
width: 100%; |
|
2665 |
} |
|
2666 |
||
2667 |
.sidebar .site-footer .widget-area { |
|
2668 |
max-width: 724px; |
|
2669 |
position: relative; |
|
2670 |
left: -158px; |
|
2671 |
} |
|
2672 |
||
2673 |
.site-footer .widget { |
|
2674 |
background: transparent; |
|
2675 |
color: #fff; |
|
2676 |
float: left; |
|
2677 |
margin-right: 20px; |
|
2678 |
width: 245px; |
|
2679 |
} |
|
2680 |
||
2681 |
.sidebar .site-footer .widget { |
|
2682 |
width: 228px; |
|
2683 |
} |
|
2684 |
||
2685 |
.sidebar .site-footer .widget:nth-of-type(4), |
|
2686 |
.sidebar .site-footer .widget:nth-of-type(3) { |
|
2687 |
margin-right: 0; |
|
2688 |
} |
|
2689 |
||
2690 |
.site-footer .widget a { |
|
2691 |
color: #e6402a; |
|
2692 |
} |
|
2693 |
||
2694 |
.site-footer .widget-title, |
|
2695 |
.site-footer .widget-title a, |
|
2696 |
.site-footer .wp-caption-text { |
|
2697 |
color: #fff; |
|
2698 |
} |
|
2699 |
||
2700 |
.site-info { |
|
2701 |
margin: 0 auto; |
|
2702 |
max-width: 1040px; |
|
2703 |
padding: 30px 0; |
|
2704 |
width: 100%; |
|
2705 |
} |
|
2706 |
||
2707 |
#wpstats { |
|
2708 |
display: block; |
|
2709 |
margin: -10px auto 0; |
|
2710 |
} |
|
2711 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2712 |
.site-footer span[role=separator] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2713 |
padding: 0 0.25em 0 0.5em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2714 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2715 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2716 |
.site-footer span[role=separator]::before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2717 |
content: '\002f'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2718 |
} |
0 | 2719 |
|
2720 |
/** |
|
2721 |
* 8.0 Media Queries |
|
2722 |
* ---------------------------------------------------------------------------- |
|
2723 |
*/ |
|
2724 |
||
5 | 2725 |
/* Does the same thing as <meta name="viewport" content="width=device-width">, |
2726 |
* but in the future W3C standard way. -ms- prefix is required for IE10+ to |
|
2727 |
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor |
|
2728 |
* the meta tag. See https://core.trac.wordpress.org/ticket/25888. |
|
2729 |
*/ |
|
2730 |
@-ms-viewport { |
|
2731 |
width: device-width; |
|
2732 |
} |
|
2733 |
@viewport { |
|
2734 |
width: device-width; |
|
2735 |
} |
|
2736 |
||
0 | 2737 |
@media (max-width: 1599px) { |
2738 |
.site { |
|
2739 |
border: 0; |
|
2740 |
} |
|
2741 |
} |
|
2742 |
||
2743 |
@media (max-width: 1069px) { |
|
2744 |
.sidebar img.alignleft, |
|
2745 |
.sidebar .wp-caption.alignleft { |
|
2746 |
margin-left: 0; |
|
2747 |
} |
|
2748 |
||
2749 |
.sidebar img.alignright, |
|
2750 |
.sidebar .wp-caption.alignright { |
|
2751 |
margin-right: 0; |
|
2752 |
} |
|
2753 |
||
2754 |
.error404 .page-header { |
|
2755 |
margin-left: auto; |
|
2756 |
max-width: 604px; |
|
2757 |
width: 100%; |
|
2758 |
} |
|
2759 |
||
2760 |
.archive-header, |
|
2761 |
.search .page-header, |
|
2762 |
.archive .page-header, |
|
2763 |
.blog .page-header, |
|
2764 |
.error404 .page-content, |
|
2765 |
.search .page-content, |
|
2766 |
.archive .page-content, |
|
2767 |
.attachment .entry-header, |
|
2768 |
.attachment .entry-content, |
|
2769 |
.post-navigation .nav-links, |
|
2770 |
.sidebar .site-info, |
|
2771 |
.site-footer .widget-area { |
|
2772 |
padding-left: 20px; |
|
2773 |
padding-right: 20px; |
|
2774 |
} |
|
2775 |
||
2776 |
.error404 .page-title { |
|
2777 |
font-size: 24px; |
|
2778 |
padding: 180px; |
|
2779 |
} |
|
2780 |
||
2781 |
.error404 .page-title:before { |
|
2782 |
font-size: 554px; |
|
2783 |
} |
|
2784 |
||
2785 |
.attachment .image-navigation { |
|
2786 |
max-width: 724px; |
|
2787 |
} |
|
2788 |
||
2789 |
.image-navigation .nav-previous, |
|
2790 |
.image-navigation .nav-next { |
|
2791 |
position: static; |
|
2792 |
} |
|
2793 |
||
2794 |
.site-main .widget-area { |
|
2795 |
margin-right: 60px; |
|
2796 |
} |
|
2797 |
} |
|
2798 |
||
2799 |
@media (max-width: 999px) { |
|
2800 |
.sidebar .entry-header, |
|
2801 |
.sidebar .entry-content, |
|
2802 |
.sidebar .entry-summary, |
|
2803 |
.sidebar .entry-meta, |
|
2804 |
.sidebar .comment-list, |
|
2805 |
.sidebar .comment-reply-title, |
|
2806 |
.sidebar .comment-navigation, |
|
2807 |
.sidebar .comment-respond .comment-form, |
|
2808 |
.sidebar .featured-gallery, |
|
2809 |
.sidebar .post-navigation .nav-links, |
|
2810 |
.author.sidebar .author-info { |
|
2811 |
max-width: 604px; |
|
2812 |
padding-left: 0; |
|
2813 |
padding-right: 0; |
|
2814 |
} |
|
2815 |
||
2816 |
.sidebar .site-info, |
|
2817 |
.search.sidebar .page-content, |
|
2818 |
.blog.sidebar .page-content, |
|
2819 |
.attachment .entry-header, |
|
2820 |
.sidebar .comments-title { |
|
2821 |
max-width: 604px; |
|
2822 |
} |
|
2823 |
||
2824 |
.sidebar .archive-meta, |
|
2825 |
.attachment .entry-header, |
|
2826 |
.search.sidebar .page-content, |
|
2827 |
.blog.sidebar .page-content, |
|
2828 |
.sidebar .site-info, |
|
2829 |
.sidebar .comments-title, |
|
2830 |
.sidebar .no-comments { |
|
2831 |
padding-left: 0; |
|
2832 |
padding-right: 0; |
|
2833 |
} |
|
2834 |
||
2835 |
.attachment .entry-meta { |
|
2836 |
float: left; |
|
2837 |
text-align: left; |
|
2838 |
width: 100%; |
|
2839 |
} |
|
2840 |
||
2841 |
.attachment .entry-content { |
|
2842 |
max-width: 100%; |
|
2843 |
padding: 40px 0; |
|
2844 |
} |
|
2845 |
||
2846 |
.format-status .entry-content { |
|
2847 |
padding-top: 40px; |
|
2848 |
} |
|
2849 |
||
2850 |
.format-status .entry-meta { |
|
2851 |
padding-bottom: 40px; |
|
2852 |
} |
|
2853 |
||
2854 |
.sidebar .format-status .entry-content, |
|
2855 |
.sidebar .format-status .entry-meta { |
|
2856 |
padding-left: 35px; |
|
2857 |
} |
|
2858 |
||
2859 |
.sidebar .format-status .entry-content:before, |
|
2860 |
.sidebar .format-status .entry-meta:before { |
|
2861 |
left: 10px; |
|
2862 |
} |
|
2863 |
||
2864 |
.sidebar .format-status .entry-content p:first-child:before { |
|
2865 |
left: 4px; |
|
2866 |
} |
|
2867 |
||
2868 |
.sidebar .paging-navigation .nav-links { |
|
2869 |
padding: 0 60px; |
|
2870 |
} |
|
2871 |
||
2872 |
.site-main .sidebar-container { |
|
2873 |
height: auto; |
|
2874 |
margin: 0 auto; |
|
2875 |
max-width: 604px; |
|
2876 |
position: relative; |
|
2877 |
top: 20px; |
|
2878 |
} |
|
2879 |
||
2880 |
.site-main .widget-area { |
|
2881 |
float: none; |
|
2882 |
margin: 0; |
|
2883 |
width: 100%; |
|
2884 |
} |
|
2885 |
||
2886 |
.sidebar .site-footer .widget-area { |
|
2887 |
max-width: 100%; |
|
2888 |
left: 0; |
|
2889 |
} |
|
2890 |
} |
|
2891 |
||
2892 |
/* Collapse oversized image and pulled images after iPad breakpoint. */ |
|
2893 |
@media (max-width: 767px) { |
|
5 | 2894 |
.site-header .home-link { |
2895 |
min-height: 0; |
|
2896 |
} |
|
2897 |
.site-title { |
|
2898 |
font-size: 36px; |
|
2899 |
padding: 8px 0 10px; |
|
2900 |
} |
|
0 | 2901 |
.entry-content img.alignleft, |
2902 |
.entry-content .wp-caption.alignleft { |
|
2903 |
margin-left: 0; |
|
2904 |
} |
|
2905 |
||
2906 |
.entry-content img.alignright, |
|
2907 |
.entry-content .wp-caption.alignright { |
|
2908 |
margin-right: 0; |
|
2909 |
} |
|
2910 |
||
2911 |
.attachment .image-navigation, |
|
2912 |
.attachment .entry-attachment .attachment { |
|
2913 |
max-width: 604px; |
|
2914 |
padding: 0; |
|
2915 |
width: 100%; |
|
2916 |
} |
|
2917 |
||
2918 |
.gallery-caption { |
|
2919 |
display: none; |
|
2920 |
} |
|
2921 |
} |
|
2922 |
||
2923 |
@media (max-width: 643px) { |
|
2924 |
.site-title { |
|
2925 |
font-size: 30px; |
|
2926 |
} |
|
2927 |
||
2928 |
#content .entry-header, |
|
2929 |
#content .entry-content, |
|
2930 |
#content .entry-summary, |
|
2931 |
#content footer.entry-meta, |
|
2932 |
#content .featured-gallery, |
|
2933 |
.search.sidebar .page-content, |
|
2934 |
.blog.sidebar .page-content, |
|
2935 |
.sidebar .post-navigation .nav-links, |
|
2936 |
.paging-navigation .nav-links, |
|
2937 |
#content .author-info, |
|
2938 |
.comments-area .comments-title, |
|
2939 |
.comments-area .comment-list, |
|
2940 |
.comments-area .comment-navigation, |
|
2941 |
.comment-respond, |
|
2942 |
.sidebar .site-info, |
|
2943 |
.sidebar .paging-navigation .nav-links { |
|
2944 |
padding-left: 20px; |
|
2945 |
padding-right: 20px; |
|
2946 |
} |
|
2947 |
||
2948 |
#content .format-status .entry-content, |
|
2949 |
#content .format-status .entry-met { |
|
2950 |
padding-left: 35px; |
|
2951 |
} |
|
2952 |
||
2953 |
/* Small menu */ |
|
2954 |
.menu-toggle { |
|
2955 |
cursor: pointer; |
|
2956 |
display: inline-block; |
|
2957 |
font: bold 16px/1.3 "Source Sans Pro", Helvetica, sans-serif; |
|
2958 |
margin: 0; |
|
5 | 2959 |
} |
2960 |
||
2961 |
.menu-toggle, |
|
2962 |
.menu-toggle:hover, |
|
2963 |
.menu-toggle:focus, |
|
2964 |
.menu-toggle:active { |
|
2965 |
background: none; |
|
2966 |
border: none; |
|
2967 |
color: #141412; |
|
0 | 2968 |
padding: 12px 0 12px 20px; |
2969 |
} |
|
2970 |
||
5 | 2971 |
.menu-toggle:focus { |
2972 |
outline: thin dotted; |
|
2973 |
} |
|
2974 |
||
0 | 2975 |
.menu-toggle:after { |
2976 |
content: "\f502"; |
|
2977 |
font-size: 12px; |
|
2978 |
padding-left: 8px; |
|
2979 |
vertical-align: -4px; |
|
2980 |
} |
|
2981 |
||
2982 |
.toggled-on .menu-toggle:after { |
|
2983 |
content: "\f500"; |
|
2984 |
vertical-align: 2px; |
|
2985 |
} |
|
2986 |
||
2987 |
.toggled-on .nav-menu, |
|
2988 |
.toggled-on .nav-menu > ul { |
|
2989 |
display: block; |
|
2990 |
margin-left: 0; |
|
2991 |
padding: 0; |
|
2992 |
width: 100%; |
|
2993 |
} |
|
2994 |
||
2995 |
.toggled-on li, |
|
2996 |
.toggled-on .children { |
|
2997 |
display: block; |
|
2998 |
} |
|
2999 |
||
3000 |
.toggled-on .nav-menu li > ul { |
|
3001 |
background-color: transparent; |
|
3002 |
display: block; |
|
3003 |
float: none; |
|
3004 |
margin-left: 20px; |
|
3005 |
position: relative; |
|
3006 |
left: auto; |
|
3007 |
top: auto; |
|
3008 |
} |
|
3009 |
||
3010 |
.toggled-on .nav-menu li > ul a { |
|
3011 |
color: #141412; |
|
3012 |
width: auto; |
|
3013 |
} |
|
3014 |
||
3015 |
.toggled-on .nav-menu li:hover > a, |
|
3016 |
.toggled-on .nav-menu .children a { |
|
3017 |
background-color: transparent; |
|
3018 |
color: #141412; |
|
3019 |
} |
|
3020 |
||
5 | 3021 |
.toggled-on .nav-menu > li a:hover, |
3022 |
.toggled-on .nav-menu > ul a:hover { |
|
0 | 3023 |
background-color: #db572f; |
3024 |
color: #fff; |
|
3025 |
} |
|
3026 |
||
5 | 3027 |
.toggled-on .nav-menu > li a:focus, |
3028 |
.toggled-on .nav-menu > ul a:focus { |
|
3029 |
background-color: #220e10; |
|
3030 |
color: #fff; |
|
3031 |
} |
|
3032 |
||
0 | 3033 |
ul.nav-menu, |
3034 |
div.nav-menu > ul { |
|
3035 |
display: none; |
|
3036 |
} |
|
3037 |
||
3038 |
#content .featured-gallery { |
|
3039 |
padding-left: 24px; |
|
3040 |
} |
|
3041 |
||
3042 |
.gallery-columns-1 .gallery-item { |
|
3043 |
margin-right: 0; |
|
3044 |
width: 100%; |
|
3045 |
} |
|
3046 |
||
3047 |
.entry-title, |
|
3048 |
.format-chat .entry-title, |
|
3049 |
.format-image .entry-title, |
|
3050 |
.format-gallery .entry-title, |
|
3051 |
.format-video .entry-title { |
|
3052 |
font-size: 22px; |
|
3053 |
font-weight: bold; |
|
3054 |
} |
|
3055 |
||
3056 |
.format-quote blockquote, |
|
3057 |
.format-status .entry-content { |
|
3058 |
font-size: 18px; |
|
3059 |
} |
|
3060 |
||
3061 |
.format-quote blockquote small, |
|
3062 |
.format-quote blockquote cite { |
|
3063 |
font-size: 13px; |
|
3064 |
} |
|
3065 |
||
3066 |
.error404 .page-title { |
|
3067 |
padding: 40px 0 0; |
|
3068 |
} |
|
3069 |
||
3070 |
.error404 .page-title:before { |
|
3071 |
content: normal; |
|
3072 |
} |
|
3073 |
||
3074 |
.comment-author { |
|
3075 |
margin-right: 30px; |
|
3076 |
} |
|
3077 |
||
3078 |
.comment-author .avatar { |
|
3079 |
height: auto; |
|
3080 |
max-width: 100%; |
|
3081 |
} |
|
3082 |
||
3083 |
.comment-metadata, |
|
3084 |
.comment-content, |
|
3085 |
.comment-list .reply { |
|
3086 |
width: 70%; |
|
3087 |
width: -webkit-calc(100% - 104px); |
|
3088 |
width: calc(100% - 104px); |
|
3089 |
} |
|
3090 |
||
3091 |
.comment-form input[type="text"], |
|
3092 |
.comment-form input[type="email"], |
|
3093 |
.comment-form input[type="url"] { |
|
3094 |
width: -webkit-calc(100% - 120px); |
|
3095 |
width: calc(100% - 120px); |
|
3096 |
} |
|
3097 |
||
3098 |
.comment-form textarea { |
|
3099 |
height: 80px; /* Smaller field for mobile. */ |
|
3100 |
} |
|
3101 |
||
3102 |
/* Audio */ |
|
3103 |
.format-audio .entry-content:before { |
|
3104 |
display: none; |
|
3105 |
} |
|
3106 |
||
3107 |
.format-audio .audio-content { |
|
3108 |
background-image: none; |
|
3109 |
float: none; |
|
3110 |
padding-left: 0; |
|
3111 |
width: auto; |
|
3112 |
} |
|
3113 |
} |
|
3114 |
||
3115 |
/* Mobile devices */ |
|
3116 |
@media (max-width: 359px) { |
|
5 | 3117 |
.site-title { |
3118 |
font-weight: normal; |
|
3119 |
} |
|
3120 |
.site-description { |
|
3121 |
clip: rect(1px, 1px, 1px, 1px); |
|
3122 |
position: absolute; |
|
3123 |
} |
|
0 | 3124 |
.gallery { |
3125 |
margin-left: 0; |
|
3126 |
} |
|
3127 |
||
3128 |
.gallery .gallery-item, |
|
3129 |
.gallery-columns-2.gallery-size-thumbnail .gallery-item { |
|
3130 |
max-width: none; |
|
3131 |
width: 49%; |
|
3132 |
width: -webkit-calc(50% - 4px); |
|
3133 |
width: calc(50% - 4px); |
|
3134 |
} |
|
3135 |
||
3136 |
.gallery-columns-1.gallery-size-medium, |
|
3137 |
.gallery-columns-1.gallery-size-thumbnail, |
|
3138 |
.gallery-columns-2.gallery-size-thumbnail, |
|
3139 |
.gallery-columns-3.gallery-size-thumbnail { |
|
3140 |
display: block; |
|
3141 |
} |
|
3142 |
||
3143 |
.gallery-columns-1 .gallery-item, |
|
3144 |
.gallery-columns-1.gallery-size-medium .gallery-item, |
|
3145 |
.gallery-columns-1.gallery-size-thumbnail .gallery-item { |
|
3146 |
text-align: center; |
|
3147 |
width: 98%; |
|
3148 |
width: -webkit-calc(100% - 4px); |
|
3149 |
width: calc(100% - 4px); |
|
3150 |
} |
|
3151 |
||
3152 |
.gallery-columns-3 .gallery-item:nth-of-type(3n), |
|
3153 |
.gallery-columns-5 .gallery-item:nth-of-type(5n), |
|
3154 |
.gallery-columns-7 .gallery-item:nth-of-type(7n), |
|
3155 |
.gallery-columns-9 .gallery-item:nth-of-type(9n) { |
|
3156 |
margin-right: 4px; |
|
3157 |
} |
|
3158 |
||
3159 |
.gallery br { |
|
3160 |
display: none; |
|
3161 |
} |
|
3162 |
||
3163 |
.gallery .gallery-item:nth-of-type(even) { |
|
3164 |
margin-right: 0; |
|
3165 |
} |
|
3166 |
||
3167 |
/* Comments */ |
|
3168 |
.comment-author { |
|
3169 |
margin: 0 0 5px; |
|
3170 |
max-width: 100%; |
|
3171 |
} |
|
3172 |
||
3173 |
.comment-author .avatar { |
|
3174 |
display: inline; |
|
3175 |
margin: 0 5px 0 0; |
|
3176 |
max-width: 20px; |
|
3177 |
} |
|
3178 |
||
3179 |
.comment-metadata, |
|
3180 |
.comment-content, |
|
3181 |
.comment-list .reply { |
|
3182 |
width: 100%; |
|
3183 |
} |
|
3184 |
} |
|
3185 |
||
3186 |
||
3187 |
/** |
|
3188 |
* 9.0 Print |
|
3189 |
* ---------------------------------------------------------------------------- |
|
3190 |
*/ |
|
3191 |
||
3192 |
/* Retina-specific styles. */ |
|
3193 |
@media print, |
|
3194 |
(-o-min-device-pixel-ratio: 5/4), |
|
3195 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
3196 |
(min-resolution: 120dpi) { |
|
3197 |
||
3198 |
.site-header .search-field { |
|
3199 |
background-image: url(images/search-icon-2x.png); |
|
3200 |
} |
|
3201 |
||
3202 |
.format-audio .audio-content, |
|
3203 |
.format-status .entry-content:before, |
|
3204 |
.format-status .entry-meta:before, |
|
3205 |
.comment-list > li:after, |
|
3206 |
.comment-list .children > li:before { |
|
3207 |
background-image: url(images/dotted-line-2x.png); |
|
3208 |
} |
|
3209 |
} |
|
3210 |
||
3211 |
@media print { |
|
3212 |
body { |
|
3213 |
background: none !important; |
|
3214 |
color: #000; |
|
3215 |
font-size: 10pt; |
|
3216 |
} |
|
3217 |
||
3218 |
footer a[rel="bookmark"]:link:after, |
|
3219 |
footer a[rel="bookmark"]:visited:after { |
|
3220 |
content: " [" attr(href) "] "; /* Show URLs */ |
|
3221 |
} |
|
3222 |
||
3223 |
.site { |
|
3224 |
max-width: 98%; |
|
3225 |
} |
|
3226 |
||
3227 |
.site-header { |
|
3228 |
background-image: none !important; |
|
3229 |
} |
|
3230 |
||
3231 |
.site-header .home-link { |
|
3232 |
max-width: none; |
|
3233 |
min-height: 0; |
|
3234 |
} |
|
3235 |
||
3236 |
.site-title { |
|
3237 |
color: #000; |
|
3238 |
font-size: 21pt; |
|
3239 |
} |
|
3240 |
||
3241 |
.site-description { |
|
3242 |
font-size: 10pt; |
|
3243 |
} |
|
3244 |
||
3245 |
.author-avatar, |
|
3246 |
.site-footer, |
|
3247 |
.comment-respond, |
|
3248 |
.comments-area .comment-edit-link, |
|
3249 |
.comments-area .reply, |
|
3250 |
.comments-link, |
|
3251 |
.entry-meta .edit-link, |
|
3252 |
.page-links, |
|
3253 |
.site-content nav, |
|
3254 |
.widget-area, |
|
3255 |
.main-navigation, |
|
3256 |
.navbar, |
|
3257 |
.more-link { |
|
3258 |
display: none; |
|
3259 |
} |
|
3260 |
||
3261 |
.entry-header, |
|
3262 |
.entry-content, |
|
3263 |
.entry-summary, |
|
3264 |
.entry-meta { |
|
3265 |
margin: 0; |
|
3266 |
width: 100%; |
|
3267 |
} |
|
3268 |
||
3269 |
.page-title, |
|
3270 |
.entry-title { |
|
3271 |
font-size: 21pt; |
|
3272 |
} |
|
3273 |
||
3274 |
.entry-meta, |
|
3275 |
.entry-meta a { |
|
3276 |
color: #444; |
|
3277 |
font-size: 10pt; |
|
3278 |
} |
|
3279 |
||
3280 |
.entry-content img.alignleft, |
|
3281 |
.entry-content .wp-caption.alignleft { |
|
3282 |
margin-left: 0; |
|
3283 |
} |
|
3284 |
||
3285 |
.entry-content img.alignright, |
|
3286 |
.entry-content .wp-caption.alignright { |
|
3287 |
margin-right: 0; |
|
3288 |
} |
|
3289 |
||
3290 |
.format-image .entry-content .size-full { |
|
3291 |
margin: 0; |
|
3292 |
} |
|
3293 |
||
3294 |
/* Remove colors from post formats */ |
|
3295 |
.hentry { |
|
3296 |
background-color: #fff; |
|
3297 |
} |
|
3298 |
||
3299 |
/* Comments */ |
|
3300 |
.comments-area > li.comment { |
|
3301 |
background: none; |
|
3302 |
position: relative; |
|
3303 |
width: auto; |
|
3304 |
} |
|
3305 |
||
3306 |
.comment-metadata { |
|
3307 |
float: none; |
|
3308 |
} |
|
3309 |
||
3310 |
.comment-author .fn, |
|
3311 |
.comment-reply-link, |
|
3312 |
.comment-reply-login { |
|
3313 |
color: #333; |
|
3314 |
} |
|
5 | 3315 |
} |