style.css 83 KB

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