style.css 76 KB

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