Advertisement
Guest User

three.js twentythirteen integration

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