Advertisement
DhruvKanojia

CSS

Apr 20th, 2015
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 80.24 KB | None | 0 0
  1. /*
  2. Theme Name: Twenty Fourteen
  3. Theme URI: http://wordpress.org/themes/twentyfourteen
  4. Author: the WordPress team
  5. Author URI: http://wordpress.org/
  6. Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.
  7. Version: 1.3
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Tags: black, green, white, light, dark, two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
  11. Text Domain: twentyfourteen
  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. * Table of Contents:
  19. *
  20. * 1.0 - Reset
  21. * 2.0 - Repeatable Patterns
  22. * 3.0 - Basic Structure
  23. * 4.0 - Header
  24. * 5.0 - Navigation
  25. * 6.0 - Content
  26. * 6.1 - Post Thumbnail
  27. * 6.2 - Entry Header
  28. * 6.3 - Entry Meta
  29. * 6.4 - Entry Content
  30. * 6.5 - Galleries
  31. * 6.6 - Post Formats
  32. * 6.7 - Post/Image/Paging Navigation
  33. * 6.8 - Attachments
  34. * 6.9 - Archives
  35. * 6.10 - Contributor Page
  36. * 6.11 - 404 Page
  37. * 6.12 - Full-width
  38. * 6.13 - Singular
  39. * 6.14 - Comments
  40. * 7.0 - Sidebar
  41. * 7.1 - Widgets
  42. * 7.2 - Content Sidebar Widgets
  43. * 8.0 - Footer
  44. * 9.0 - Featured Content
  45. * 10.0 - Multisite
  46. * 11.0 - Media Queries
  47. * 12.0 - Print
  48. * -----------------------------------------------------------------------------
  49. */
  50.  
  51.  
  52. /**
  53. * 1.0 Reset
  54. *
  55. * Resetting and rebuilding styles have been helped along thanks to the fine
  56. * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
  57. * along with Nicolas Gallagher and Jonathan Neal
  58. * http://necolas.github.com/normalize.css/ and Blueprint
  59. * http://www.blueprintcss.org/
  60. *
  61. * -----------------------------------------------------------------------------
  62. */
  63.  
  64. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  65. border: 0;
  66. font-family: inherit;
  67. font-size: 100%;
  68. font-style: inherit;
  69. font-weight: inherit;
  70. margin: 0;
  71. outline: 0;
  72. padding: 0;
  73. vertical-align: baseline;
  74. }
  75.  
  76. article,
  77. aside,
  78. details,
  79. figcaption,
  80. figure,
  81. footer,
  82. header,
  83. hgroup,
  84. nav,
  85. section {
  86. display: block;
  87. }
  88.  
  89. audio,
  90. canvas,
  91. video {
  92. display: inline-block;
  93. max-width: 100%;
  94. }
  95.  
  96. html {
  97. overflow-y: scroll;
  98. -webkit-text-size-adjust: 100%;
  99. -ms-text-size-adjust: 100%;
  100. }
  101.  
  102. body,
  103. button,
  104. input,
  105. select,
  106. textarea {
  107. color: #2b2b2b;
  108. font-family: Lato, sans-serif;
  109. font-size: 16px;
  110. font-weight: 400;
  111. line-height: 1.5;
  112. }
  113.  
  114. body {
  115. background: #f5f5f5;
  116. }
  117.  
  118. a {
  119. color: #24890d;
  120. text-decoration: none;
  121. }
  122.  
  123. a:focus {
  124. outline: thin dotted;
  125. }
  126.  
  127. a:hover,
  128. a:active {
  129. outline: 0;
  130. }
  131.  
  132. a:active,
  133. a:hover {
  134. color: #41a62a;
  135. }
  136.  
  137. h1,
  138. h2,
  139. h3,
  140. h4,
  141. h5,
  142. h6 {
  143. clear: both;
  144. font-weight: 700;
  145. margin: 36px 0 12px;
  146. }
  147.  
  148. h1 {
  149. font-size: 26px;
  150. line-height: 1.3846153846;
  151. }
  152.  
  153. h2 {
  154. font-size: 24px;
  155. line-height: 1;
  156. }
  157.  
  158. h3 {
  159. font-size: 22px;
  160. line-height: 1.0909090909;
  161. }
  162.  
  163. h4 {
  164. font-size: 20px;
  165. line-height: 1.2;
  166. }
  167.  
  168. h5 {
  169. font-size: 18px;
  170. line-height: 1.3333333333;
  171. }
  172.  
  173. h6 {
  174. font-size: 16px;
  175. line-height: 1.5;
  176. }
  177.  
  178. address {
  179. font-style: italic;
  180. margin-bottom: 24px;
  181. }
  182.  
  183. abbr[title] {
  184. border-bottom: 1px dotted #2b2b2b;
  185. cursor: help;
  186. }
  187.  
  188. b,
  189. strong {
  190. font-weight: 700;
  191. }
  192.  
  193. cite,
  194. dfn,
  195. em,
  196. i {
  197. font-style: italic;
  198. }
  199.  
  200. mark,
  201. ins {
  202. background: #fff9c0;
  203. text-decoration: none;
  204. }
  205.  
  206. p {
  207. margin-bottom: 24px;
  208. }
  209.  
  210. code,
  211. kbd,
  212. tt,
  213. var,
  214. samp,
  215. pre {
  216. font-family: monospace, serif;
  217. font-size: 15px;
  218. -webkit-hyphens: none;
  219. -moz-hyphens: none;
  220. -ms-hyphens: none;
  221. hyphens: none;
  222. line-height: 1.6;
  223. }
  224.  
  225. pre {
  226. border: 1px solid rgba(0, 0, 0, 0.1);
  227. -webkit-box-sizing: border-box;
  228. -moz-box-sizing: border-box;
  229. box-sizing: border-box;
  230. margin-bottom: 24px;
  231. max-width: 100%;
  232. overflow: auto;
  233. padding: 12px;
  234. white-space: pre;
  235. white-space: pre-wrap;
  236. word-wrap: break-word;
  237. }
  238.  
  239. blockquote,
  240. q {
  241. -webkit-hyphens: none;
  242. -moz-hyphens: none;
  243. -ms-hyphens: none;
  244. hyphens: none;
  245. quotes: none;
  246. }
  247.  
  248. blockquote:before,
  249. blockquote:after,
  250. q:before,
  251. q:after {
  252. content: "";
  253. content: none;
  254. }
  255.  
  256. blockquote {
  257. color: #767676;
  258. font-size: 19px;
  259. font-style: italic;
  260. font-weight: 300;
  261. line-height: 1.2631578947;
  262. margin-bottom: 24px;
  263. }
  264.  
  265. blockquote cite,
  266. blockquote small {
  267. color: #2b2b2b;
  268. font-size: 16px;
  269. font-weight: 400;
  270. line-height: 1.5;
  271. }
  272.  
  273. blockquote em,
  274. blockquote i,
  275. blockquote cite {
  276. font-style: normal;
  277. }
  278.  
  279. blockquote strong,
  280. blockquote b {
  281. font-weight: 400;
  282. }
  283.  
  284. small {
  285. font-size: smaller;
  286. }
  287.  
  288. big {
  289. font-size: 125%;
  290. }
  291.  
  292. sup,
  293. sub {
  294. font-size: 75%;
  295. height: 0;
  296. line-height: 0;
  297. position: relative;
  298. vertical-align: baseline;
  299. }
  300.  
  301. sup {
  302. bottom: 1ex;
  303. }
  304.  
  305. sub {
  306. top: .5ex;
  307. }
  308.  
  309. dl {
  310. margin-bottom: 24px;
  311. }
  312.  
  313. dt {
  314. font-weight: bold;
  315. }
  316.  
  317. dd {
  318. margin-bottom: 24px;
  319. }
  320.  
  321. ul,
  322. ol {
  323. list-style: none;
  324. margin: 0 0 24px 20px;
  325. }
  326.  
  327. ul {
  328. list-style: disc;
  329. }
  330.  
  331. ol {
  332. list-style: decimal;
  333. }
  334.  
  335. li > ul,
  336. li > ol {
  337. margin: 0 0 0 20px;
  338. }
  339.  
  340. img {
  341. -ms-interpolation-mode: bicubic;
  342. border: 0;
  343. vertical-align: middle;
  344. }
  345.  
  346. figure {
  347. margin: 0;
  348. }
  349.  
  350. fieldset {
  351. border: 1px solid rgba(0, 0, 0, 0.1);
  352. margin: 0 0 24px;
  353. padding: 11px 12px 0;
  354. }
  355.  
  356. legend {
  357. white-space: normal;
  358. }
  359.  
  360. button,
  361. input,
  362. select,
  363. textarea {
  364. -webkit-box-sizing: border-box;
  365. -moz-box-sizing: border-box;
  366. box-sizing: border-box;
  367. font-size: 100%;
  368. margin: 0;
  369. max-width: 100%;
  370. vertical-align: baseline;
  371. }
  372.  
  373. button,
  374. input {
  375. line-height: normal;
  376. }
  377.  
  378. input,
  379. textarea {
  380. background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */
  381. }
  382.  
  383. button,
  384. html input[type="button"],
  385. input[type="reset"],
  386. input[type="submit"] {
  387. -webkit-appearance: button;
  388. cursor: pointer;
  389. }
  390.  
  391. button[disabled],
  392. input[disabled] {
  393. cursor: default;
  394. }
  395.  
  396. input[type="checkbox"],
  397. input[type="radio"] {
  398. padding: 0;
  399. }
  400.  
  401. input[type="search"] {
  402. -webkit-appearance: textfield;
  403. }
  404.  
  405. input[type="search"]::-webkit-search-decoration {
  406. -webkit-appearance: none;
  407. }
  408.  
  409. button::-moz-focus-inner,
  410. input::-moz-focus-inner {
  411. border: 0;
  412. padding: 0;
  413. }
  414.  
  415. textarea {
  416. overflow: auto;
  417. vertical-align: top;
  418. }
  419.  
  420. table,
  421. th,
  422. td {
  423. border: 1px solid rgba(0, 0, 0, 0.1);
  424. }
  425.  
  426. table {
  427. border-collapse: separate;
  428. border-spacing: 0;
  429. border-width: 1px 0 0 1px;
  430. margin-bottom: 24px;
  431. width: 100%;
  432. }
  433.  
  434. caption,
  435. th,
  436. td {
  437. font-weight: normal;
  438. text-align: left;
  439. }
  440.  
  441. th {
  442. border-width: 0 1px 1px 0;
  443. font-weight: bold;
  444. }
  445.  
  446. td {
  447. border-width: 0 1px 1px 0;
  448. }
  449.  
  450. del {
  451. color: #767676;
  452. }
  453.  
  454. hr {
  455. background-color: rgba(0, 0, 0, 0.1);
  456. border: 0;
  457. height: 1px;
  458. margin-bottom: 23px;
  459. }
  460.  
  461. /* Support a widely-adopted but non-standard selector for text selection styles
  462. * to achieve a better experience. See https://core.trac.wordpress.org/ticket/25898.
  463. */
  464. ::selection {
  465. background: #24890d;
  466. color: #fff;
  467. text-shadow: none;
  468. }
  469.  
  470. ::-moz-selection {
  471. background: #24890d;
  472. color: #fff;
  473. text-shadow: none;
  474. }
  475.  
  476.  
  477. /**
  478. * 2.0 Repeatable Patterns
  479. * -----------------------------------------------------------------------------
  480. */
  481.  
  482. /* Input fields */
  483.  
  484. input,
  485. textarea {
  486. border: 1px solid rgba(0, 0, 0, 0.1);
  487. border-radius: 2px;
  488. color: #2b2b2b;
  489. padding: 8px 10px 7px;
  490. }
  491.  
  492. textarea {
  493. width: 100%;
  494. }
  495.  
  496. input:focus,
  497. textarea:focus {
  498. border: 1px solid rgba(0, 0, 0, 0.3);
  499. outline: 0;
  500. }
  501.  
  502. /* Buttons */
  503.  
  504. button,
  505. .button,
  506. input[type="button"],
  507. input[type="reset"],
  508. input[type="submit"] {
  509. background-color: #24890d;
  510. border: 0;
  511. border-radius: 2px;
  512. color: #fff;
  513. font-size: 12px;
  514. font-weight: 700;
  515. padding: 10px 30px 11px;
  516. text-transform: uppercase;
  517. vertical-align: bottom;
  518. }
  519.  
  520. button:hover,
  521. button:focus,
  522. .button:hover,
  523. .button:focus,
  524. input[type="button"]:hover,
  525. input[type="button"]:focus,
  526. input[type="reset"]:hover,
  527. input[type="reset"]:focus,
  528. input[type="submit"]:hover,
  529. input[type="submit"]:focus {
  530. background-color: #41a62a;
  531. color: #fff;
  532. }
  533.  
  534. button:active,
  535. .button:active,
  536. input[type="button"]:active,
  537. input[type="reset"]:active,
  538. input[type="submit"]:active {
  539. background-color: #55d737;
  540. }
  541.  
  542. .search-field {
  543. width: 100%;
  544. }
  545.  
  546. .search-submit {
  547. display: none;
  548. }
  549.  
  550. /* Placeholder text color -- selectors need to be separate to work. */
  551.  
  552. ::-webkit-input-placeholder {
  553. color: #939393;
  554. }
  555.  
  556. :-moz-placeholder {
  557. color: #939393;
  558. }
  559.  
  560. ::-moz-placeholder {
  561. color: #939393;
  562. opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
  563. }
  564.  
  565. :-ms-input-placeholder {
  566. color: #939393;
  567. }
  568.  
  569. /* Responsive images. Fluid images for posts, comments, and widgets */
  570.  
  571. .comment-content img,
  572. .entry-content img,
  573. .entry-summary img,
  574. #site-header img,
  575. .widget img,
  576. .wp-caption {
  577. max-width: 100%;
  578. }
  579.  
  580. /**
  581. * Make sure images with WordPress-added height and width attributes are
  582. * scaled correctly.
  583. */
  584.  
  585. .comment-content img[height],
  586. .entry-content img,
  587. .entry-summary img,
  588. img[class*="align"],
  589. img[class*="wp-image-"],
  590. img[class*="attachment-"],
  591. #site-header img {
  592. height: auto;
  593. }
  594.  
  595. img.size-full,
  596. img.size-large,
  597. .wp-post-image,
  598. .post-thumbnail img {
  599. height: auto;
  600. max-width: 100%;
  601. }
  602.  
  603. /* Make sure embeds and iframes fit their containers */
  604.  
  605. embed,
  606. iframe,
  607. object,
  608. video {
  609. margin-bottom: 24px;
  610. max-width: 100%;
  611. }
  612.  
  613. p > embed,
  614. p > iframe,
  615. p > object,
  616. span > embed,
  617. span > iframe,
  618. span > object {
  619. margin-bottom: 0;
  620. }
  621.  
  622. /* Alignment */
  623.  
  624. .alignleft {
  625. float: left;
  626. }
  627.  
  628. .alignright {
  629. float: right;
  630. }
  631.  
  632. .aligncenter {
  633. display: block;
  634. margin-left: auto;
  635. margin-right: auto;
  636. }
  637.  
  638. blockquote.alignleft,
  639. figure.wp-caption.alignleft,
  640. img.alignleft {
  641. margin: 7px 24px 7px 0;
  642. }
  643.  
  644. .wp-caption.alignleft {
  645. margin: 7px 14px 7px 0;
  646. }
  647.  
  648. blockquote.alignright,
  649. figure.wp-caption.alignright,
  650. img.alignright {
  651. margin: 7px 0 7px 24px;
  652. }
  653.  
  654. .wp-caption.alignright {
  655. margin: 7px 0 7px 14px;
  656. }
  657.  
  658. blockquote.aligncenter,
  659. img.aligncenter,
  660. .wp-caption.aligncenter {
  661. margin-top: 7px;
  662. margin-bottom: 7px;
  663. }
  664.  
  665. .site-content blockquote.alignleft,
  666. .site-content blockquote.alignright {
  667. border-top: 1px solid rgba(0, 0, 0, 0.1);
  668. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  669. padding-top: 17px;
  670. width: 50%;
  671. }
  672.  
  673. .site-content blockquote.alignleft p,
  674. .site-content blockquote.alignright p {
  675. margin-bottom: 17px;
  676. }
  677.  
  678. .wp-caption {
  679. margin-bottom: 24px;
  680. }
  681.  
  682. .wp-caption img[class*="wp-image-"] {
  683. display: block;
  684. margin: 0;
  685. }
  686.  
  687. .wp-caption {
  688. color: #767676;
  689. }
  690.  
  691. .wp-caption-text {
  692. -webkit-box-sizing: border-box;
  693. -moz-box-sizing: border-box;
  694. box-sizing: border-box;
  695. font-size: 12px;
  696. font-style: italic;
  697. line-height: 1.5;
  698. margin: 9px 0;
  699. }
  700.  
  701. div.wp-caption .wp-caption-text {
  702. padding-right: 10px;
  703. }
  704.  
  705. div.wp-caption.alignright img[class*="wp-image-"],
  706. div.wp-caption.alignright .wp-caption-text {
  707. padding-left: 10px;
  708. padding-right: 0;
  709. }
  710.  
  711. .wp-smiley {
  712. border: 0;
  713. margin-bottom: 0;
  714. margin-top: 0;
  715. padding: 0;
  716. }
  717.  
  718. /* Assistive text */
  719.  
  720. .screen-reader-text {
  721. clip: rect(1px, 1px, 1px, 1px);
  722. position: absolute;
  723. }
  724.  
  725. .screen-reader-text:focus {
  726. background-color: #f1f1f1;
  727. border-radius: 3px;
  728. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  729. clip: auto;
  730. color: #21759b;
  731. display: block;
  732. font-size: 14px;
  733. font-weight: bold;
  734. height: auto;
  735. line-height: normal;
  736. padding: 15px 23px 14px;
  737. position: absolute;
  738. left: 5px;
  739. top: 5px;
  740. text-decoration: none;
  741. text-transform: none;
  742. width: auto;
  743. z-index: 100000; /* Above WP toolbar */
  744. }
  745.  
  746. .hide {
  747. display: none;
  748. }
  749.  
  750. /* Clearing floats */
  751.  
  752. .footer-sidebar:before,
  753. .footer-sidebar:after,
  754. .hentry:before,
  755. .hentry:after,
  756. .gallery:before,
  757. .gallery:after,
  758. .slider-direction-nav:before,
  759. .slider-direction-nav:after,
  760. .contributor-info:before,
  761. .contributor-info:after,
  762. .search-box:before,
  763. .search-box:after,
  764. [class*="content"]:before,
  765. [class*="content"]:after,
  766. [class*="site"]:before,
  767. [class*="site"]:after {
  768. content: "";
  769. display: table;
  770. }
  771.  
  772. .footer-sidebar:after,
  773. .hentry:after,
  774. .gallery:after,
  775. .slider-direction-nav:after,
  776. .contributor-info:after,
  777. .search-box:after,
  778. [class*="content"]:after,
  779. [class*="site"]:after {
  780. clear: both;
  781. }
  782.  
  783. /* Genericons */
  784.  
  785. .bypostauthor > article .fn:before,
  786. .comment-edit-link:before,
  787. .comment-reply-link:before,
  788. .comment-reply-login:before,
  789. .comment-reply-title small a:before,
  790. .contributor-posts-link:before,
  791. .menu-toggle:before,
  792. .search-toggle:before,
  793. .slider-direction-nav a:before,
  794. .widget_twentyfourteen_ephemera .widget-title:before {
  795. -webkit-font-smoothing: antialiased;
  796. display: inline-block;
  797. font: normal 16px/1 Genericons;
  798. text-decoration: inherit;
  799. vertical-align: text-bottom;
  800. }
  801.  
  802. /* Separators */
  803.  
  804. .site-content span + .entry-date:before,
  805. .full-size-link:before,
  806. .parent-post-link:before,
  807. span + .byline:before,
  808. span + .comments-link:before,
  809. span + .edit-link:before,
  810. .widget_twentyfourteen_ephemera .entry-title:after {
  811. content: "\0020\007c\0020";
  812. }
  813.  
  814.  
  815. /**
  816. * 3.0 Basic Structure
  817. * -----------------------------------------------------------------------------
  818. */
  819.  
  820. .site {
  821. background-color: #fff;
  822. max-width: 1260px;
  823. position: relative;
  824. }
  825.  
  826. .main-content {
  827. width: 100%;
  828. }
  829.  
  830.  
  831. /**
  832. * 4.0 Header
  833. * -----------------------------------------------------------------------------
  834. */
  835.  
  836. /* Ensure that there is no gap between the header and
  837. the admin bar for WordPress versions before 3.8. */
  838. #wpadminbar {
  839. min-height: 32px;
  840. }
  841.  
  842. #site-header {
  843. position: relative;
  844. z-index: 3;
  845. }
  846.  
  847. .site-header {
  848. background-color: #000;
  849. max-width: 1260px;
  850. position: relative;
  851. width: 100%;
  852. z-index: 4;
  853. }
  854.  
  855. .header-main {
  856. min-height: 48px;
  857. padding: 0 10px;
  858. }
  859.  
  860. .site-title {
  861. float: left;
  862. font-size: 18px;
  863. font-weight: 700;
  864. line-height: 48px;
  865. margin: 0;
  866.  
  867. /* Nav-toggle width + search-toggle width - gutter = 86px */
  868. max-width: -webkit-calc(100% - 86px);
  869. max-width: calc(100% - 86px);
  870. }
  871.  
  872. .site-title a,
  873. .site-title a:hover {
  874. color: #fff;
  875. display: block;
  876. overflow: hidden;
  877. text-overflow: ellipsis;
  878. white-space: nowrap;
  879. }
  880.  
  881. /* Search in the header */
  882.  
  883. .search-toggle {
  884. background-color: #24890d;
  885. cursor: pointer;
  886. float: right;
  887. height: 48px;
  888. margin-right: 38px;
  889. text-align: center;
  890. width: 48px;
  891. }
  892.  
  893. .search-toggle:hover,
  894. .search-toggle.active {
  895. background-color: #41a62a;
  896. }
  897.  
  898. .search-toggle:before {
  899. color: #fff;
  900. content: "\f400";
  901. font-size: 20px;
  902. margin-top: 14px;
  903. }
  904.  
  905. .search-toggle .screen-reader-text {
  906. left: 5px; /* Avoid a horizontal scrollbar when the site has a long menu */
  907. }
  908.  
  909. .search-box-wrapper {
  910. -webkit-box-sizing: border-box;
  911. -moz-box-sizing: border-box;
  912. box-sizing: border-box;
  913. position: absolute;
  914. top: 48px;
  915. right: 0;
  916. width: 100%;
  917. z-index: 2;
  918. }
  919.  
  920. .search-box {
  921. background-color: #41a62a;
  922. padding: 12px;
  923. }
  924.  
  925. .search-box .search-field {
  926. background-color: #fff;
  927. border: 0;
  928. float: right;
  929. font-size: 16px;
  930. padding: 2px 2px 3px 6px;
  931. width: 100%;
  932. }
  933.  
  934.  
  935. /**
  936. * 5.0 Navigation
  937. * -----------------------------------------------------------------------------
  938. */
  939.  
  940. .site-navigation ul {
  941. list-style: none;
  942. margin: 0;
  943. }
  944.  
  945. .site-navigation li {
  946. border-top: 1px solid rgba(255, 255, 255, 0.2);
  947. }
  948.  
  949. .site-navigation ul ul {
  950. margin-left: 20px;
  951. }
  952.  
  953. .site-navigation a {
  954. color: #fff;
  955. display: block;
  956. text-transform: uppercase;
  957. }
  958.  
  959. .site-navigation a:hover {
  960. color: #41a62a;
  961. }
  962.  
  963. .site-navigation .current_page_item > a,
  964. .site-navigation .current_page_ancestor > a,
  965. .site-navigation .current-menu-item > a,
  966. .site-navigation .current-menu-ancestor > a {
  967. color: #55d737;
  968. font-weight: 900;
  969. }
  970.  
  971. /* Primary Navigation */
  972.  
  973. .primary-navigation {
  974. -webkit-box-sizing: border-box;
  975. -moz-box-sizing: border-box;
  976. box-sizing: border-box;
  977. font-size: 14px;
  978. padding-top: 24px;
  979. }
  980.  
  981. .primary-navigation.toggled-on {
  982. padding: 72px 0 36px;
  983. }
  984.  
  985. .primary-navigation .nav-menu {
  986. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  987. display: none;
  988. }
  989.  
  990. .primary-navigation.toggled-on .nav-menu {
  991. display: block;
  992. }
  993.  
  994. .primary-navigation a {
  995. padding: 7px 0;
  996. }
  997.  
  998. /* Secondary Navigation */
  999.  
  1000. .secondary-navigation {
  1001. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  1002. font-size: 12px;
  1003. margin: 48px 0;
  1004. }
  1005.  
  1006. .secondary-navigation a {
  1007. padding: 9px 0;
  1008. }
  1009.  
  1010. .menu-toggle {
  1011. background-color: #000;
  1012. border-radius: 0;
  1013. cursor: pointer;
  1014. height: 48px;
  1015. margin: 0;
  1016. overflow: hidden;
  1017. padding: 0;
  1018. position: absolute;
  1019. top: 0;
  1020. right: 0;
  1021. text-align: center;
  1022. width: 48px;
  1023. }
  1024.  
  1025. .menu-toggle:before {
  1026. color: #fff;
  1027. content: "\f419";
  1028. padding: 16px;
  1029. }
  1030.  
  1031. .menu-toggle:active,
  1032. .menu-toggle:focus,
  1033. .menu-toggle:hover {
  1034. background-color: #444;
  1035. }
  1036.  
  1037. .menu-toggle:focus {
  1038. outline: 1px dotted;
  1039. }
  1040.  
  1041.  
  1042. /**
  1043. * 6.0 Content
  1044. * -----------------------------------------------------------------------------
  1045. */
  1046.  
  1047. .content-area {
  1048. padding-top: 20px;
  1049. }
  1050.  
  1051. .hentry {
  1052. margin: 0 auto 48px;
  1053. max-width: 100%;
  1054. }
  1055.  
  1056. .site-content .entry-header,
  1057. .site-content .entry-content,
  1058. .site-content .entry-summary,
  1059. .site-content .entry-meta,
  1060. .page-content {
  1061. margin: 0 auto;
  1062. max-width: 100%;
  1063. }
  1064.  
  1065. .page-content {
  1066. margin-bottom: 48px;
  1067. }
  1068.  
  1069.  
  1070. /**
  1071. * 6.1 Post Thumbnail
  1072. * -----------------------------------------------------------------------------
  1073. */
  1074.  
  1075. .post-thumbnail {
  1076. background: #b2b2b2 url(images/pattern-light.svg) repeat fixed;
  1077. display: block;
  1078. position: relative;
  1079. width: 100%;
  1080. z-index: 0;
  1081. }
  1082.  
  1083. a.post-thumbnail:hover {
  1084. background-color: #999;
  1085. }
  1086.  
  1087. .full-width .post-thumbnail img {
  1088. display: block;
  1089. margin: 0 auto;
  1090. }
  1091.  
  1092.  
  1093. /**
  1094. * 6.2 Entry Header
  1095. * -----------------------------------------------------------------------------
  1096. */
  1097.  
  1098. .entry-header {
  1099. position: relative;
  1100. z-index: 1;
  1101. }
  1102.  
  1103. .entry-title {
  1104. font-size: 33px;
  1105. font-weight: 400;
  1106. line-height: 1.0909090909;
  1107. margin-bottom: 12px;
  1108. margin: 0 0 0px 0;
  1109. text-transform: uppercase;
  1110. }
  1111.  
  1112. .entry-title a {
  1113. color: #2b2b2b;
  1114. }
  1115.  
  1116. .entry-title a:hover {
  1117. color: #41a62a;
  1118. }
  1119.  
  1120. .site-content .entry-header {
  1121. background-color: #fff;
  1122. padding: 0 10px 12px;
  1123. }
  1124.  
  1125. .site-content .has-post-thumbnail .entry-header {
  1126. padding-top: 24px;
  1127. }
  1128.  
  1129.  
  1130. /**
  1131. * 6.3 Entry Meta
  1132. * -----------------------------------------------------------------------------
  1133. */
  1134.  
  1135. .entry-meta {
  1136. clear: both;
  1137. color: #767676;
  1138. font-size: 12px;
  1139. font-weight: 400;
  1140. line-height: 1.3333333333;
  1141. text-transform: uppercase;
  1142. }
  1143.  
  1144. .entry-meta a {
  1145. color: #767676;
  1146. }
  1147.  
  1148. .entry-meta a:hover {
  1149. color: #41a62a;
  1150. }
  1151.  
  1152. .sticky .entry-date {
  1153. display: none;
  1154. }
  1155.  
  1156. .cat-links {
  1157. font-weight: 900;
  1158. text-transform: uppercase;
  1159. }
  1160.  
  1161. .cat-links a {
  1162. color: #2b2b2b;
  1163. }
  1164.  
  1165. .cat-links a:hover {
  1166. color: #41a62a;
  1167. }
  1168.  
  1169. .byline {
  1170. display: none;
  1171. }
  1172.  
  1173. .single .byline,
  1174. .group-blog .byline {
  1175. display: inline;
  1176. }
  1177.  
  1178. .site-content .entry-meta {
  1179. background-color: #fff;
  1180. margin-bottom: 8px;
  1181. }
  1182.  
  1183. .site-content footer.entry-meta {
  1184. margin: 24px auto 0;
  1185. padding: 0 10px;
  1186. }
  1187.  
  1188. /* Tag links style */
  1189.  
  1190. .entry-meta .tag-links a {
  1191. background-color: #767676;
  1192. border-radius: 0 2px 2px 0;
  1193. color: #fff;
  1194. display: inline-block;
  1195. font-size: 11px;
  1196. font-weight: 700;
  1197. line-height: 1.2727272727;
  1198. margin: 2px 4px 2px 10px;
  1199. padding: 3px 7px;
  1200. position: relative;
  1201. text-transform: uppercase;
  1202. }
  1203.  
  1204. .entry-meta .tag-links a:hover {
  1205. background-color: #41a62a;
  1206. color: #fff;
  1207. }
  1208.  
  1209. .entry-meta .tag-links a:before {
  1210. border-top: 10px solid transparent;
  1211. border-right: 8px solid #767676;
  1212. border-bottom: 10px solid transparent;
  1213. content: "";
  1214. height: 0;
  1215. position: absolute;
  1216. top: 0;
  1217. left: -8px;
  1218. width: 0;
  1219. }
  1220.  
  1221. .entry-meta .tag-links a:hover:before {
  1222. border-right-color: #41a62a;
  1223. }
  1224.  
  1225. .entry-meta .tag-links a:after {
  1226. background-color: #fff;
  1227. border-radius: 50%;
  1228. content: "";
  1229. height: 4px;
  1230. position: absolute;
  1231. top: 8px;
  1232. left: -2px;
  1233. width: 4px;
  1234. }
  1235.  
  1236.  
  1237. /**
  1238. * 6.4 Entry Content
  1239. * -----------------------------------------------------------------------------
  1240. */
  1241.  
  1242. .entry-content,
  1243. .entry-summary,
  1244. .page-content {
  1245. -webkit-hyphens: auto;
  1246. -moz-hyphens: auto;
  1247. -ms-hyphens: auto;
  1248. hyphens: auto;
  1249. word-wrap: break-word;
  1250. }
  1251.  
  1252. .site-content .entry-content,
  1253. .site-content .entry-summary,
  1254. .page-content {
  1255. background-color: #fff;
  1256. padding: 12px 10px 0;
  1257. }
  1258.  
  1259. .page .entry-content {
  1260. padding-top: 0;
  1261. }
  1262.  
  1263. .entry-content h1:first-child,
  1264. .entry-content h2:first-child,
  1265. .entry-content h3:first-child,
  1266. .entry-content h4:first-child,
  1267. .entry-content h5:first-child,
  1268. .entry-content h6:first-child,
  1269. .entry-summary h1:first-child,
  1270. .entry-summary h2:first-child,
  1271. .entry-summary h3:first-child,
  1272. .entry-summary h4:first-child,
  1273. .entry-summary h5:first-child,
  1274. .entry-summary h6:first-child,
  1275. .page-content h1:first-child,
  1276. .page-content h2:first-child,
  1277. .page-content h3:first-child,
  1278. .page-content h4:first-child,
  1279. .page-content h5:first-child,
  1280. .page-content h6:first-child {
  1281. margin-top: 0;
  1282. }
  1283.  
  1284. .entry-content a,
  1285. .entry-summary a,
  1286. .page-content a,
  1287. .comment-content a {
  1288. text-decoration: underline;
  1289. }
  1290.  
  1291. .entry-content a:hover,
  1292. .entry-summary a:hover,
  1293. .page-content a:hover,
  1294. .comment-content a:hover,
  1295. .entry-content a.button,
  1296. .entry-summary a.button,
  1297. .page-content a.button,
  1298. .comment-content a.button {
  1299. text-decoration: none;
  1300. }
  1301.  
  1302. .entry-content table,
  1303. .comment-content table {
  1304. font-size: 14px;
  1305. line-height: 1.2857142857;
  1306. margin-bottom: 24px;
  1307. }
  1308.  
  1309. .entry-content th,
  1310. .comment-content th {
  1311. font-weight: 700;
  1312. padding: 8px;
  1313. text-transform: uppercase;
  1314. }
  1315.  
  1316. .entry-content td,
  1317. .comment-content td {
  1318. padding: 8px;
  1319. }
  1320.  
  1321. .entry-content .edit-link {
  1322. clear: both;
  1323. display: block;
  1324. font-size: 12px;
  1325. font-weight: 400;
  1326. line-height: 1.3333333333;
  1327. text-transform: uppercase;
  1328. }
  1329.  
  1330. .entry-content .edit-link a {
  1331. color: #767676;
  1332. text-decoration: none;
  1333. }
  1334.  
  1335. .entry-content .edit-link a:hover {
  1336. color: #41a62a;
  1337. }
  1338.  
  1339. .entry-content .more-link {
  1340. white-space: nowrap;
  1341. }
  1342.  
  1343. /* Mediaelements */
  1344.  
  1345. .hentry .mejs-container {
  1346. margin: 12px 0 18px;
  1347. }
  1348.  
  1349. .hentry .mejs-mediaelement,
  1350. .hentry .mejs-container .mejs-controls {
  1351. background: #000;
  1352. }
  1353.  
  1354. .hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
  1355. .hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  1356. background: #fff;
  1357. }
  1358.  
  1359. .hentry .mejs-controls .mejs-time-rail .mejs-time-current {
  1360. background: #24890d;
  1361. }
  1362.  
  1363. .hentry .mejs-controls .mejs-time-rail .mejs-time-total,
  1364. .hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  1365. background: rgba(255, 255, 255, .33);
  1366. }
  1367.  
  1368. .hentry .mejs-container .mejs-controls .mejs-time {
  1369. padding-top: 9px;
  1370. }
  1371.  
  1372. .hentry .mejs-controls .mejs-time-rail span,
  1373. .hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
  1374. .hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  1375. border-radius: 0;
  1376. }
  1377.  
  1378. .hentry .mejs-overlay-loading {
  1379. background: transparent;
  1380. }
  1381.  
  1382. .hentry .mejs-overlay-button {
  1383. background-color: #fff;
  1384. background-image: none;
  1385. border-radius: 2px;
  1386. box-shadow: 1px 1px 1px rgba(0,0,0,.8);
  1387. color: #000;
  1388. height: 36px;
  1389. margin-left: -24px;
  1390. width: 48px;
  1391. }
  1392.  
  1393. .hentry .mejs-overlay-button:before {
  1394. -webkit-font-smoothing: antialiased;
  1395. content: '\f452';
  1396. display: inline-block;
  1397. font: normal 32px/1.125 Genericons;
  1398. position: absolute;
  1399. top: 1px;
  1400. left: 10px;
  1401. }
  1402.  
  1403. .hentry .mejs-controls .mejs-button button:focus {
  1404. outline: none;
  1405. }
  1406.  
  1407. .hentry .mejs-controls .mejs-button button {
  1408. -webkit-font-smoothing: antialiased;
  1409. background: none;
  1410. color: #fff;
  1411. display: inline-block;
  1412. font: normal 16px/1 Genericons;
  1413. }
  1414.  
  1415. .hentry .mejs-playpause-button.mejs-play button:before {
  1416. content: '\f452';
  1417. }
  1418.  
  1419. .hentry .mejs-playpause-button.mejs-pause button:before {
  1420. content: '\f448';
  1421. }
  1422.  
  1423. .hentry .mejs-volume-button.mejs-mute button:before {
  1424. content: '\f109';
  1425. font-size: 20px;
  1426. position: absolute;
  1427. top: -2px;
  1428. left: 0;
  1429. }
  1430.  
  1431. .hentry .mejs-volume-button.mejs-unmute button:before {
  1432. content: '\f109';
  1433. left: 0;
  1434. position: absolute;
  1435. top: 0;
  1436. }
  1437.  
  1438. .hentry .mejs-fullscreen-button button:before {
  1439. content: '\f474';
  1440. }
  1441.  
  1442. .hentry .mejs-fullscreen-button.mejs-unfullscreen button:before {
  1443. content: '\f406';
  1444. }
  1445.  
  1446. .hentry .mejs-overlay:hover .mejs-overlay-button {
  1447. background-color: #24890d;
  1448. color: #fff;
  1449. }
  1450.  
  1451. .hentry .mejs-controls .mejs-button button:hover {
  1452. color: #41a62a;
  1453. }
  1454.  
  1455. .content-sidebar .wp-playlist-item .wp-playlist-caption {
  1456. color: #000;
  1457. }
  1458.  
  1459. /* Page links */
  1460.  
  1461. .page-links {
  1462. clear: both;
  1463. font-size: 12px;
  1464. font-weight: 900;
  1465. line-height: 2;
  1466. margin: 24px 0;
  1467. text-transform: uppercase;
  1468. }
  1469.  
  1470. .page-links a,
  1471. .page-links > span {
  1472. background: #fff;
  1473. border: 1px solid #fff;
  1474. display: inline-block;
  1475. height: 22px;
  1476. margin: 0 1px 2px 0;
  1477. text-align: center;
  1478. width: 22px;
  1479. }
  1480.  
  1481. .page-links a {
  1482. background: #000;
  1483. border: 1px solid #000;
  1484. color: #fff;
  1485. text-decoration: none;
  1486. }
  1487.  
  1488. .page-links a:hover {
  1489. background: #41a62a;
  1490. border: 1px solid #41a62a;
  1491. color: #fff;
  1492. }
  1493.  
  1494. .page-links > .page-links-title {
  1495. height: auto;
  1496. margin: 0;
  1497. padding-right: 7px;
  1498. width: auto;
  1499. }
  1500.  
  1501.  
  1502. /**
  1503. * 6.5 Gallery
  1504. * -----------------------------------------------------------------------------
  1505. */
  1506.  
  1507. .gallery {
  1508. margin-bottom: 20px;
  1509. }
  1510.  
  1511. .gallery-item {
  1512. float: left;
  1513. margin: 0 4px 4px 0;
  1514. overflow: hidden;
  1515. position: relative;
  1516. }
  1517.  
  1518. .gallery-columns-1 .gallery-item {
  1519. max-width: 100%;
  1520. }
  1521.  
  1522. .gallery-columns-2 .gallery-item {
  1523. max-width: 48%;
  1524. max-width: -webkit-calc(50% - 4px);
  1525. max-width: calc(50% - 4px);
  1526. }
  1527.  
  1528. .gallery-columns-3 .gallery-item {
  1529. max-width: 32%;
  1530. max-width: -webkit-calc(33.3% - 4px);
  1531. max-width: calc(33.3% - 4px);
  1532. }
  1533.  
  1534. .gallery-columns-4 .gallery-item {
  1535. max-width: 23%;
  1536. max-width: -webkit-calc(25% - 4px);
  1537. max-width: calc(25% - 4px);
  1538. }
  1539.  
  1540. .gallery-columns-5 .gallery-item {
  1541. max-width: 19%;
  1542. max-width: -webkit-calc(20% - 4px);
  1543. max-width: calc(20% - 4px);
  1544. }
  1545.  
  1546. .gallery-columns-6 .gallery-item {
  1547. max-width: 15%;
  1548. max-width: -webkit-calc(16.7% - 4px);
  1549. max-width: calc(16.7% - 4px);
  1550. }
  1551.  
  1552. .gallery-columns-7 .gallery-item {
  1553. max-width: 13%;
  1554. max-width: -webkit-calc(14.28% - 4px);
  1555. max-width: calc(14.28% - 4px);
  1556. }
  1557.  
  1558. .gallery-columns-8 .gallery-item {
  1559. max-width: 11%;
  1560. max-width: -webkit-calc(12.5% - 4px);
  1561. max-width: calc(12.5% - 4px);
  1562. }
  1563.  
  1564. .gallery-columns-9 .gallery-item {
  1565. max-width: 9%;
  1566. max-width: -webkit-calc(11.1% - 4px);
  1567. max-width: calc(11.1% - 4px);
  1568. }
  1569.  
  1570. .gallery-columns-1 .gallery-item:nth-of-type(1n),
  1571. .gallery-columns-2 .gallery-item:nth-of-type(2n),
  1572. .gallery-columns-3 .gallery-item:nth-of-type(3n),
  1573. .gallery-columns-4 .gallery-item:nth-of-type(4n),
  1574. .gallery-columns-5 .gallery-item:nth-of-type(5n),
  1575. .gallery-columns-6 .gallery-item:nth-of-type(6n),
  1576. .gallery-columns-7 .gallery-item:nth-of-type(7n),
  1577. .gallery-columns-8 .gallery-item:nth-of-type(8n),
  1578. .gallery-columns-9 .gallery-item:nth-of-type(9n) {
  1579. margin-right: 0;
  1580. }
  1581.  
  1582. .gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
  1583. .gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
  1584. .gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
  1585. .gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
  1586. clear: left;
  1587. }
  1588.  
  1589. .gallery-caption {
  1590. background-color: rgba(0, 0, 0, 0.7);
  1591. -webkit-box-sizing: border-box;
  1592. -moz-box-sizing: border-box;
  1593. box-sizing: border-box;
  1594. color: #fff;
  1595. font-size: 12px;
  1596. line-height: 1.5;
  1597. margin: 0;
  1598. max-height: 50%;
  1599. opacity: 0;
  1600. padding: 6px 8px;
  1601. position: absolute;
  1602. bottom: 0;
  1603. left: 0;
  1604. text-align: left;
  1605. width: 100%;
  1606. }
  1607.  
  1608. .gallery-caption:before {
  1609. content: "";
  1610. height: 100%;
  1611. min-height: 49px;
  1612. position: absolute;
  1613. top: 0;
  1614. left: 0;
  1615. width: 100%;
  1616. }
  1617.  
  1618. .gallery-item:hover .gallery-caption {
  1619. opacity: 1;
  1620. }
  1621.  
  1622. .gallery-columns-7 .gallery-caption,
  1623. .gallery-columns-8 .gallery-caption,
  1624. .gallery-columns-9 .gallery-caption {
  1625. display: none;
  1626. }
  1627.  
  1628.  
  1629. /**
  1630. * 6.6 Post Formats
  1631. * -----------------------------------------------------------------------------
  1632. */
  1633.  
  1634. .format-aside .entry-content,
  1635. .format-aside .entry-summary,
  1636. .format-quote .entry-content,
  1637. .format-quote .entry-summary,
  1638. .format-link .entry-content,
  1639. .format-link .entry-summary {
  1640. padding-top: 0;
  1641. }
  1642.  
  1643. .site-content .format-link .entry-title,
  1644. .site-content .format-aside .entry-title,
  1645. .site-content .format-quote .entry-title {
  1646. display: none;
  1647. }
  1648.  
  1649.  
  1650. /**
  1651. * 6.7 Post/Image/Paging Navigation
  1652. * -----------------------------------------------------------------------------
  1653. */
  1654.  
  1655. .nav-links {
  1656. -webkit-hyphens: auto;
  1657. -moz-hyphens: auto;
  1658. -ms-hyphens: auto;
  1659. border-top: 1px solid rgba(0, 0, 0, 0.1);
  1660. hyphens: auto;
  1661. word-wrap: break-word;
  1662. }
  1663.  
  1664. .post-navigation,
  1665. .image-navigation {
  1666. margin: 24px auto 48px;
  1667. max-width: 474px;
  1668. padding: 0 10px;
  1669. }
  1670.  
  1671. .post-navigation a,
  1672. .image-navigation .previous-image,
  1673. .image-navigation .next-image {
  1674. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  1675. padding: 11px 0 12px;
  1676. width: 100%;
  1677. }
  1678.  
  1679. .post-navigation .meta-nav {
  1680. color: #767676;
  1681. display: block;
  1682. font-size: 12px;
  1683. font-weight: 900;
  1684. line-height: 2;
  1685. text-transform: uppercase;
  1686. }
  1687.  
  1688. .post-navigation a,
  1689. .image-navigation a {
  1690. color: #2b2b2b;
  1691. display: block;
  1692. font-size: 14px;
  1693. font-weight: 700;
  1694. line-height: 1.7142857142;
  1695. text-transform: none;
  1696. }
  1697.  
  1698. .post-navigation a:hover,
  1699. .image-navigation a:hover {
  1700. color: #41a62a;
  1701. }
  1702.  
  1703. /* Paging Navigation */
  1704.  
  1705. .paging-navigation {
  1706. border-top: 5px solid #000;
  1707. margin: 48px 0;
  1708. }
  1709.  
  1710. .paging-navigation .loop-pagination {
  1711. margin-top: -5px;
  1712. text-align: center;
  1713. }
  1714.  
  1715. .paging-navigation .page-numbers {
  1716. border-top: 5px solid transparent;
  1717. display: inline-block;
  1718. font-size: 14px;
  1719. font-weight: 900;
  1720. margin-right: 1px;
  1721. padding: 7px 16px;
  1722. text-transform: uppercase;
  1723. }
  1724.  
  1725. .paging-navigation a {
  1726. color: #2b2b2b;
  1727. }
  1728.  
  1729. .paging-navigation .page-numbers.current {
  1730. border-top: 5px solid #24890d;
  1731. }
  1732.  
  1733. .paging-navigation a:hover {
  1734. border-top: 5px solid #41a62a;
  1735. color: #2b2b2b;
  1736. }
  1737.  
  1738.  
  1739. /**
  1740. * 6.8 Attachments
  1741. * -----------------------------------------------------------------------------
  1742. */
  1743.  
  1744. .attachment .content-sidebar,
  1745. .attachment .post-thumbnail {
  1746. display: none;
  1747. }
  1748.  
  1749. .attachment .entry-content {
  1750. padding-top: 0;
  1751. }
  1752.  
  1753. .attachment footer.entry-meta {
  1754. text-transform: none;
  1755. }
  1756.  
  1757. .entry-attachment .attachment {
  1758. margin-bottom: 24px;
  1759. }
  1760.  
  1761.  
  1762. /**
  1763. * 6.9 Archives
  1764. * -----------------------------------------------------------------------------
  1765. */
  1766.  
  1767. .archive-header,
  1768. .page-header {
  1769. margin: 24px auto;
  1770. max-width: 474px;
  1771. }
  1772.  
  1773. .archive-title,
  1774. .page-title {
  1775. font-size: 16px;
  1776. font-weight: 900;
  1777. line-height: 1.5;
  1778. margin: 0;
  1779. }
  1780.  
  1781. .taxonomy-description,
  1782. .author-description {
  1783. color: #767676;
  1784. font-size: 14px;
  1785. line-height: 1.2857142857;
  1786. padding-top: 18px;
  1787. }
  1788.  
  1789. .taxonomy-description p,
  1790. .author-description p {
  1791. margin-bottom: 18px;
  1792. }
  1793.  
  1794. .taxonomy-description p:last-child,
  1795. .author-description p:last-child {
  1796. margin-bottom: 0;
  1797. }
  1798.  
  1799. .taxonomy-description a,
  1800. .author-description a {
  1801. text-decoration: underline;
  1802. }
  1803.  
  1804. .taxonomy-description a:hover,
  1805. .author-description a:hover {
  1806. text-decoration: none;
  1807. }
  1808.  
  1809.  
  1810. /**
  1811. * 6.10 Contributor Page
  1812. * -----------------------------------------------------------------------------
  1813. */
  1814.  
  1815. .contributor {
  1816. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  1817. -webkit-box-sizing: border-box;
  1818. -moz-box-sizing: border-box;
  1819. box-sizing: border-box;
  1820. padding: 48px 10px;
  1821. }
  1822.  
  1823. .contributor:first-of-type {
  1824. padding-top: 24px;
  1825. }
  1826.  
  1827. .contributor-info {
  1828. margin: 0 auto;
  1829. max-width: 474px;
  1830. }
  1831.  
  1832. .contributor-avatar {
  1833. border: 1px solid rgba(0, 0, 0, 0.1);
  1834. float: left;
  1835. margin: 0 30px 20px 0;
  1836. padding: 2px;
  1837. }
  1838.  
  1839. .contributor-name {
  1840. font-size: 16px;
  1841. font-weight: 900;
  1842. line-height: 1.5;
  1843. margin: 0;
  1844. }
  1845.  
  1846. .contributor-bio a {
  1847. text-decoration: underline;
  1848. }
  1849.  
  1850. .contributor-bio a:hover {
  1851. text-decoration: none;
  1852. }
  1853.  
  1854. .contributor-posts-link {
  1855. display: inline-block;
  1856. line-height: normal;
  1857. padding: 10px 30px;
  1858. }
  1859.  
  1860. .contributor-posts-link:before {
  1861. content: "\f443";
  1862. }
  1863.  
  1864.  
  1865. /**
  1866. * 6.11 404 Page
  1867. * -----------------------------------------------------------------------------
  1868. */
  1869.  
  1870. .error404 .page-content {
  1871. padding-top: 0;
  1872. }
  1873.  
  1874. .error404 .page-content .search-form {
  1875. margin-bottom: 24px;
  1876. }
  1877.  
  1878.  
  1879. /**
  1880. * 6.12 Full-width
  1881. * -----------------------------------------------------------------------------
  1882. */
  1883.  
  1884. .full-width .hentry {
  1885. max-width: 100%;
  1886. }
  1887.  
  1888.  
  1889.  
  1890.  
  1891. /* Content max-width adjust 630px as needed (default 474px) */
  1892.  
  1893. .site-content .entry-header,
  1894. .site-content .entry-content,
  1895. .site-content .entry-summary,
  1896. .site-content .entry-meta,
  1897. .page-content {
  1898. margin: 0 auto;
  1899. max-width: 100%;}
  1900.  
  1901. /* End of max-width code */​
  1902.  
  1903. .page-content {
  1904. margin: 0 auto;
  1905. max-width: 100%;
  1906. }
  1907.  
  1908.  
  1909.  
  1910.  
  1911.  
  1912. /**
  1913. * 6.13 Singular
  1914. * -----------------------------------------------------------------------------
  1915. */
  1916.  
  1917. .singular .site-content .hentry.has-post-thumbnail {
  1918. margin-top: -48px;
  1919. }
  1920.  
  1921.  
  1922. /**
  1923. * 6.14 Comments
  1924. * -----------------------------------------------------------------------------
  1925. */
  1926.  
  1927. .comments-area {
  1928. margin: 48px auto;
  1929. max-width: 474px;
  1930. padding: 0 10px;
  1931. }
  1932.  
  1933. .comment-reply-title,
  1934. .comments-title {
  1935. font: 900 16px/1.5 Lato, sans-serif;
  1936. margin: 0;
  1937. text-transform: uppercase;
  1938. }
  1939.  
  1940. .comment-list {
  1941. list-style: none;
  1942. margin: 0 0 48px 0;
  1943. }
  1944.  
  1945. .comment-author {
  1946. font-size: 14px;
  1947. line-height: 1.7142857142;
  1948. }
  1949.  
  1950. .comment-list .reply,
  1951. .comment-metadata {
  1952. font-size: 12px;
  1953. line-height: 2;
  1954. text-transform: uppercase;
  1955. }
  1956.  
  1957. .comment-list .reply {
  1958. margin-top: 24px;
  1959. }
  1960.  
  1961. .comment-author .fn {
  1962. font-weight: 900;
  1963. }
  1964.  
  1965. .comment-author a {
  1966. color: #2b2b2b;
  1967. }
  1968.  
  1969. .comment-list .trackback a,
  1970. .comment-list .pingback a,
  1971. .comment-metadata a {
  1972. color: #767676;
  1973. }
  1974.  
  1975. .comment-author a:hover,
  1976. .comment-list .pingback a:hover,
  1977. .comment-list .trackback a:hover,
  1978. .comment-metadata a:hover {
  1979. color: #41a62a;
  1980. }
  1981.  
  1982. .comment-list article,
  1983. .comment-list .pingback,
  1984. .comment-list .trackback {
  1985. border-top: 1px solid rgba(0, 0, 0, 0.1);
  1986. margin-bottom: 24px;
  1987. padding-top: 24px;
  1988. }
  1989.  
  1990. .comment-list > li:first-child > article,
  1991. .comment-list > .pingback:first-child,
  1992. .comment-list > .trackback:first-child {
  1993. border-top: 0;
  1994. }
  1995.  
  1996. .comment-author {
  1997. position: relative;
  1998. }
  1999.  
  2000. .comment-author .avatar {
  2001. border: 1px solid rgba(0, 0, 0, 0.1);
  2002. height: 18px;
  2003. padding: 2px;
  2004. position: absolute;
  2005. top: 0;
  2006. left: 0;
  2007. width: 18px;
  2008. }
  2009.  
  2010. .bypostauthor > article .fn:before {
  2011. content: "\f408";
  2012. margin: 0 2px 0 -2px;
  2013. position: relative;
  2014. top: -1px;
  2015. }
  2016.  
  2017. .says {
  2018. display: none;
  2019. }
  2020.  
  2021. .comment-author,
  2022. .comment-awaiting-moderation,
  2023. .comment-content,
  2024. .comment-list .reply,
  2025. .comment-metadata {
  2026. padding-left: 30px;
  2027. }
  2028.  
  2029. .comment-edit-link {
  2030. margin-left: 10px;
  2031. }
  2032.  
  2033. .comment-edit-link:before {
  2034. content: "\f411";
  2035. }
  2036.  
  2037. .comment-reply-link:before,
  2038. .comment-reply-login:before {
  2039. content: "\f412";
  2040. margin-right: 2px;
  2041. }
  2042.  
  2043. .comment-content {
  2044. -webkit-hyphens: auto;
  2045. -moz-hyphens: auto;
  2046. -ms-hyphens: auto;
  2047. hyphens: auto;
  2048. word-wrap: break-word;
  2049. }
  2050.  
  2051. .comment-content ul,
  2052. .comment-content ol {
  2053. margin: 0 0 24px 22px;
  2054. }
  2055.  
  2056. .comment-content li > ul,
  2057. .comment-content li > ol {
  2058. margin-bottom: 0;
  2059. }
  2060.  
  2061. .comment-content > :last-child {
  2062. margin-bottom: 0;
  2063. }
  2064.  
  2065. .comment-list .children {
  2066. list-style: none;
  2067. margin-left: 15px;
  2068. }
  2069.  
  2070. .comment-respond {
  2071. margin-bottom: 24px;
  2072. padding: 0;
  2073. }
  2074.  
  2075. .comment .comment-respond {
  2076. margin-top: 24px;
  2077. }
  2078.  
  2079. .comment-respond h3 {
  2080. margin-top: 0;
  2081. margin-bottom: 24px;
  2082. }
  2083.  
  2084. .comment-notes,
  2085. .comment-awaiting-moderation,
  2086. .logged-in-as,
  2087. .no-comments,
  2088. .form-allowed-tags,
  2089. .form-allowed-tags code {
  2090. color: #767676;
  2091. }
  2092.  
  2093. .comment-notes,
  2094. .comment-awaiting-moderation,
  2095. .logged-in-as {
  2096. font-size: 14px;
  2097. line-height: 1.7142857142;
  2098. }
  2099.  
  2100. .no-comments {
  2101. font-size: 16px;
  2102. font-weight: 900;
  2103. line-height: 1.5;
  2104. margin-top: 24px;
  2105. text-transform: uppercase;
  2106. }
  2107.  
  2108. .comment-form label {
  2109. display: block;
  2110. }
  2111.  
  2112. .comment-form input[type="text"],
  2113. .comment-form input[type="email"],
  2114. .comment-form input[type="url"] {
  2115. width: 100%;
  2116. }
  2117.  
  2118. .form-allowed-tags,
  2119. .form-allowed-tags code {
  2120. font-size: 12px;
  2121. line-height: 1.5;
  2122. }
  2123.  
  2124. .required {
  2125. color: #c0392b;
  2126. }
  2127.  
  2128. .comment-reply-title small a {
  2129. color: #2b2b2b;
  2130. float: right;
  2131. height: 24px;
  2132. overflow: hidden;
  2133. width: 24px;
  2134. }
  2135.  
  2136. .comment-reply-title small a:hover {
  2137. color: #41a62a;
  2138. }
  2139.  
  2140. .comment-reply-title small a:before {
  2141. content: "\f405";
  2142. font-size: 32px;
  2143. }
  2144.  
  2145. .comment-navigation {
  2146. font-size: 12px;
  2147. line-height: 2;
  2148. margin-bottom: 48px;
  2149. text-transform: uppercase;
  2150. }
  2151.  
  2152. .comment-navigation .nav-next,
  2153. .comment-navigation .nav-previous {
  2154. display: inline-block;
  2155. }
  2156.  
  2157. .comment-navigation .nav-previous a {
  2158. margin-right: 10px;
  2159. }
  2160.  
  2161. #comment-nav-above {
  2162. margin-top: 36px;
  2163. margin-bottom: 0;
  2164. }
  2165.  
  2166.  
  2167. /**
  2168. * 7.0 Sidebars
  2169. * -----------------------------------------------------------------------------
  2170. */
  2171.  
  2172. /* Secondary */
  2173.  
  2174. #secondary {
  2175. background-color: #000;
  2176. border-top: 1px solid #000;
  2177. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  2178. clear: both;
  2179. color: rgba(255, 255, 255, 0.7);
  2180. margin-top: -1px;
  2181. padding: 0 0px;
  2182. position: relative;
  2183. z-index: 2;
  2184. }
  2185.  
  2186. .site-description {
  2187. display: none;
  2188. font-size: 12px;
  2189. font-weight: 400;
  2190. line-height: 1.5;
  2191. }
  2192.  
  2193. /* Primary Sidebar */
  2194.  
  2195. .primary-sidebar {
  2196. padding-top: 90px;
  2197. }
  2198.  
  2199. .secondary-navigation + .primary-sidebar {
  2200. padding-top: 0;
  2201. }
  2202.  
  2203. /* Content Sidebar */
  2204.  
  2205. .content-sidebar {
  2206. border-top: 1px solid rgba(0, 0, 0, 0.1);
  2207. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  2208. -webkit-box-sizing: border-box;
  2209. -moz-box-sizing: border-box;
  2210. box-sizing: border-box;
  2211. color: #767676;
  2212. padding: 48px 10px 0;
  2213. }
  2214.  
  2215.  
  2216. /**
  2217. * 7.1 Widgets
  2218. * -----------------------------------------------------------------------------
  2219. */
  2220.  
  2221. /* Primary Sidebar, Footer Sidebar */
  2222.  
  2223. .widget {
  2224. font-size: 14px;
  2225. -webkit-hyphens: auto;
  2226. -moz-hyphens: auto;
  2227. -ms-hyphens: auto;
  2228. hyphens: auto;
  2229. line-height: 1.2857142857;
  2230. margin-bottom: 48px;
  2231. width: 100%;
  2232. word-wrap: break-word;
  2233. }
  2234.  
  2235. .widget a {
  2236. color: #fff;
  2237. }
  2238.  
  2239. .widget a:hover {
  2240. color: #41a62a;
  2241. }
  2242.  
  2243. .widget h1,
  2244. .widget h2,
  2245. .widget h3,
  2246. .widget h4,
  2247. .widget h5,
  2248. .widget h6 {
  2249. margin: 24px 0 12px;
  2250. }
  2251.  
  2252. .widget h1 {
  2253. font-size: 22px;
  2254. line-height: 1.0909090909;
  2255. }
  2256.  
  2257. .widget h2 {
  2258. font-size: 20px;
  2259. line-height: 1.2;
  2260. }
  2261.  
  2262. .widget h3 {
  2263. font-size: 18px;
  2264. line-height: 1.3333333333;
  2265. }
  2266.  
  2267. .widget h4 {
  2268. font-size: 16px;
  2269. line-height: 1.5;
  2270. }
  2271.  
  2272. .widget h5 {
  2273. font-size: 14px;
  2274. line-height: 1.7142857142;
  2275. }
  2276.  
  2277. .widget h6 {
  2278. font-size: 12px;
  2279. line-height: 2;
  2280. }
  2281.  
  2282. .widget address {
  2283. margin-bottom: 18px;
  2284. }
  2285.  
  2286. .widget abbr[title] {
  2287. border-color: rgba(255, 255, 255, 0.7);
  2288. }
  2289.  
  2290. .widget mark,
  2291. .widget ins {
  2292. color: #000;
  2293. }
  2294.  
  2295. .widget pre,
  2296. .widget fieldset {
  2297. border-color: rgba(255, 255, 255, 0.2);
  2298. }
  2299.  
  2300. .widget code,
  2301. .widget kbd,
  2302. .widget tt,
  2303. .widget var,
  2304. .widget samp,
  2305. .widget pre {
  2306. font-size: 12px;
  2307. line-height: 1.5;
  2308. }
  2309.  
  2310. .widget blockquote {
  2311. color: rgba(255, 255, 255, 0.7);
  2312. font-size: 18px;
  2313. line-height: 1.5;
  2314. margin-bottom: 18px;
  2315. }
  2316.  
  2317. .widget blockquote cite {
  2318. color: #fff;
  2319. font-size: 14px;
  2320. line-height: 1.2857142857;
  2321. }
  2322.  
  2323. .widget dl,
  2324. .widget dd {
  2325. margin-bottom: 18px;
  2326. }
  2327.  
  2328. .widget ul,
  2329. .widget ol {
  2330. list-style: none;
  2331. margin: 0;
  2332. }
  2333.  
  2334. .widget li > ol,
  2335. .widget li > ul {
  2336. margin-left: 10px;
  2337. }
  2338.  
  2339. .widget table,
  2340. .widget th,
  2341. .widget td {
  2342. border-color: rgba(255, 255, 255, 0.2);
  2343. }
  2344.  
  2345. .widget table {
  2346. margin-bottom: 18px;
  2347. }
  2348.  
  2349. .widget del {
  2350. color: rgba(255, 255, 255, 0.4);
  2351. }
  2352.  
  2353. .widget hr {
  2354. background-color: rgba(255, 255, 255, 0.2);
  2355. }
  2356.  
  2357. .widget p {
  2358. margin-bottom: 18px;
  2359. }
  2360.  
  2361. .widget-area .widget input,
  2362. .widget-area .widget textarea {
  2363. background-color: rgba(255, 255, 255, 0.1);
  2364. border-color: rgba(255, 255, 255, 0.2);
  2365. color: #fff;
  2366. font-size: 16px;
  2367. padding: 1px 2px 2px 4px;
  2368. }
  2369.  
  2370. .widget-area .widget input:focus,
  2371. .widget-area .widget textarea:focus {
  2372. border-color: rgba(255, 255, 255, 0.3);
  2373. }
  2374.  
  2375. .widget button,
  2376. .widget .button,
  2377. .widget input[type="button"],
  2378. .widget input[type="reset"],
  2379. .widget input[type="submit"] {
  2380. background-color: #24890d;
  2381. border: 0;
  2382. font-size: 12px;
  2383. padding: 5px 15px 4px;
  2384. }
  2385.  
  2386. .widget input[type="button"]:hover,
  2387. .widget input[type="button"]:focus,
  2388. .widget input[type="reset"]:hover,
  2389. .widget input[type="reset"]:focus,
  2390. .widget input[type="submit"]:hover,
  2391. .widget input[type="submit"]:focus {
  2392. background-color: #41a62a;
  2393. }
  2394.  
  2395. .widget input[type="button"]:active,
  2396. .widget input[type="reset"]:active,
  2397. .widget input[type="submit"]:active {
  2398. background-color: #55d737;
  2399. }
  2400.  
  2401. .widget .wp-caption {
  2402. color: rgba(255, 255, 255, 0.7);
  2403. margin-bottom: 18px;
  2404. }
  2405.  
  2406. .widget .widget-title {
  2407. font-size: 14px;
  2408. font-weight: 700;
  2409. line-height: 1.7142857142;
  2410. margin: 0 0 24px 0;
  2411. text-transform: uppercase;
  2412. }
  2413.  
  2414. .widget-title,
  2415. .widget-title a {
  2416. color: #fff;
  2417. }
  2418.  
  2419. .widget-title a:hover {
  2420. color: #41a62a;
  2421. }
  2422.  
  2423. /* Calendar Widget*/
  2424.  
  2425. .widget_calendar table {
  2426. line-height: 2;
  2427. margin: 0;
  2428. }
  2429.  
  2430. .widget_calendar caption {
  2431. color: #fff;
  2432. font-weight: 700;
  2433. line-height: 1.7142857142;
  2434. margin-bottom: 18px;
  2435. text-align: left;
  2436. text-transform: uppercase;
  2437. }
  2438.  
  2439. .widget_calendar thead th {
  2440. background-color: rgba(255, 255, 255, 0.1);
  2441. }
  2442.  
  2443. .widget_calendar tbody td,
  2444. .widget_calendar thead th {
  2445. text-align: center;
  2446. }
  2447.  
  2448. .widget_calendar tbody a {
  2449. background-color: #24890d;
  2450. color: #fff;
  2451. display: block;
  2452. }
  2453.  
  2454. .widget_calendar tbody a:hover {
  2455. background-color: #41a62a;
  2456. }
  2457.  
  2458. .widget_calendar tbody a:hover {
  2459. color: #fff;
  2460. }
  2461.  
  2462. .widget_calendar #prev {
  2463. padding-left: 5px;
  2464. }
  2465.  
  2466. .widget_calendar #next {
  2467. padding-right: 5px;
  2468. text-align: right;
  2469. }
  2470.  
  2471. /* Ephemera Widget*/
  2472.  
  2473. .widget_twentyfourteen_ephemera > ol > li {
  2474. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  2475. margin-bottom: 18px;
  2476. padding: 0;
  2477. }
  2478.  
  2479. .widget_twentyfourteen_ephemera .hentry {
  2480. margin: 0;
  2481. max-width: 100%;
  2482. }
  2483.  
  2484. .widget_twentyfourteen_ephemera .entry-title,
  2485. .widget_twentyfourteen_ephemera .entry-meta,
  2486. .widget_twentyfourteen_ephemera .wp-caption-text,
  2487. .widget_twentyfourteen_ephemera .post-format-archive-link,
  2488. .widget_twentyfourteen_ephemera .entry-content table {
  2489. font-size: 12px;
  2490. line-height: 1.5;
  2491. }
  2492.  
  2493. .widget_twentyfourteen_ephemera .entry-title {
  2494. display: inline;
  2495. font-weight: 400;
  2496. }
  2497.  
  2498. .widget_twentyfourteen_ephemera .entry-meta {
  2499. margin-bottom: 18px;
  2500. }
  2501.  
  2502. .widget_twentyfourteen_ephemera .entry-meta a {
  2503. color: rgba(255, 255, 255, 0.7);
  2504. }
  2505.  
  2506. .widget_twentyfourteen_ephemera .entry-meta a:hover {
  2507. color: #41a62a;
  2508. }
  2509.  
  2510. .widget_twentyfourteen_ephemera .entry-content ul,
  2511. .widget_twentyfourteen_ephemera .entry-content ol {
  2512. margin: 0 0 18px 20px;
  2513. }
  2514.  
  2515. .widget_twentyfourteen_ephemera .entry-content ul {
  2516. list-style: disc;
  2517. }
  2518.  
  2519. .widget_twentyfourteen_ephemera .entry-content ol {
  2520. list-style: decimal;
  2521. }
  2522.  
  2523. .widget_twentyfourteen_ephemera .entry-content li > ul,
  2524. .widget_twentyfourteen_ephemera .entry-content li > ol {
  2525. margin: 0 0 0 20px;
  2526. }
  2527.  
  2528. .widget_twentyfourteen_ephemera .entry-content th,
  2529. .widget_twentyfourteen_ephemera .entry-content td {
  2530. padding: 6px;
  2531. }
  2532.  
  2533. .widget_twentyfourteen_ephemera .post-format-archive-link {
  2534. font-weight: 700;
  2535. text-transform: uppercase;
  2536. }
  2537.  
  2538. /* List Style Widgets*/
  2539.  
  2540. .widget_archive li,
  2541. .widget_categories li,
  2542. .widget_links li,
  2543. .widget_meta li,
  2544. .widget_nav_menu li,
  2545. .widget_pages li,
  2546. .widget_recent_comments li,
  2547. .widget_recent_entries li {
  2548. border-top: 1px solid rgba(255, 255, 255, 0.2);
  2549. padding: 8px 0 9px;
  2550. }
  2551.  
  2552. .widget_archive li:first-child,
  2553. .widget_categories li:first-child,
  2554. .widget_links li:first-child,
  2555. .widget_meta li:first-child,
  2556. .widget_nav_menu li:first-child,
  2557. .widget_pages li:first-child,
  2558. .widget_recent_comments li:first-child,
  2559. .widget_recent_entries li:first-child {
  2560. border-top: 0;
  2561. }
  2562.  
  2563. .widget_categories li ul,
  2564. .widget_nav_menu li ul,
  2565. .widget_pages li ul {
  2566. border-top: 1px solid rgba(255, 255, 255, 0.2);
  2567. margin-top: 9px;
  2568. }
  2569.  
  2570. .widget_categories li li:last-child,
  2571. .widget_nav_menu li li:last-child,
  2572. .widget_pages li li:last-child {
  2573. padding-bottom: 0;
  2574. }
  2575.  
  2576. /* Recent Posts Widget */
  2577.  
  2578. .widget_recent_entries .post-date {
  2579. display: block;
  2580. }
  2581.  
  2582. /* RSS Widget */
  2583.  
  2584. .rsswidget img {
  2585. margin-top: -4px;
  2586. }
  2587.  
  2588. .rssSummary {
  2589. margin: 9px 0;
  2590. }
  2591.  
  2592. .rss-date {
  2593. display: block;
  2594. }
  2595.  
  2596. .widget_rss li {
  2597. margin-bottom: 18px;
  2598. }
  2599.  
  2600. .widget_rss li:last-child {
  2601. margin-bottom: 0;
  2602. }
  2603.  
  2604. /* Text Widget */
  2605.  
  2606. .widget_text > div > :last-child {
  2607. margin-bottom: 0;
  2608. }
  2609.  
  2610.  
  2611. /**
  2612. * 7.2 Content Sidebar Widgets
  2613. * -----------------------------------------------------------------------------
  2614. */
  2615.  
  2616. .content-sidebar .widget a {
  2617. color: #24890d;
  2618. }
  2619.  
  2620. .content-sidebar .widget a:hover {
  2621. color: #41a62a;
  2622. }
  2623.  
  2624. .content-sidebar .widget pre {
  2625. border-color: rgba(0, 0, 0, 0.1);
  2626. }
  2627.  
  2628. .content-sidebar .widget mark,
  2629. .content-sidebar .widget ins {
  2630. color: #2b2b2b;
  2631. }
  2632.  
  2633. .content-sidebar .widget abbr[title] {
  2634. border-color: #2b2b2b;
  2635. }
  2636.  
  2637. .content-sidebar .widget fieldset {
  2638. border-color: rgba(0, 0, 0, 0.1);
  2639. }
  2640.  
  2641. .content-sidebar .widget blockquote {
  2642. color: #767676;
  2643. }
  2644.  
  2645. .content-sidebar .widget blockquote cite {
  2646. color: #2b2b2b;
  2647. }
  2648.  
  2649. .content-sidebar .widget li > ol,
  2650. .content-sidebar .widget li > ul {
  2651. margin-left: 18px;
  2652. }
  2653.  
  2654. .content-sidebar .widget table,
  2655. .content-sidebar .widget th,
  2656. .content-sidebar .widget td {
  2657. border-color: rgba(0, 0, 0, 0.1);
  2658. }
  2659.  
  2660. .content-sidebar .widget del {
  2661. color: #767676;
  2662. }
  2663.  
  2664. .content-sidebar .widget hr {
  2665. background-color: rgba(0, 0, 0, 0.1);
  2666. }
  2667.  
  2668. .content-sidebar .widget input,
  2669. .content-sidebar .widget textarea {
  2670. background-color: #fff;
  2671. border-color: rgba(0, 0, 0, 0.1);
  2672. color: #2b2b2b;
  2673. }
  2674.  
  2675. .content-sidebar .widget input:focus,
  2676. .content-sidebar .widget textarea:focus {
  2677. border-color: rgba(0, 0, 0, 0.3);
  2678. }
  2679.  
  2680. .content-sidebar .widget input[type="button"],
  2681. .content-sidebar .widget input[type="reset"],
  2682. .content-sidebar .widget input[type="submit"] {
  2683. background-color: #24890d;
  2684. border: 0;
  2685. color: #fff;
  2686. }
  2687.  
  2688. .content-sidebar .widget input[type="button"]:hover,
  2689. .content-sidebar .widget input[type="button"]:focus,
  2690. .content-sidebar .widget input[type="reset"]:hover,
  2691. .content-sidebar .widget input[type="reset"]:focus,
  2692. .content-sidebar .widget input[type="submit"]:hover,
  2693. .content-sidebar .widget input[type="submit"]:focus {
  2694. background-color: #41a62a;
  2695. }
  2696.  
  2697. .content-sidebar .widget input[type="button"]:active,
  2698. .content-sidebar .widget input[type="reset"]:active,
  2699. .content-sidebar .widget input[type="submit"]:active {
  2700. background-color: #55d737;
  2701. }
  2702.  
  2703. .content-sidebar .widget .wp-caption {
  2704. color: #767676;
  2705. }
  2706.  
  2707. .content-sidebar .widget .widget-title {
  2708. border-top: 5px solid #000;
  2709. color: #2b2b2b;
  2710. font-size: 14px;
  2711. font-weight: 900;
  2712. margin: 0 0 18px;
  2713. padding-top: 7px;
  2714. text-transform: uppercase;
  2715. }
  2716.  
  2717. .content-sidebar .widget .widget-title a {
  2718. color: #2b2b2b;
  2719. }
  2720.  
  2721. .content-sidebar .widget .widget-title a:hover {
  2722. color: #41a62a;
  2723. }
  2724.  
  2725. /* List Style Widgets*/
  2726.  
  2727. .content-sidebar .widget_archive li,
  2728. .content-sidebar .widget_categories li,
  2729. .content-sidebar .widget_links li,
  2730. .content-sidebar .widget_meta li,
  2731. .content-sidebar .widget_nav_menu li,
  2732. .content-sidebar .widget_pages li,
  2733. .content-sidebar .widget_recent_comments li,
  2734. .content-sidebar .widget_recent_entries li,
  2735. .content-sidebar .widget_categories li ul,
  2736. .content-sidebar .widget_nav_menu li ul,
  2737. .content-sidebar .widget_pages li ul {
  2738. border-color: rgba(0, 0, 0, 0.1);
  2739. }
  2740.  
  2741. /* Calendar Widget */
  2742.  
  2743. .content-sidebar .widget_calendar caption {
  2744. color: #2b2b2b;
  2745. font-weight: 900;
  2746. }
  2747.  
  2748. .content-sidebar .widget_calendar thead th {
  2749. background-color: rgba(0, 0, 0, 0.02);
  2750. }
  2751.  
  2752. .content-sidebar .widget_calendar tbody a,
  2753. .content-sidebar .widget_calendar tbody a:hover {
  2754. color: #fff;
  2755. }
  2756.  
  2757. /* Ephemera widget*/
  2758.  
  2759. .content-sidebar .widget_twentyfourteen_ephemera .widget-title {
  2760. line-height: 1.2857142857;
  2761. padding-top: 1px;
  2762. }
  2763.  
  2764. .content-sidebar .widget_twentyfourteen_ephemera .widget-title:before {
  2765. background-color: #000;
  2766. color: #fff;
  2767. margin: -1px 9px 0 0;
  2768. padding: 6px 0 9px;
  2769. text-align: center;
  2770. vertical-align: middle;
  2771. width: 36px;
  2772. }
  2773.  
  2774. .content-sidebar .widget_twentyfourteen_ephemera .video.widget-title:before {
  2775. content: "\f104";
  2776. }
  2777.  
  2778. .content-sidebar .widget_twentyfourteen_ephemera .audio.widget-title:before {
  2779. content: "\f109";
  2780. }
  2781.  
  2782. .content-sidebar .widget_twentyfourteen_ephemera .image.widget-title:before {
  2783. content: "\f473";
  2784. }
  2785.  
  2786. .content-sidebar .widget_twentyfourteen_ephemera .gallery.widget-title:before {
  2787. content: "\f103";
  2788. }
  2789.  
  2790. .content-sidebar .widget_twentyfourteen_ephemera .aside.widget-title:before {
  2791. content: "\f101";
  2792. }
  2793.  
  2794. .content-sidebar .widget_twentyfourteen_ephemera .quote.widget-title:before {
  2795. content: "\f106";
  2796. }
  2797.  
  2798. .content-sidebar .widget_twentyfourteen_ephemera .link.widget-title:before {
  2799. content: "\f107";
  2800. }
  2801.  
  2802. .content-sidebar .widget_twentyfourteen_ephemera > ol > li {
  2803. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  2804. }
  2805.  
  2806. .content-sidebar .widget_twentyfourteen_ephemera .entry-meta {
  2807. color: #ccc;
  2808. }
  2809.  
  2810. .content-sidebar .widget_twentyfourteen_ephemera .entry-meta a {
  2811. color: #767676;
  2812. }
  2813.  
  2814. .content-sidebar .widget_twentyfourteen_ephemera .entry-meta a:hover {
  2815. color: #41a62a;
  2816. }
  2817.  
  2818. .content-sidebar.widget_twentyfourteen_ephemera blockquote cite {
  2819. font-size: 13px;
  2820. line-height: 1.3846153846;
  2821. }
  2822.  
  2823. .content-sidebar .widget_twentyfourteen_ephemera .post-format-archive-link {
  2824. font-weight: 900;
  2825. }
  2826.  
  2827.  
  2828. /**
  2829. * 8.0 Footer
  2830. * -----------------------------------------------------------------------------
  2831. */
  2832.  
  2833. #supplementary {
  2834. padding: 0 10px;
  2835. }
  2836.  
  2837. .site-footer,
  2838. .site-info,
  2839. .site-info a {
  2840. color: rgba(255, 255, 255, 0.7);
  2841. }
  2842.  
  2843. .site-footer {
  2844. background-color: #000;
  2845. font-size: 12px;
  2846. position: relative;
  2847. z-index: 3;
  2848. }
  2849.  
  2850. .footer-sidebar {
  2851. padding-top: 48px;
  2852. }
  2853.  
  2854. .site-info {
  2855. padding: 15px 10px;
  2856. }
  2857.  
  2858. #supplementary + .site-info {
  2859. border-top: 1px solid rgba(255, 255, 255, 0.2);
  2860. }
  2861.  
  2862. .site-info a:hover {
  2863. color: #41a62a;
  2864. }
  2865.  
  2866.  
  2867. /**
  2868. * 9.0 Featured Content
  2869. * -----------------------------------------------------------------------------
  2870. */
  2871.  
  2872. .featured-content {
  2873. background: #000 url(images/pattern-dark.svg) repeat fixed;
  2874. -webkit-box-sizing: border-box;
  2875. -moz-box-sizing: border-box;
  2876. box-sizing: border-box;
  2877. position: relative;
  2878. width: 100%;
  2879. }
  2880.  
  2881. .featured-content-inner {
  2882. overflow: hidden;
  2883. }
  2884.  
  2885. .featured-content .hentry {
  2886. color: #fff;
  2887. margin: 0;
  2888. max-width: 100%;
  2889. width: 100%;
  2890. }
  2891.  
  2892. .featured-content .post-thumbnail,
  2893. .featured-content .post-thumbnail:hover {
  2894. background: transparent;
  2895. }
  2896.  
  2897. .featured-content .post-thumbnail {
  2898. display: block;
  2899. position: relative;
  2900. padding-top: 55.357142857%;
  2901. overflow: hidden;
  2902. }
  2903.  
  2904. .featured-content .post-thumbnail img {
  2905. left: 0;
  2906. position: absolute;
  2907. top: 0;
  2908. }
  2909.  
  2910. .featured-content .entry-header {
  2911. background-color: #000;
  2912. -webkit-box-sizing: border-box;
  2913. -moz-box-sizing: border-box;
  2914. box-sizing: border-box;
  2915. min-height: 96px;
  2916. overflow: hidden;
  2917. padding: 24px 10px;
  2918. }
  2919.  
  2920. .featured-content a {
  2921. color: #fff;
  2922. }
  2923.  
  2924. .featured-content a:hover {
  2925. color: #41a62a;
  2926. }
  2927.  
  2928. .featured-content .entry-meta {
  2929. color: #fff;
  2930. font-size: 11px;
  2931. font-weight: 700;
  2932. line-height: 1.0909090909;
  2933. margin-bottom: 12px;
  2934. }
  2935.  
  2936. .featured-content .cat-links {
  2937. font-weight: 700;
  2938. }
  2939.  
  2940. .featured-content .entry-title {
  2941. font-size: 18px;
  2942. font-weight: 300;
  2943. line-height: 1.3333333333;
  2944. margin: 0;
  2945. text-transform: uppercase;
  2946. }
  2947.  
  2948.  
  2949. /* Slider */
  2950.  
  2951. .slider .featured-content .hentry {
  2952. -webkit-backface-visibility: hidden;
  2953. display: none;
  2954. position: relative;
  2955. }
  2956.  
  2957. .slider .featured-content .post-thumbnail {
  2958. padding-top: 55.49132947%;
  2959. }
  2960.  
  2961. .slider-control-paging {
  2962. background-color: #000;
  2963. -webkit-box-sizing: border-box;
  2964. -moz-box-sizing: border-box;
  2965. box-sizing: border-box;
  2966. float: left;
  2967. list-style: none;
  2968. margin: -24px 0 0 0;
  2969. position: relative;
  2970. width: 100%;
  2971. z-index: 3;
  2972. }
  2973.  
  2974. .slider-control-paging li {
  2975. float: left;
  2976. margin: 2px 4px 2px 0;
  2977. }
  2978.  
  2979. .slider-control-paging li:last-child {
  2980. margin-right: 0;
  2981. }
  2982.  
  2983. .slider-control-paging a {
  2984. cursor: pointer;
  2985. display: block;
  2986. height: 44px;
  2987. position: relative;
  2988. text-indent: -999em;
  2989. width: 44px;
  2990. }
  2991.  
  2992. .slider-control-paging a:before {
  2993. background-color: #4d4d4d;
  2994. content: "";
  2995. height: 12px;
  2996. left: 10px;
  2997. position: absolute;
  2998. top: 16px;
  2999. width: 12px;
  3000. }
  3001.  
  3002. .slider-control-paging a:hover:before {
  3003. background-color: #41a62a;
  3004. }
  3005.  
  3006. .slider-control-paging .slider-active:before,
  3007. .slider-control-paging .slider-active:hover:before {
  3008. background-color: #24890d;
  3009. }
  3010.  
  3011. .slider-direction-nav {
  3012. clear: both;
  3013. list-style: none;
  3014. margin: 0;
  3015. position: relative;
  3016. width: 100%;
  3017. z-index: 3;
  3018. }
  3019.  
  3020. .slider-direction-nav li {
  3021. border-color: #fff;
  3022. border-style: solid;
  3023. border-width: 2px 1px 0 0;
  3024. -webkit-box-sizing: border-box;
  3025. -moz-box-sizing: border-box;
  3026. box-sizing: border-box;
  3027. float: left;
  3028. text-align: center;
  3029. width: 50%;
  3030. }
  3031.  
  3032. .slider-direction-nav li:last-child {
  3033. border-width: 2px 0 0 1px;
  3034. }
  3035.  
  3036. .slider-direction-nav a {
  3037. background-color: #000;
  3038. display: block;
  3039. font-size: 0;
  3040. height: 46px;
  3041. }
  3042.  
  3043. .slider-direction-nav a:hover {
  3044. background-color: #24890d;
  3045. }
  3046.  
  3047. .slider-direction-nav a:before {
  3048. color: #fff;
  3049. content: "\f430";
  3050. font-size: 32px;
  3051. line-height: 46px;
  3052. }
  3053.  
  3054. .slider-direction-nav .slider-next:before {
  3055. content: "\f429";
  3056. }
  3057.  
  3058. .slider-direction-nav .slider-disabled {
  3059. display: none;
  3060. }
  3061.  
  3062.  
  3063. /**
  3064. * 10.0 Multisite
  3065. * -----------------------------------------------------------------------------
  3066. */
  3067.  
  3068. .site-main .widecolumn {
  3069. padding-top: 72px;
  3070. width: auto;
  3071. }
  3072. .site-main .mu_register,
  3073. .widecolumn > h2,
  3074. .widecolumn > form {
  3075. margin: 0 auto 48px;
  3076. max-width: 474px;
  3077. padding: 0 30px;
  3078. }
  3079.  
  3080. .site-main .mu_register #blog_title,
  3081. .site-main .mu_register #user_email,
  3082. .site-main .mu_register #blogname,
  3083. .site-main .mu_register #user_name {
  3084. font-size: inherit;
  3085. width: 90%;
  3086. }
  3087.  
  3088. .site-main .mu_register input[type="submit"],
  3089. .widecolumn #submit {
  3090. font-size: inherit;
  3091. width: auto;
  3092. }
  3093.  
  3094.  
  3095. /**
  3096. * 11.0 Media Queries
  3097. * -----------------------------------------------------------------------------
  3098. */
  3099.  
  3100. /* Does the same thing as <meta name="viewport" content="width=device-width">,
  3101. * but in the future W3C standard way. -ms- prefix is required for IE10+ to
  3102. * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
  3103. * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
  3104. */
  3105. @-ms-viewport {
  3106. width: device-width;
  3107. }
  3108.  
  3109. @viewport {
  3110. width: device-width;
  3111. }
  3112.  
  3113. @media screen and (max-width: 400px) {
  3114. .list-view .site-content .post-thumbnail {
  3115. background: none;
  3116. width: auto;
  3117. z-index: 2;
  3118. }
  3119.  
  3120. .list-view .site-content .post-thumbnail img {
  3121. float: left;
  3122. margin: 0 10px 3px 0;
  3123. width: 84px;
  3124. }
  3125.  
  3126. .list-view .site-content .entry-header {
  3127. background-color: transparent;
  3128. padding: 0;
  3129. }
  3130.  
  3131. .list-view .content-area {
  3132. padding: 0 10px;
  3133. }
  3134.  
  3135. .list-view .site-content .hentry {
  3136. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  3137. margin: 0;
  3138. min-height: 60px;
  3139. padding: 12px 0 9px;
  3140. }
  3141.  
  3142. .list-view .site-content .cat-links,
  3143. .list-view .site-content .type-post .entry-content,
  3144. .list-view .site-content .type-page .entry-content,
  3145. .list-view .site-content .type-post .entry-summary,
  3146. .list-view .site-content .type-page .entry-summary,
  3147. .list-view .site-content footer.entry-meta {
  3148. display: none;
  3149. }
  3150.  
  3151. .list-view .site-content .entry-title {
  3152. clear: none;
  3153. font-size: 15px;
  3154. font-weight: 900;
  3155. line-height: 1.2;
  3156. margin-bottom: 6px;
  3157. text-transform: none;
  3158. }
  3159.  
  3160. .list-view .site-content .format-aside .entry-title,
  3161. .list-view .site-content .format-link .entry-title,
  3162. .list-view .site-content .format-quote .entry-title {
  3163. display: block;
  3164. }
  3165.  
  3166. .list-view .site-content .entry-meta {
  3167. background-color: transparent;
  3168. clear: none;
  3169. margin: 0;
  3170. text-transform: none;
  3171. }
  3172.  
  3173. .archive-header,
  3174. .page-header {
  3175. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  3176. margin: 24px auto 0;
  3177. padding-bottom: 24px;
  3178. }
  3179.  
  3180. .error404 .page-header {
  3181. border-bottom: 0;
  3182. margin: 0 auto 24px;
  3183. padding: 0 10px;
  3184. }
  3185. }
  3186.  
  3187. @media screen and (min-width: 401px) {
  3188. a.post-thumbnail:hover img {
  3189. opacity: 0.85;
  3190. }
  3191.  
  3192. .full-size-link:before,
  3193. .parent-post-link:before,
  3194. .site-content span + .byline:before,
  3195. .site-content span + .comments-link:before,
  3196. .site-content span + .edit-link:before,
  3197. .site-content span + .entry-date:before {
  3198. content: "";
  3199. }
  3200.  
  3201. .attachment span.entry-date:before,
  3202. .entry-content .edit-link a:before,
  3203. .entry-meta .edit-link a:before,
  3204. .site-content .byline a:before,
  3205. .site-content .comments-link a:before,
  3206. .site-content .entry-date a:before,
  3207. .site-content .featured-post:before,
  3208. .site-content .full-size-link a:before,
  3209. .site-content .parent-post-link a:before,
  3210. .site-content .post-format a:before {
  3211. -webkit-font-smoothing: antialiased;
  3212. display: inline-block;
  3213. font: normal 16px/1 Genericons;
  3214. text-decoration: inherit;
  3215. vertical-align: text-bottom;
  3216. }
  3217.  
  3218. .site-content .entry-meta > span {
  3219. margin-right: 10px;
  3220. }
  3221.  
  3222. .site-content .format-video .post-format a:before {
  3223. content: "\f104";
  3224. }
  3225.  
  3226. .site-content .format-audio .post-format a:before {
  3227. content: "\f109";
  3228. }
  3229.  
  3230. .site-content .format-image .post-format a:before {
  3231. content: "\f473";
  3232. }
  3233.  
  3234. .site-content .format-quote .post-format a:before {
  3235. content: "\f106";
  3236. margin-right: 2px;
  3237. }
  3238.  
  3239. .site-content .format-gallery .post-format a:before {
  3240. content: "\f103";
  3241. margin-right: 4px;
  3242. }
  3243.  
  3244. .site-content .format-aside .post-format a:before {
  3245. content: "\f101";
  3246. margin-right: 2px;
  3247. }
  3248.  
  3249. .site-content .format-link .post-format a:before {
  3250. content: "\f107";
  3251. position: relative;
  3252. top: 1px;
  3253. }
  3254.  
  3255. .site-content .featured-post:before {
  3256. content: "\f308";
  3257. margin-right: 3px;
  3258. position: relative;
  3259. top: 1px;
  3260. }
  3261.  
  3262. .site-content .entry-date a:before,
  3263. .attachment .site-content span.entry-date:before {
  3264. content: "\f303";
  3265. margin-right: 1px;
  3266. position: relative;
  3267. top: 1px;
  3268. }
  3269.  
  3270. .site-content .byline a:before {
  3271. content: "\f304";
  3272. }
  3273.  
  3274. .site-content .comments-link a:before {
  3275. content: "\f300";
  3276. margin-right: 2px;
  3277. }
  3278.  
  3279. .entry-content .edit-link a:before,
  3280. .entry-meta .edit-link a:before {
  3281. content: "\f411";
  3282. }
  3283.  
  3284. .site-content .full-size-link a:before {
  3285. content: "\f402";
  3286. margin-right: 1px;
  3287. }
  3288.  
  3289. .site-content .parent-post-link a:before {
  3290. content: "\f301";
  3291. }
  3292.  
  3293. .list-view .site-content .hentry {
  3294. border-top: 1px solid rgba(0, 0, 0, 0.1);
  3295. padding-top: 48px;
  3296. }
  3297.  
  3298. .list-view .site-content .hentry:first-of-type,
  3299. .list-view .site-content .hentry.has-post-thumbnail {
  3300. border-top: 0;
  3301. padding-top: 0;
  3302. }
  3303.  
  3304. .archive-header,
  3305. .page-header {
  3306. margin: 0 auto 60px;
  3307. padding: 0 10px;
  3308. }
  3309.  
  3310. .error404 .page-header {
  3311. margin-bottom: 24px;
  3312. }
  3313. }
  3314.  
  3315. @media screen and (min-width: 594px) {
  3316. .site-content .entry-header {
  3317. padding-right: 30px;
  3318. padding-left: 30px;
  3319. }
  3320.  
  3321. .site-content .has-post-thumbnail .entry-header {
  3322. margin-top: -48px;
  3323. }
  3324. }
  3325.  
  3326. @media screen and (min-width: 673px) {
  3327. .header-main {
  3328. padding: 0 30px;
  3329. }
  3330.  
  3331. .search-toggle {
  3332. margin-right: 18px;
  3333. }
  3334.  
  3335. .search-box .search-field {
  3336. width: 50%;
  3337. }
  3338.  
  3339. .content-area {
  3340. float: left;
  3341. width: 100%;
  3342. }
  3343.  
  3344. .site-content {
  3345. margin-right: 30%;
  3346. }
  3347.  
  3348. .site-content .has-post-thumbnail .entry-header {
  3349. margin-top: 0;
  3350. }
  3351.  
  3352. .archive-header,
  3353. .comments-area,
  3354. .image-navigation,
  3355. .page-header,
  3356. .page-content,
  3357. .post-navigation,
  3358. .site-content .entry-content,
  3359. .site-content .entry-summary,
  3360. .site-content footer.entry-meta {
  3361. padding-right: 30px;
  3362. padding-left: 30px;
  3363. }
  3364.  
  3365. .singular .site-content .hentry.has-post-thumbnail {
  3366. margin-top: 0;
  3367. }
  3368.  
  3369. .full-width .site-content {
  3370. margin-right: 0;
  3371. }
  3372.  
  3373. .full-width .site-content .has-post-thumbnail .entry-header,
  3374. .full-width .site-content .hentry.has-post-thumbnail:first-child {
  3375. margin-top: -48px;
  3376. }
  3377.  
  3378. #secondary,
  3379. #supplementary {
  3380. padding: 0 30px;
  3381. }
  3382.  
  3383. .content-sidebar {
  3384. border: 0;
  3385. float: right;
  3386. margin-left: -33.33333333%;
  3387. padding: 48px 30px 24px;
  3388. position: relative;
  3389. width: 33.33333333%;
  3390. }
  3391.  
  3392. .grid .featured-content .hentry {
  3393. float: left;
  3394. width: 50%;
  3395. }
  3396.  
  3397. .grid .featured-content .hentry:nth-child( 2n+1 ) {
  3398. clear: both;
  3399. }
  3400.  
  3401. .grid .featured-content .entry-header {
  3402. border-color: #000;
  3403. border-style: solid;
  3404. border-width: 12px 10px;
  3405. height: 96px;
  3406. padding: 0;
  3407. }
  3408.  
  3409. .slider .featured-content .entry-title {
  3410. font-size: 22px;
  3411. line-height: 1.0909090909;
  3412. }
  3413.  
  3414. .slider .featured-content .entry-header {
  3415. min-height: inherit;
  3416. padding: 24px 30px 48px;
  3417. position: absolute;
  3418. left: 0;
  3419. bottom: 0;
  3420. width: 50%;
  3421. z-index: 3;
  3422. }
  3423.  
  3424. .slider-control-paging {
  3425. background: transparent;
  3426. margin-top: -48px;
  3427. padding-left: 20px;
  3428. width: 50%;
  3429. }
  3430.  
  3431. .slider-direction-nav {
  3432. clear: none;
  3433. float: right;
  3434. margin-top: -48px;
  3435. width: 98px;
  3436. }
  3437.  
  3438. .slider-direction-nav li {
  3439. border: 0;
  3440. padding: 0 1px 0 0;
  3441. }
  3442.  
  3443. .slider-direction-nav li:last-child {
  3444. padding: 0 0 0 1px;
  3445. }
  3446.  
  3447. .slider-direction-nav a {
  3448. height: 48px;
  3449. }
  3450.  
  3451. .slider-direction-nav a:before {
  3452. line-height: 48px;
  3453. }
  3454.  
  3455. .site-info {
  3456. padding: 15px 30px;
  3457. }
  3458. }
  3459.  
  3460. @media screen and (min-width: 783px) {
  3461. .site-title {
  3462. /* Search-toggle width = 48px */
  3463. max-width: -webkit-calc(100% - 48px);
  3464. max-width: calc(100% - 48px);
  3465. }
  3466.  
  3467. .header-main {
  3468. padding-right: 0;
  3469. }
  3470.  
  3471. .search-toggle {
  3472. margin-right: 0;
  3473. }
  3474.  
  3475. /* Fixed Header */
  3476.  
  3477. .masthead-fixed .site-header {
  3478. position: fixed;
  3479. top: 0;
  3480. }
  3481.  
  3482. .admin-bar.masthead-fixed .site-header {
  3483. top: 32px;
  3484. }
  3485.  
  3486. .masthead-fixed .site-main {
  3487. margin-top: 48px;
  3488. }
  3489.  
  3490. /* Navigation */
  3491.  
  3492. .site-navigation li .current_page_item > a,
  3493. .site-navigation li .current_page_ancestor > a,
  3494. .site-navigation li .current-menu-item > a,
  3495. .site-navigation li .current-menu-ancestor > a {
  3496. color: #fff;
  3497. }
  3498.  
  3499. /* Primary Navigation */
  3500.  
  3501. .primary-navigation {
  3502. float: right;
  3503. font-size: 11px;
  3504. margin: 0 1px 0 -12px;
  3505. padding: 0;
  3506. text-transform: uppercase;
  3507. }
  3508.  
  3509. .primary-navigation .menu-toggle {
  3510. display: none;
  3511. padding: 0;
  3512. }
  3513.  
  3514. .primary-navigation .nav-menu {
  3515. border-bottom: 0;
  3516. display: block;
  3517. }
  3518.  
  3519. .primary-navigation.toggled-on {
  3520. border-bottom: 0;
  3521. margin: 0;
  3522. padding: 0;
  3523. }
  3524.  
  3525. .primary-navigation li {
  3526. border: 0;
  3527. display: inline-block;
  3528. height: 48px;
  3529. line-height: 48px;
  3530. position: relative;
  3531. }
  3532.  
  3533. .primary-navigation a {
  3534. display: inline-block;
  3535. padding: 0 12px;
  3536. white-space: nowrap;
  3537. }
  3538.  
  3539. .primary-navigation ul ul {
  3540. background-color: #24890d;
  3541. float: left;
  3542. margin: 0;
  3543. position: absolute;
  3544. top: 48px;
  3545. left: -999em;
  3546. z-index: 99999;
  3547. }
  3548.  
  3549. .primary-navigation li li {
  3550. border: 0;
  3551. display: block;
  3552. height: auto;
  3553. line-height: 1.0909090909;
  3554. }
  3555.  
  3556. .primary-navigation ul ul ul {
  3557. left: -999em;
  3558. top: 0;
  3559. }
  3560.  
  3561. .primary-navigation ul ul a {
  3562. padding: 18px 12px;
  3563. white-space: normal;
  3564. width: 176px;
  3565. }
  3566.  
  3567. .primary-navigation li:hover > a,
  3568. .primary-navigation li.focus > a {
  3569. background-color: #24890d;
  3570. color: #fff;
  3571. }
  3572.  
  3573. .primary-navigation ul ul a:hover,
  3574. .primary-navigation ul ul li.focus > a {
  3575. background-color: #41a62a;
  3576. }
  3577.  
  3578. .primary-navigation ul li:hover > ul,
  3579. .primary-navigation ul li.focus > ul {
  3580. left: auto;
  3581. }
  3582.  
  3583. .primary-navigation ul ul li:hover > ul,
  3584. .primary-navigation ul ul li.focus > ul {
  3585. left: 100%;
  3586. }
  3587.  
  3588. .primary-navigation .menu-item-has-children > a,
  3589. .primary-navigation .page_item_has_children > a {
  3590. padding-right: 26px;
  3591. }
  3592.  
  3593. .primary-navigation .menu-item-has-children > a:after,
  3594. .primary-navigation .page_item_has_children > a:after {
  3595. -webkit-font-smoothing: antialiased;
  3596. content: "\f502";
  3597. display: inline-block;
  3598. font: normal 8px/1 Genericons;
  3599. position: absolute;
  3600. right: 12px;
  3601. top: 22px;
  3602. vertical-align: text-bottom;
  3603. }
  3604.  
  3605. .primary-navigation li .menu-item-has-children > a,
  3606. .primary-navigation li .page_item_has_children > a {
  3607. padding-right: 20px;
  3608. width: 168px;
  3609. }
  3610.  
  3611. .primary-navigation .menu-item-has-children li.menu-item-has-children > a:after,
  3612. .primary-navigation .menu-item-has-children li.page_item_has_children > a:after,
  3613. .primary-navigation .page_item_has_children li.menu-item-has-children > a:after,
  3614. .primary-navigation .page_item_has_children li.page_item_has_children > a:after {
  3615. content: "\f501";
  3616. right: 8px;
  3617. top: 20px;
  3618. }
  3619. }
  3620.  
  3621. @media screen and (min-width: 810px) {
  3622. .attachment .entry-attachment .attachment {
  3623. margin-right: -168px;
  3624. margin-left: -168px;
  3625. max-width: 810px;
  3626. }
  3627.  
  3628. .attachment .site-content .attachment img {
  3629. display: block;
  3630. margin: 0 auto;
  3631. }
  3632.  
  3633. .contributor-avatar {
  3634. margin-left: -168px;
  3635. }
  3636.  
  3637. .contributor-summary {
  3638. float: left;
  3639. }
  3640.  
  3641. .full-width .site-content blockquote.alignleft,
  3642. .full-width .site-content blockquote.alignright {
  3643. width: -webkit-calc(50% + 130px);
  3644. width: calc(50% + 130px);
  3645. }
  3646.  
  3647. .full-width .site-content blockquote.alignleft,
  3648. .full-width .site-content img.size-full.alignleft,
  3649. .full-width .site-content img.size-large.alignleft,
  3650. .full-width .site-content img.size-medium.alignleft,
  3651. .full-width .site-content .wp-caption.alignleft {
  3652. margin-left: -168px;
  3653. }
  3654.  
  3655. .full-width .site-content .alignleft {
  3656. clear: left;
  3657. }
  3658.  
  3659. .full-width .site-content blockquote.alignright,
  3660. .full-width .site-content img.size-full.alignright,
  3661. .full-width .site-content img.size-large.alignright,
  3662. .full-width .site-content img.size-medium.alignright,
  3663. .full-width .site-content .wp-caption.alignright {
  3664. margin-right: -168px;
  3665. }
  3666.  
  3667. .full-width .site-content .alignright {
  3668. clear: right;
  3669. }
  3670. }
  3671.  
  3672. @media screen and (min-width: 846px) {
  3673. .content-area,
  3674. .content-sidebar {
  3675. padding-top: 72px;
  3676. }
  3677.  
  3678. .site-content .has-post-thumbnail .entry-header {
  3679. margin-top: -48px;
  3680. }
  3681.  
  3682. .comment-list .trackback,
  3683. .comment-list .pingback,
  3684. .comment-list article {
  3685. margin-bottom: 36px;
  3686. padding-top: 36px;
  3687. }
  3688.  
  3689. .comment-author .avatar {
  3690. height: 34px;
  3691. top: 2px;
  3692. width: 34px;
  3693. }
  3694.  
  3695. .comment-author,
  3696. .comment-awaiting-moderation,
  3697. .comment-content,
  3698. .comment-list .reply,
  3699. .comment-metadata {
  3700. padding-left: 50px;
  3701. }
  3702.  
  3703. .comment-list .children {
  3704. margin-left: 20px;
  3705. }
  3706.  
  3707. .full-width .site-content .hentry.has-post-thumbnail:first-child {
  3708. margin-top: -72px;
  3709. }
  3710.  
  3711. .featured-content {
  3712. margin-bottom: 0;
  3713. }
  3714. }
  3715.  
  3716. @media screen and (min-width: 1008px) {
  3717. .search-box-wrapper {
  3718. padding-left: 182px;
  3719. }
  3720.  
  3721. .main-content {
  3722. float: left;
  3723. }
  3724.  
  3725. .site-content {
  3726. margin-right: 29.04761904%;
  3727. margin-left: 182px;
  3728. }
  3729.  
  3730. .site-content .entry-header {
  3731. margin-top: 0;
  3732. }
  3733.  
  3734. .site-content .has-post-thumbnail .entry-header {
  3735. margin-top: 0;
  3736. }
  3737.  
  3738. .content-sidebar {
  3739. margin-left: -50%;
  3740. width: 25%;
  3741. }
  3742.  
  3743. .site:before {
  3744. background-color: #000;
  3745. content: "";
  3746. display: block;
  3747. height: 100%;
  3748. min-height: 100%;
  3749. position: absolute;
  3750. top: 0;
  3751. left: 0;
  3752. width: 182px;
  3753. z-index: 2;
  3754. }
  3755.  
  3756. #secondary {
  3757. background-color: transparent;
  3758. border: 0;
  3759. clear: none;
  3760. float: left;
  3761. margin: 0 0 0 -100%;
  3762. min-height: 100vh;
  3763. width: 122px;
  3764. }
  3765.  
  3766. .primary-sidebar {
  3767. padding-top: 50;
  3768. }
  3769.  
  3770. .site-description {
  3771. display: block;
  3772. margin: 0 0 18px;
  3773. }
  3774.  
  3775. .site-description:empty {
  3776. margin: 0;
  3777. }
  3778.  
  3779. .secondary-navigation {
  3780. font-size: 11px;
  3781. margin: 0 -30px 48px;
  3782. width: 182px;
  3783. }
  3784.  
  3785. .secondary-navigation li {
  3786. border-top: 1px solid rgba(255, 255, 255, 0.2);
  3787. position: relative;
  3788. }
  3789.  
  3790. .secondary-navigation a {
  3791. padding: 10px 30px;
  3792. }
  3793.  
  3794. .secondary-navigation ul ul {
  3795. background-color: #24890d;
  3796. position: absolute;
  3797. top: 0;
  3798. left: -999em;
  3799. width: 182px;
  3800. z-index: 99999;
  3801. }
  3802.  
  3803. .secondary-navigation li li {
  3804. border-top: 0;
  3805. }
  3806.  
  3807. .secondary-navigation li:hover > a,
  3808. .secondary-navigation li.focus > a {
  3809. background-color: #24890d;
  3810. color: #fff;
  3811. }
  3812.  
  3813. .secondary-navigation ul ul a:hover,
  3814. .secondary-navigation ul ul li.focus > a {
  3815. background-color: #41a62a;
  3816. }
  3817.  
  3818. .secondary-navigation ul li:hover > ul,
  3819. .secondary-navigation ul li.focus > ul {
  3820. left: 162px;
  3821. }
  3822.  
  3823. .secondary-navigation .menu-item-has-children > a {
  3824. padding-right: 38px;
  3825. }
  3826.  
  3827. .secondary-navigation .menu-item-has-children > a:after {
  3828. -webkit-font-smoothing: antialiased;
  3829. content: "\f501";
  3830. display: inline-block;
  3831. font: normal 8px/1 Genericons;
  3832. position: absolute;
  3833. right: 26px;
  3834. top: 14px;
  3835. vertical-align: text-bottom;
  3836. }
  3837.  
  3838. .footer-sidebar .widget,
  3839. .primary-sidebar .widget {
  3840. font-size: 12px;
  3841. line-height: 1.5;
  3842. }
  3843.  
  3844. .footer-sidebar .widget {
  3845. -webkit-box-sizing: border-box;
  3846. -moz-box-sizing: border-box;
  3847. box-sizing: border-box;
  3848. float: left;
  3849. padding: 0 30px;
  3850. width: 25%;
  3851. }
  3852.  
  3853. .footer-sidebar .widget h1,
  3854. .primary-sidebar .widget h1 {
  3855. font-size: 20px;
  3856. line-height: 1.2;
  3857. }
  3858.  
  3859. .footer-sidebar .widget h2,
  3860. .primary-sidebar .widget h2 {
  3861. font-size: 18px;
  3862. line-height: 1.3333333333;
  3863. }
  3864.  
  3865. .footer-sidebar .widget h3,
  3866. .primary-sidebar .widget h3 {
  3867. font-size: 16px;
  3868. line-height: 1.5;
  3869. }
  3870.  
  3871. .footer-sidebar .widget h4,
  3872. .primary-sidebar .widget h4 {
  3873. font-size: 14px;
  3874. line-height: 1.7142857142;
  3875. }
  3876.  
  3877. .footer-sidebar .widget h5,
  3878. .primary-sidebar .widget h5 {
  3879. font-size: 12px;
  3880. line-height: 2;
  3881. }
  3882.  
  3883. .footer-sidebar .widget h6,
  3884. .primary-sidebar .widget h6 {
  3885. font-size: 11px;
  3886. line-height: 2.1818181818;
  3887. }
  3888.  
  3889. .footer-sidebar .widget code,
  3890. .footer-sidebar .widget kbd,
  3891. .footer-sidebar .widget tt,
  3892. .footer-sidebar .widget var,
  3893. .footer-sidebar .widget samp,
  3894. .footer-sidebar .widget pre,
  3895. .primary-sidebar .widget code,
  3896. .primary-sidebar .widget kbd,
  3897. .primary-sidebar .widget tt,
  3898. .primary-sidebar .widget var,
  3899. .primary-sidebar .widget samp,
  3900. .primary-sidebar .widget pre {
  3901. font-size: 11px;
  3902. line-height: 1.6363636363;
  3903. }
  3904.  
  3905. .footer-sidebar .widget blockquote,
  3906. .primary-sidebar .widget blockquote {
  3907. font-size: 14px;
  3908. line-height: 1.2857142857;
  3909. }
  3910.  
  3911. .footer-sidebar .widget blockquote cite,
  3912. .primary-sidebar .widget blockquote cite {
  3913. font-size: 12px;
  3914. line-height: 1.5;
  3915. }
  3916.  
  3917. .footer-sidebar .widget input,
  3918. .footer-sidebar .widget textarea,
  3919. .primary-sidebar .widget input,
  3920. .primary-sidebar .widget textarea {
  3921. font-size: 12px;
  3922. padding: 3px 2px 4px 4px;
  3923. }
  3924.  
  3925. .footer-sidebar .widget input[type="button"],
  3926. .footer-sidebar .widget input[type="reset"],
  3927. .footer-sidebar .widget input[type="submit"],
  3928. .primary-sidebar .widget input[type="button"],
  3929. .primary-sidebar .widget input[type="reset"],
  3930. .primary-sidebar .widget input[type="submit"] {
  3931. padding: 5px 15px 4px;
  3932. }
  3933.  
  3934. .footer-sidebar .widget .widget-title,
  3935. .primary-sidebar .widget .widget-title {
  3936. font-size: 15px;
  3937. font-weight: 890;
  3938. line-height: 1.00;
  3939. margin-bottom: 18px;
  3940. }
  3941.  
  3942. .footer-sidebar .widget_twentyfourteen_ephemera .entry-title,
  3943. .footer-sidebar .widget_twentyfourteen_ephemera .entry-meta,
  3944. .footer-sidebar .widget_twentyfourteen_ephemera .wp-caption-text,
  3945. .footer-sidebar .widget_twentyfourteen_ephemera .post-format-archive-link,
  3946. .footer-sidebar .widget_twentyfourteen_ephemera .entry-content table,
  3947. .primary-sidebar .widget_twentyfourteen_ephemera .entry-title,
  3948. .primary-sidebar .widget_twentyfourteen_ephemera .entry-meta,
  3949. .primary-sidebar .widget_twentyfourteen_ephemera .wp-caption-text,
  3950. .primary-sidebar .widget_twentyfourteen_ephemera .post-format-archive-link,
  3951. .primary-sidebar .widget_twentyfourteen_ephemera .entry-content table {
  3952. font-size: 11px;
  3953. line-height: 1.6363636363;
  3954. }
  3955.  
  3956. .footer-sidebar .widget_archive li,
  3957. .footer-sidebar .widget_categories li,
  3958. .footer-sidebar .widget_links li,
  3959. .footer-sidebar .widget_meta li,
  3960. .footer-sidebar .widget_nav_menu li,
  3961. .footer-sidebar .widget_pages li,
  3962. .footer-sidebar .widget_recent_comments li,
  3963. .footer-sidebar .widget_recent_entries li,
  3964. .primary-sidebar .widget_archive li,
  3965. .primary-sidebar .widget_categories li,
  3966. .primary-sidebar .widget_links li,
  3967. .primary-sidebar .widget_meta li,
  3968. .primary-sidebar .widget_nav_menu li,
  3969. .primary-sidebar .widget_pages li,
  3970. .primary-sidebar .widget_recent_comments li,
  3971. .primary-sidebar .widget_recent_entries li {
  3972. border-top: 0;
  3973. padding: 0 0 6px;
  3974. }
  3975.  
  3976. .footer-sidebar .widget_archive li:last-child,
  3977. .footer-sidebar .widget_categories li:last-child,
  3978. .footer-sidebar .widget_links li:last-child,
  3979. .footer-sidebar .widget_meta li:last-child,
  3980. .footer-sidebar .widget_nav_menu li:last-child,
  3981. .footer-sidebar .widget_pages li:last-child,
  3982. .footer-sidebar .widget_recent_comments li:last-child,
  3983. .footer-sidebar .widget_recent_entries li:last-child,
  3984. .primary-sidebar .widget_archive li:last-child,
  3985. .primary-sidebar .widget_categories li:last-child,
  3986. .primary-sidebar .widget_links li:last-child,
  3987. .primary-sidebar .widget_meta li:last-child,
  3988. .primary-sidebar .widget_nav_menu li:last-child,
  3989. .primary-sidebar .widget_pages li:last-child,
  3990. .primary-sidebar .widget_recent_comments li:last-child,
  3991. .primary-sidebar .widget_recent_entries li:last-child {
  3992. padding: 0;
  3993. }
  3994.  
  3995. .footer-sidebar .widget_categories li ul,
  3996. .footer-sidebar .widget_nav_menu li ul,
  3997. .footer-sidebar .widget_pages li ul,
  3998. .primary-sidebar .widget_categories li ul,
  3999. .primary-sidebar .widget_nav_menu li ul,
  4000. .primary-sidebar .widget_pages li ul {
  4001. border-top: 0;
  4002. margin-top: 6px;
  4003. }
  4004.  
  4005. #supplementary {
  4006. padding: 0;
  4007. }
  4008.  
  4009. .footer-sidebar {
  4010. font-size: 12px;
  4011. line-height: 0.5;
  4012. }
  4013.  
  4014. .featured-content {
  4015. padding-left: 182px;
  4016. }
  4017.  
  4018. .grid .featured-content .hentry {
  4019. width: 33.3333333%;
  4020. }
  4021.  
  4022. .grid .featured-content .hentry:nth-child( 2n+1 ) {
  4023. clear: none;
  4024. }
  4025.  
  4026. .grid .featured-content .hentry:nth-child( 3n+1 ) {
  4027. clear: both;
  4028. }
  4029.  
  4030. .grid .featured-content .entry-header {
  4031. height: 120px;
  4032. }
  4033. }
  4034.  
  4035. @media screen and (min-width: 1040px) {
  4036. .site-content .has-post-thumbnail .entry-header {
  4037. margin-top: -48px;
  4038. }
  4039.  
  4040. .archive-header,
  4041. .comments-area,
  4042. .image-navigation,
  4043. .page-header,
  4044. .page-content,
  4045. .post-navigation,
  4046. .site-content .entry-header,
  4047. .site-content .entry-content,
  4048. .site-content .entry-summary,
  4049. .site-content footer.entry-meta {
  4050. padding-right: 15px;
  4051. padding-left: 15px;
  4052. }
  4053.  
  4054. .full-width .archive-header,
  4055. .full-width .comments-area,
  4056. .full-width .image-navigation,
  4057. .full-width .page-header,
  4058. .full-width .page-content,
  4059. .full-width .post-navigation,
  4060. .full-width .site-content .entry-header,
  4061. .full-width .site-content .entry-content,
  4062. .full-width .site-content .entry-summary,
  4063. .full-width .site-content footer.entry-meta {
  4064. padding-right: 30px;
  4065. padding-left: 30px;
  4066. }
  4067. }
  4068.  
  4069. @media screen and (min-width: 1080px) {
  4070. .search-box .search-field {
  4071. width: 324px;
  4072. }
  4073.  
  4074. .site-content,
  4075. .site-main .widecolumn {
  4076. margin-left: 222px;
  4077. }
  4078.  
  4079. .site:before {
  4080. width: 222px;
  4081. }
  4082.  
  4083. .search-box-wrapper,
  4084. .featured-content {
  4085. padding-left: 222px;
  4086. }
  4087.  
  4088. #secondary {
  4089. width: 162px;
  4090. }
  4091.  
  4092. .secondary-navigation,
  4093. .secondary-navigation ul ul {
  4094. width: 222px;
  4095. }
  4096.  
  4097. .secondary-navigation ul li:hover > ul,
  4098. .secondary-navigation ul li.focus > ul {
  4099. left: 202px;
  4100. }
  4101.  
  4102. .slider .featured-content .entry-title {
  4103. font-size: 33px;
  4104. }
  4105.  
  4106. .slider .featured-content .entry-header,
  4107. .slider-control-paging {
  4108. width: 534px;
  4109. }
  4110.  
  4111. .slider-control-paging {
  4112. padding-left: 24px;
  4113. }
  4114.  
  4115. .slider-control-paging li {
  4116. margin: 12px 12px 12px 0;
  4117. }
  4118.  
  4119. .slider-control-paging a {
  4120. height: 24px;
  4121. width: 24px;
  4122. }
  4123.  
  4124. .slider-control-paging a:before {
  4125. top: 6px;
  4126. left: 6px;
  4127. }
  4128. }
  4129.  
  4130. @media screen and (min-width: 1110px) {
  4131. .archive-header,
  4132. .comments-area,
  4133. .image-navigation,
  4134. .page-header,
  4135. .page-content,
  4136. .post-navigation,
  4137. .site-content .entry-header,
  4138. .site-content .entry-content,
  4139. .site-content .entry-summary,
  4140. .site-content footer.entry-meta {
  4141. padding-right: 30px;
  4142. padding-left: 30px;
  4143. }
  4144. }
  4145.  
  4146. @media screen and (min-width: 1218px) {
  4147. .archive-header,
  4148. .comments-area,
  4149. .image-navigation,
  4150. .page-header,
  4151. .page-content,
  4152. .post-navigation,
  4153. .site-content .entry-header,
  4154. .site-content .entry-content,
  4155. .site-content .entry-summary,
  4156. .site-content footer.entry-meta {
  4157. margin-right: 54px;
  4158. }
  4159.  
  4160. .full-width .archive-header,
  4161. .full-width .comments-area,
  4162. .full-width .image-navigation,
  4163. .full-width .page-header,
  4164. .full-width .page-content,
  4165. .full-width .post-navigation,
  4166. .full-width .site-content .entry-header,
  4167. .full-width .site-content .entry-content,
  4168. .full-width .site-content .entry-summary,
  4169. .full-width .site-content footer.entry-meta {
  4170. margin-right: auto;
  4171. }
  4172. }
  4173.  
  4174. @media screen and (min-width: 1260px) {
  4175. .site-content blockquote.alignleft,
  4176. .site-content blockquote.alignright {
  4177. width: -webkit-calc(50% + 18px);
  4178. width: calc(50% + 18px);
  4179. }
  4180.  
  4181. .site-content blockquote.alignleft {
  4182. margin-left: -18%;
  4183. }
  4184.  
  4185. .site-content blockquote.alignright {
  4186. margin-right: -18%;
  4187. }
  4188. }
  4189.  
  4190.  
  4191. /**
  4192. * 12.0 Print
  4193. * -----------------------------------------------------------------------------
  4194. */
  4195.  
  4196. @media print {
  4197. body {
  4198. background: none !important; /* Brute force since user agents all print differently. */
  4199. color: #2b2b2b;
  4200. font-size: 12pt;
  4201. }
  4202.  
  4203. .site,
  4204. .site-header,
  4205. .hentry,
  4206. .site-content .entry-header,
  4207. .site-content .entry-content,
  4208. .site-content .entry-summary,
  4209. .site-content .entry-meta,
  4210. .page-content,
  4211. .archive-header,
  4212. .page-header,
  4213. .contributor-info,
  4214. .comments-area,
  4215. .attachment .entry-attachment .attachment {
  4216. max-width: 100%;
  4217. }
  4218.  
  4219. #site-header img,
  4220. .search-toggle,
  4221. .site-navigation,
  4222. .site-content nav,
  4223. .edit-link,
  4224. .page-links,
  4225. .widget-area,
  4226. .more-link,
  4227. .post-format-archive-link,
  4228. .comment-respond,
  4229. .comment-list .reply,
  4230. .comment-reply-login,
  4231. #secondary,
  4232. .site-footer,
  4233. .slider-control-paging,
  4234. .slider-direction-nav {
  4235. display: none;
  4236. }
  4237.  
  4238. .site-title a,
  4239. .entry-meta,
  4240. .entry-meta a,
  4241. .featured-content .hentry,
  4242. .featured-content a {
  4243. color: #2b2b2b;
  4244. }
  4245.  
  4246. .entry-content a,
  4247. .entry-summary a,
  4248. .page-content a,
  4249. .comment-content a {
  4250. text-decoration: none;
  4251. }
  4252.  
  4253. .site-header,
  4254. .post-thumbnail,
  4255. a.post-thumbnail:hover,
  4256. .site-content .entry-header,
  4257. .site-footer,
  4258. .featured-content,
  4259. .featured-content .entry-header {
  4260. background: transparent;
  4261. }
  4262.  
  4263. .header-main {
  4264. padding: 48px 10px;
  4265. }
  4266.  
  4267. .site-title {
  4268. float: none;
  4269. font-size: 19pt;
  4270. }
  4271.  
  4272. .content-area {
  4273. padding-top: 0;
  4274. }
  4275.  
  4276. .list-view .site-content .hentry {
  4277. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  4278. margin-bottom: 48px;
  4279. padding-bottom: 24px;
  4280. }
  4281.  
  4282. .post-thumbnail img {
  4283. margin: 0 10px 24px;
  4284. }
  4285.  
  4286. .site-content .has-post-thumbnail .entry-header {
  4287. padding-top: 0;
  4288. }
  4289.  
  4290. .site-content footer.entry-meta {
  4291. margin: 24px auto;
  4292. }
  4293.  
  4294. .entry-meta .tag-links a {
  4295. color: #fff;
  4296. }
  4297.  
  4298. .singular .site-content .hentry.has-post-thumbnail {
  4299. margin-top: 0;
  4300. }
  4301.  
  4302. .gallery-columns-1.gallery-size-medium,
  4303. .gallery-columns-1.gallery-size-thumbnail,
  4304. .gallery-columns-2.gallery-size-thumbnail,
  4305. .gallery-columns-3.gallery-size-thumbnail {
  4306. display: block;
  4307. }
  4308.  
  4309. .archive-title,
  4310. .page-title {
  4311. margin: 0 10px 48px;
  4312. }
  4313.  
  4314. .featured-content .hentry {
  4315. margin-bottom: 48px;
  4316. }
  4317.  
  4318. .featured-content .post-thumbnail,
  4319. .slider .featured-content .post-thumbnail {
  4320. padding-top: 0;
  4321. }
  4322.  
  4323. .featured-content .post-thumbnail img {
  4324. position: relative;
  4325. }
  4326.  
  4327. .featured-content .entry-header {
  4328. padding: 0 10px 24px;
  4329. }
  4330.  
  4331. .featured-content .entry-meta {
  4332. font-size: 9pt;
  4333. margin-bottom: 11px;
  4334. }
  4335.  
  4336. .featured-content .cat-links {
  4337. font-weight: 900;
  4338. }
  4339.  
  4340. .featured-content .entry-title {
  4341. font-size: 25pt;
  4342. line-height: 36px;
  4343. }
  4344.  
  4345.  
  4346. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement