style.css 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236
  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.12-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-2015 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,
  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.com"]: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. display: inline;
  1892. }
  1893. .byline img {
  1894. border-radius: 50%;
  1895. float: left;
  1896. margin-right: 5px;
  1897. }
  1898. .entry-summary + .entry-meta > span:not(:first-of-type):before {
  1899. content: "\002F";
  1900. font-weight: bold;
  1901. margin: 0 5px;
  1902. }
  1903. body:not(.group-blog) .entry-summary + .entry-meta > span:nth-of-type(2):before,
  1904. body:not(.group-blog) .sticky .entry-summary + .entry-meta > span:nth-of-type(3):before {
  1905. display: none;
  1906. }
  1907. .entry-summary {
  1908. font-size: 16px;
  1909. line-height: 1.5;
  1910. margin: 0;
  1911. padding: 3px 0;
  1912. position: relative;
  1913. word-wrap: break-word;
  1914. }
  1915. .entry-summary p {
  1916. margin-bottom: 0;
  1917. }
  1918. .entry-summary img {
  1919. display: none;
  1920. }
  1921. .entry-content,
  1922. .page-content {
  1923. margin: 0;
  1924. }
  1925. .more-link {
  1926. white-space: nowrap;
  1927. }
  1928. /* Page Header */
  1929. .page-header {
  1930. border-bottom: 1px solid #eee;
  1931. margin-bottom: 30px;
  1932. padding-bottom: 0;
  1933. }
  1934. .page-title {
  1935. font-size: 39px;
  1936. line-height: 1.54;
  1937. }
  1938. /* Entry Header */
  1939. .archive .hentry .entry-title,
  1940. .blog .hentry .entry-title,
  1941. .search .hentry .entry-title {
  1942. font-size: 25px;
  1943. line-height: 1.2;
  1944. margin: 0;
  1945. }
  1946. .archive .hentry.type-page .entry-title,
  1947. .blog .hentry.type-page .entry-title,
  1948. .search .hentry.type-page .entry-title {
  1949. margin: 0;
  1950. }
  1951. .page .entry-title,
  1952. .single .entry-title {
  1953. font-size: 39px;
  1954. line-height: 1.54;
  1955. margin: 0;
  1956. }
  1957. .page .hentry:not(.has-post-thumbnail) .entry-header,
  1958. .single .hentry:not(.has-post-thumbnail) .entry-header,
  1959. .single .hentry.format-quote .entry-header,
  1960. .single .hentry.format-video .entry-header {
  1961. margin-bottom: 30px;
  1962. }
  1963. .single .hentry.format-aside .entry-header {
  1964. margin-bottom: 0;
  1965. }
  1966. .page .hentry.has-post-thumbnail .entry-header,
  1967. .single .hentry.has-post-thumbnail .entry-header {
  1968. display: none;
  1969. }
  1970. /* Entry Hero */
  1971. .entry-hero {
  1972. position: relative;
  1973. }
  1974. .entry-header-wrapper {
  1975. padding: 30px 0 0;
  1976. width: 100%;
  1977. }
  1978. .entry-hero .post-thumbnail {
  1979. background: #000;
  1980. }
  1981. .entry-hero .post-thumbnail img {
  1982. margin: 0 auto;
  1983. }
  1984. .entry-hero .entry-meta a {
  1985. color: #777;
  1986. }
  1987. .entry-hero .entry-meta a:active,
  1988. .entry-hero .entry-meta a:focus,
  1989. .entry-hero .entry-meta a:hover {
  1990. color: #222;
  1991. }
  1992. .page .hentry.has-post-thumbnail .entry-hero,
  1993. .single .hentry.has-post-thumbnail .entry-hero {
  1994. display: block;
  1995. }
  1996. /* Entry Meta */
  1997. .entry-meta {
  1998. font-family: Lato, sans-serif;
  1999. font-size: 13px;
  2000. line-height: 1.54;
  2001. padding: 5px 0;
  2002. text-transform: uppercase;
  2003. }
  2004. .content-area .entry-meta,
  2005. .content-area .entry-meta a {
  2006. color: #777;
  2007. }
  2008. .content-area .entry-meta a:active,
  2009. .content-area .entry-meta a:focus,
  2010. .content-area .entry-meta a:hover {
  2011. color: #222;
  2012. }
  2013. /* Entry Footer */
  2014. .entry-footer {
  2015. color: #777;
  2016. display: block;
  2017. float: left;
  2018. font-family: Lato, sans-serif;
  2019. font-size: 13px;
  2020. font-weight: bold;
  2021. line-height: 1.54;
  2022. margin-bottom: 30px;
  2023. text-transform: uppercase;
  2024. width: 100%;
  2025. }
  2026. .page .entry-footer {
  2027. float: none;
  2028. margin-bottom: 0;
  2029. width: 100%;
  2030. }
  2031. .entry-footer a {
  2032. color: #777;
  2033. }
  2034. .entry-footer a:active,
  2035. .entry-footer a:focus,
  2036. .entry-footer a:hover {
  2037. color: #222;
  2038. }
  2039. .entry-footer .byline,
  2040. .entry-footer .cat-links,
  2041. .entry-footer .comments-link,
  2042. .entry-footer .edit-link,
  2043. .entry-footer .posted-on,
  2044. .entry-footer .tags-links {
  2045. border-top: 1px solid #eee;
  2046. display: block;
  2047. padding: 5px 0;
  2048. }
  2049. .entry-footer > span:last-of-type {
  2050. border-bottom: 1px solid #eee;
  2051. }
  2052. .entry-footer .cat-links,
  2053. .entry-footer .comments-link {
  2054. float: none;
  2055. }
  2056. .tags-links a:before {
  2057. content: "\0023";
  2058. margin-right: 0.125em;
  2059. }
  2060. /* Post Thumbnail */
  2061. .post-thumbnail {
  2062. background: #000;
  2063. display: block;
  2064. height: 100%;
  2065. position: relative;
  2066. width: 100%;
  2067. }
  2068. .post-thumbnail img {
  2069. display: block;
  2070. }
  2071. a.post-thumbnail:active,
  2072. a.post-thumbnail:focus,
  2073. a.post-thumbnail:hover {
  2074. background-color: #000;
  2075. }
  2076. a.post-thumbnail:focus {
  2077. outline: none;
  2078. }
  2079. a.post-thumbnail:active img,
  2080. a.post-thumbnail:focus img,
  2081. a.post-thumbnail:hover img {
  2082. opacity: 0.7;
  2083. }
  2084. .content-area .format-standard a.post-thumbnail {
  2085. height: 180px;
  2086. margin-bottom: 15px;
  2087. overflow: hidden;
  2088. position: relative;
  2089. z-index: 1;
  2090. }
  2091. .content-area .format-standard a.post-thumbnail img {
  2092. position: absolute;
  2093. top: 50%;
  2094. -webkit-transform: translateY(-50%);
  2095. transform: translateY(-50%);
  2096. }
  2097. /* Page Links */
  2098. .page-links {
  2099. border-top: 1px solid #eee;
  2100. clear: both;
  2101. color: #777;
  2102. font-family: Lato, sans-serif;
  2103. font-size: 13px;
  2104. font-weight: bold;
  2105. line-height: 2.3077;
  2106. margin-bottom: 25px;
  2107. padding: 30px 0 0;
  2108. text-transform: uppercase;
  2109. width: 100%;
  2110. }
  2111. .page-links a,
  2112. .page-links > span {
  2113. background: #eee;
  2114. border: 1px solid #ddd;
  2115. display: inline-block;
  2116. margin: 0 5px 5px 0;
  2117. width: 30px;
  2118. height: 30px;
  2119. line-height: 30px;
  2120. text-align: center;
  2121. }
  2122. .page-links > span {
  2123. color: #d11415;
  2124. }
  2125. .page-links a {
  2126. background: #fff;
  2127. color: #222;
  2128. }
  2129. .page-links a:active,
  2130. .page-links a:focus,
  2131. .page-links a:hover {
  2132. background: #eee;
  2133. border-color: #ddd;
  2134. color: #d11415;
  2135. }
  2136. .page-links a:focus {
  2137. outline: none;
  2138. }
  2139. .page-links > .page-links-title {
  2140. background: transparent;
  2141. border: 0;
  2142. color: #777;
  2143. display: block;
  2144. height: auto;
  2145. margin: 0;
  2146. padding-right: 5px;
  2147. text-align: left;
  2148. width: auto;
  2149. }
  2150. /* Author Info */
  2151. .author-info .author-title {
  2152. clear: none;
  2153. color: #777;
  2154. font-family: Lato, sans-serif;
  2155. font-size: 13px;
  2156. font-weight: bold;
  2157. line-height: 1.54;
  2158. margin: 0;
  2159. padding: 5px 0;
  2160. text-transform: uppercase;
  2161. }
  2162. .author-info .author-name {
  2163. clear: none;
  2164. font-size: 25px;
  2165. line-height: 1.2;
  2166. margin-bottom: 30px;
  2167. }
  2168. .author-info .author-avatar {
  2169. display: none;
  2170. }
  2171. .author-info .author-avatar img {
  2172. border-radius: 50%;
  2173. }
  2174. .author-info .author-bio {
  2175. clear: both;
  2176. font-size: 16px;
  2177. line-height: 1.5;
  2178. }
  2179. .author-info .author-link {
  2180. display: block;
  2181. }
  2182. /*--------------------------------------------------------------
  2183. ## Post Formats
  2184. --------------------------------------------------------------*/
  2185. /* Gallery & Image */
  2186. body:not(.single) .content-area .format-gallery.has-post-thumbnail,
  2187. body:not(.single) .content-area .format-image.has-post-thumbnail {
  2188. color: #fff;
  2189. padding: 60px 0 30px;
  2190. position: relative;
  2191. overflow: hidden;
  2192. }
  2193. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-header,
  2194. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-header {
  2195. position: relative;
  2196. }
  2197. body:not(.single) .content-area .format-gallery.has-post-thumbnail a:focus,
  2198. body:not(.single) .content-area .format-image.has-post-thumbnail a:focus {
  2199. color: #fff;
  2200. outline-color: rgba(255, 255, 255, 0.7);
  2201. }
  2202. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta,
  2203. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a,
  2204. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-summary,
  2205. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a,
  2206. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta,
  2207. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a,
  2208. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary,
  2209. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a,
  2210. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a {
  2211. color: #fff;
  2212. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
  2213. }
  2214. body:not(.single) .content-area .format-gallery.has-post-thumbnail .author img,
  2215. body:not(.single) .content-area .format-image.has-post-thumbnail .author img {
  2216. box-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
  2217. }
  2218. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:active,
  2219. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:focus,
  2220. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:hover,
  2221. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a:active,
  2222. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a:hover,
  2223. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:active,
  2224. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:focus,
  2225. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:hover,
  2226. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:active,
  2227. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:focus,
  2228. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:hover,
  2229. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a:active,
  2230. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a:hover {
  2231. opacity: 0.7;
  2232. }
  2233. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta,
  2234. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-summary,
  2235. body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title,
  2236. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta,
  2237. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary,
  2238. body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title {
  2239. padding-left: 30px;
  2240. padding-right: 30px;
  2241. position: relative;
  2242. }
  2243. body:not(.single) .content-area .format-gallery .post-thumbnail,
  2244. body:not(.single) .content-area .format-image .post-thumbnail {
  2245. background-position: 50% 50%;
  2246. background-repeat: no-repeat;
  2247. background-size: cover;
  2248. display: block;
  2249. height: 100%;
  2250. margin: 0;
  2251. overflow: hidden;
  2252. position: absolute;
  2253. bottom: 0;
  2254. width: 100%;
  2255. }
  2256. body:not(.single) .content-area .format-gallery .post-thumbnail img,
  2257. body:not(.single) .content-area .format-image .post-thumbnail img {
  2258. opacity: 0;
  2259. }
  2260. body:not(.single) .content-area .format-gallery .post-thumbnail:before,
  2261. body:not(.single) .content-area .format-image .post-thumbnail:before {
  2262. background: #000;
  2263. content: "";
  2264. display: block;
  2265. height: 100%;
  2266. left: 0;
  2267. opacity: 0.3;
  2268. bottom: 0;
  2269. width: 100%;
  2270. z-index: -1
  2271. }
  2272. /* Link */
  2273. .post-link {
  2274. background: #d11415;
  2275. display: block;
  2276. height: 180px;
  2277. margin-bottom: 15px;
  2278. position: relative;
  2279. }
  2280. .post-link .genericon {
  2281. background: #fff;
  2282. border-radius: 50%;
  2283. color: #d11415;
  2284. font-size: 24px;
  2285. height: 60px;
  2286. left: 50%;
  2287. line-height: 60px;
  2288. margin-left: -30px;
  2289. margin-top: -30px;
  2290. position: absolute;
  2291. text-align: center;
  2292. top: 50%;
  2293. width: 60px;
  2294. z-index: 1;
  2295. }
  2296. .post-link:active .genericon,
  2297. .post-link:focus .genericon,
  2298. .post-link:hover .genericon {
  2299. opacity: 0.7;
  2300. }
  2301. .post-link:focus {
  2302. outline: none;
  2303. }
  2304. /*--------------------------------------------------------------
  2305. ## Comments
  2306. --------------------------------------------------------------*/
  2307. .comments-area {
  2308. border-top: 1px solid #ddd;
  2309. font-size: 16px;
  2310. line-height: 1.5;
  2311. padding-top: 30px;
  2312. }
  2313. .comment-reply-title,
  2314. .comments-title,
  2315. .no-comments {
  2316. font-size: 25px;
  2317. line-height: 1.2;
  2318. margin-bottom: 30px;
  2319. }
  2320. .no-comments {
  2321. font-family: "Playfair Display", serif;
  2322. font-weight: bold;
  2323. margin-bottom: 30px;
  2324. }
  2325. .comment-form,
  2326. .comment-form code {
  2327. font-size: 16px;
  2328. line-height: 1.5;
  2329. }
  2330. .comment-content {
  2331. word-wrap: break-word;
  2332. }
  2333. .comment-content blockquote:before {
  2334. font-size: 16px;
  2335. height: 24px;
  2336. line-height: 1.5;
  2337. width: 24px;
  2338. }
  2339. .comment-list {
  2340. border-bottom: 1px solid #ddd;
  2341. list-style: none;
  2342. margin-bottom: 30px;
  2343. padding-bottom: 0;
  2344. position: relative;
  2345. }
  2346. .comment-list .children {
  2347. list-style: none;
  2348. }
  2349. .comment-list .comment:not(:last-of-type),
  2350. .comment-list .depth-1:not(:last-of-type) {
  2351. border-bottom: 1px solid #eee;
  2352. margin-bottom: 30px;
  2353. }
  2354. .comment-list .comment .comment:first-of-type {
  2355. border-top: 1px solid #eee;
  2356. padding-top: 30px;
  2357. }
  2358. .comment-list .comment-respond {
  2359. border-top: 1px solid #eee;
  2360. margin-left: 30px;
  2361. padding-top: 30px;
  2362. }
  2363. .comment-list .comment-form {
  2364. padding-bottom: 0;
  2365. }
  2366. .pingback .comment-body {
  2367. padding-bottom: 30px;
  2368. }
  2369. .comment-author {
  2370. font-family: "Playfair Display", serif;
  2371. font-size: 16px;
  2372. font-weight: bold;
  2373. line-height: 1.875;
  2374. }
  2375. .comment-author a,
  2376. .comment-author b {
  2377. font-weight: bold;
  2378. }
  2379. .comment-author img {
  2380. border-radius: 50%;
  2381. vertical-align: middle;
  2382. }
  2383. .comment-meta {
  2384. margin-bottom: 30px;
  2385. }
  2386. .comment-author .avatar {
  2387. float: left;
  2388. margin-right: 15px;
  2389. }
  2390. .comment-author .says {
  2391. display: none;
  2392. }
  2393. .comment-metadata .edit-link:before {
  2394. content: "\002F";
  2395. font-weight: bold;
  2396. margin-right: 0.2em;
  2397. }
  2398. .comment-list .comment-reply-title small,
  2399. .comment-metadata,
  2400. .comment-reply-link {
  2401. color: #777;
  2402. font-family: Lato, sans-serif;
  2403. font-size: 13px;
  2404. font-weight: bold;
  2405. line-height: 1.54;
  2406. padding: 5px 0;
  2407. text-transform: uppercase;
  2408. }
  2409. .comment-list .comment-reply-title small {
  2410. float: right;
  2411. }
  2412. .comment-metadata a,
  2413. .comment-list .comment-reply-title small a {
  2414. color: #777;
  2415. }
  2416. .comment-list .comment-reply-title small a:active,
  2417. .comment-list .comment-reply-title small a:focus,
  2418. .comment-list .comment-reply-title small a:hover,
  2419. .comment-metadata a:active,
  2420. .comment-metadata a:focus,
  2421. .comment-metadata a:hover,
  2422. .comment-reply-link:active,
  2423. .comment-reply-link:focus,
  2424. .comment-reply-link:hover {
  2425. color: #222;
  2426. }
  2427. .bypostauthor .fn {
  2428. outline: 2px solid #ddd;
  2429. padding: 0 0.2em;
  2430. }
  2431. .comment-reply-link {
  2432. display: inline-block;
  2433. margin-bottom: 30px;
  2434. }
  2435. .required {
  2436. color: #d11415;
  2437. font-weight: bold;
  2438. }
  2439. .comment-awaiting-moderation {
  2440. margin-bottom: 0;
  2441. }
  2442. /*--------------------------------------------------------------
  2443. # Media
  2444. --------------------------------------------------------------*/
  2445. .page-content .wp-smiley,
  2446. .entry-content .wp-smiley,
  2447. .comment-content .wp-smiley {
  2448. border: none;
  2449. margin-bottom: 0;
  2450. margin-top: 0;
  2451. padding: 0;
  2452. }
  2453. embed,
  2454. iframe,
  2455. object,
  2456. video,
  2457. .fb_iframe_widget,
  2458. .video-player,
  2459. .wp-audio-shortcode {
  2460. margin-bottom: 30px;
  2461. max-width: 100%;
  2462. }
  2463. /*--------------------------------------------------------------
  2464. ## Captions
  2465. --------------------------------------------------------------*/
  2466. .wp-caption {
  2467. color: #777;
  2468. font-family: Lato, sans-serif;
  2469. font-size: 16px;
  2470. line-height: 1.25;
  2471. margin-bottom: 25px;
  2472. max-width: 100%;
  2473. }
  2474. .wp-caption img[class*="wp-image-"] {
  2475. display: block;
  2476. margin: 0 auto;
  2477. }
  2478. .wp-caption-text {
  2479. text-align: center;
  2480. }
  2481. .wp-caption .wp-caption-text {
  2482. margin: 0;
  2483. padding: 5px 0;
  2484. }
  2485. /*--------------------------------------------------------------
  2486. ## Galleries
  2487. --------------------------------------------------------------*/
  2488. .gallery {
  2489. border: 1px solid #eee;
  2490. margin: 0 0 30px;
  2491. padding: 3.75px;
  2492. }
  2493. .gallery-item {
  2494. display: inline-block;
  2495. margin-bottom: 0;
  2496. padding: 3.75px;
  2497. position: relative;
  2498. text-align: center;
  2499. vertical-align: top;
  2500. width: 100%;
  2501. }
  2502. .gallery-columns-2 .gallery-item {
  2503. max-width: 50%;
  2504. }
  2505. .gallery-columns-3 .gallery-item {
  2506. max-width: 33.33%;
  2507. }
  2508. .gallery-columns-4 .gallery-item {
  2509. max-width: 25%;
  2510. }
  2511. .gallery-columns-5 .gallery-item {
  2512. max-width: 20%;
  2513. }
  2514. .gallery-columns-6 .gallery-item {
  2515. max-width: 16.66%;
  2516. }
  2517. .gallery-columns-7 .gallery-item {
  2518. max-width: 14.28%;
  2519. }
  2520. .gallery-columns-8 .gallery-item {
  2521. max-width: 12.5%;
  2522. }
  2523. .gallery-columns-9 .gallery-item {
  2524. max-width: 11.11%;
  2525. }
  2526. .gallery-caption {
  2527. color: #777;
  2528. font-family: Lato, sans-serif;
  2529. font-size: 16px;
  2530. left: 0;
  2531. line-height: 1.25;
  2532. max-width: 100%;
  2533. margin: 0;
  2534. min-width: 100%;
  2535. padding: 5px 0;
  2536. }
  2537. .gallery-icon img {
  2538. display: block;
  2539. margin: 0 auto;
  2540. }
  2541. /* Google Maps */
  2542. .googlemaps {
  2543. margin-bottom: 30px;
  2544. }
  2545. .googlemaps br {
  2546. display: none;
  2547. }
  2548. .googlemaps iframe {
  2549. margin-bottom: 0;
  2550. }
  2551. /*--------------------------------------------------------------
  2552. # Jetpack
  2553. --------------------------------------------------------------*/
  2554. /*--------------------------------------------------------------
  2555. ## Contact Form
  2556. --------------------------------------------------------------*/
  2557. .site-content .contact-form > div {
  2558. margin-bottom: 30px;
  2559. }
  2560. .site-content .contact-form label {
  2561. margin-bottom: 0;
  2562. }
  2563. .site-content .contact-form input[type="text"],
  2564. .site-content .contact-form input[type="email"],
  2565. .site-content .contact-form input[type="url"],
  2566. .site-content .contact-form textarea {
  2567. margin-bottom: 0;
  2568. width: 100%;
  2569. max-width: 100%;
  2570. }
  2571. .site-content .contact-form label span {
  2572. color: #d11415;
  2573. }
  2574. .site-content .contact-form input[type="radio"],
  2575. .site-content .contact-form input[type="checkbox"] {
  2576. margin-bottom: 6px;
  2577. margin-right: .3em;
  2578. vertical-align: middle;
  2579. }
  2580. .site-content .contact-form label.checkbox,
  2581. .site-content .contact-form label.checkbox-multiple,
  2582. .site-content .contact-form label.radio {
  2583. font-weight: normal;
  2584. margin-bottom: 4px;
  2585. }
  2586. .site-content .contact-form label.checkbox,
  2587. .site-content .contact-form > div {
  2588. margin-bottom: 15px;
  2589. }
  2590. .site-content .contact-form textarea,
  2591. .site-content .contact-form input[type='text'],
  2592. .site-content .contact-form input[type='email'],
  2593. .site-content .contact-form input[type='url'],
  2594. .site-content .contact-form select {
  2595. margin-bottom: 7px;
  2596. }
  2597. /*--------------------------------------------------------------
  2598. ## Galleries
  2599. --------------------------------------------------------------*/
  2600. .site .slideshow-window {
  2601. border-radius: 0;
  2602. border-width: 15px;
  2603. z-index: 0;
  2604. }
  2605. .site .tiled-gallery {
  2606. margin-bottom: 30px;
  2607. }
  2608. /*--------------------------------------------------------------
  2609. ## Infinite Scroll
  2610. --------------------------------------------------------------*/
  2611. .infinite-scroll .posts-navigation,
  2612. .infinite-scroll.neverending .site-footer {
  2613. display: none;
  2614. }
  2615. .infinity-end.neverending .site-footer {
  2616. display: block;
  2617. }
  2618. #infinite-handle {
  2619. border-top: 1px solid #eee;
  2620. clear: both;
  2621. font-family: Lato, sans-serif;
  2622. font-weight: bold;
  2623. margin: 0 0 30px;
  2624. overflow: hidden;
  2625. padding: 30px 0 0;
  2626. text-align: center;
  2627. }
  2628. #infinite-handle span {
  2629. background: transparent;
  2630. border-radius: 0;
  2631. display: inline-block;
  2632. padding: 0;
  2633. }
  2634. #infinite-handle span button,
  2635. #infinite-handle span button:active,
  2636. #infinite-handle span button:focus,
  2637. #infinite-handle span button:hover {
  2638. background: #fff;
  2639. border: 2px solid #eee;
  2640. display: inline-block;
  2641. font-size: 16px;
  2642. line-height: 1.875;
  2643. padding: 5.5px 13px;
  2644. text-transform: uppercase;
  2645. }
  2646. #infinite-handle span button {
  2647. color: #d11415;
  2648. }
  2649. #infinite-handle span button:active,
  2650. #infinite-handle span button:focus,
  2651. #infinite-handle span button:hover {
  2652. background: #d11415;
  2653. border-color: #d11415;
  2654. color: #fff;
  2655. }
  2656. .infinite-loader {
  2657. border-top: 1px solid #eee;
  2658. clear: both;
  2659. margin: 0 0 30px;
  2660. overflow: hidden;
  2661. padding: 75px 0 0;
  2662. position: relative;
  2663. text-align: center;
  2664. }
  2665. .infinite-loader .spinner {
  2666. position: absolute;
  2667. top: -22.5px !important;
  2668. left: 50% !important;
  2669. }
  2670. .archive .infinite-wrap .hentry:first-of-type,
  2671. .blog .infinite-wrap .hentry:first-of-type,
  2672. .search .infinite-wrap .hentry:first-of-type {
  2673. border-top: 1px solid #eee;
  2674. padding-top: 30px;
  2675. }
  2676. #infinite-footer {
  2677. background: #222;
  2678. border-top: 0;
  2679. color: #ccc;
  2680. font-size: 13px;
  2681. line-height: 1.54;
  2682. padding: 12.5px 0;
  2683. z-index: 99999;
  2684. }
  2685. #infinite-footer a:active,
  2686. #infinite-footer a:focus,
  2687. #infinite-footer a:hover {
  2688. text-decoration: none;
  2689. }
  2690. #infinite-footer .container {
  2691. background: transparent;
  2692. border: 0;
  2693. padding: 0;
  2694. width: 90% !important;
  2695. }
  2696. #infinite-footer .blog-info a {
  2697. color: #ccc;
  2698. font-size: inherit;
  2699. }
  2700. #infinite-footer .blog-credits a {
  2701. color: inherit;
  2702. }
  2703. #infinite-footer .blog-credits a:active,
  2704. #infinite-footer .blog-credits a:focus,
  2705. #infinite-footer .blog-credits a:hover,
  2706. #infinite-footer .blog-info a:active,
  2707. #infinite-footer .blog-info a:focus,
  2708. #infinite-footer .blog-info a:hover {
  2709. color: #fff;
  2710. text-decoration: none;
  2711. }
  2712. #infinite-footer .blog-credits a:focus,
  2713. #infinite-footer .blog-info a:focus {
  2714. outline-color: rgba(255, 255, 255, 0.7)
  2715. }
  2716. #infinite-footer .blog-credits,
  2717. #infinite-footer .blog-info {
  2718. color: inherit;
  2719. font-size: inherit;
  2720. line-height: inherit;
  2721. }
  2722. /*--------------------------------------------------------------
  2723. ## PollDaddy
  2724. --------------------------------------------------------------*/
  2725. .PDS_Poll {
  2726. margin-bottom: 24px;
  2727. }
  2728. /*--------------------------------------------------------------
  2729. ## Recipes
  2730. --------------------------------------------------------------*/
  2731. .site-content .jetpack-recipe {
  2732. margin: 0 0 30px;
  2733. padding: 30px 30px 0;
  2734. }
  2735. .site-content .jetpack-recipe blockquote {
  2736. margin-left: 0;
  2737. }
  2738. .site-content .jetpack-recipe ol,
  2739. .site-content .jetpack-recipe ul {
  2740. list-style-position: inside;
  2741. }
  2742. .site-content .jetpack-recipe-title {
  2743. padding: 0;
  2744. margin: 0 auto 30px;
  2745. border-bottom: 0;
  2746. }
  2747. .site-content .jetpack-recipe-content br {
  2748. display: none;
  2749. }
  2750. .site-content .jetpack-recipe .jetpack-recipe-meta {
  2751. color: #777;
  2752. font-size: inherit;
  2753. line-height: inherit;
  2754. overflow: inherit;
  2755. }
  2756. .site-content .jetpack-recipe-meta:before,
  2757. .site-content .jetpack-recipe-meta:after {
  2758. content: "";
  2759. display: table;
  2760. }
  2761. .site-content .jetpack-recipe-meta:after {
  2762. clear: both;
  2763. }
  2764. /*--------------------------------------------------------------
  2765. ## Responsive Videos
  2766. --------------------------------------------------------------*/
  2767. .jetpack-video-wrapper {
  2768. margin: 0 0 30px;
  2769. }
  2770. .jetpack-video-wrapper:empty {
  2771. display: none;
  2772. }
  2773. /*--------------------------------------------------------------
  2774. ## Sharedaddy
  2775. --------------------------------------------------------------*/
  2776. .hentry #jp-post-flair {
  2777. padding: 0;
  2778. }
  2779. .entry-summary .sharedaddy {
  2780. display: none !important;
  2781. }
  2782. .sd-like.jetpack-likes-widget-wrapper,
  2783. .sd-rating,
  2784. .sd-sharing-enabled:not(#jp-post-flair) {
  2785. border-bottom: 1px solid #eee;
  2786. margin: 0;
  2787. padding: 7.5px 0;
  2788. }
  2789. .sd-like.jetpack-likes-widget-wrapper iframe {
  2790. margin-bottom: 0;
  2791. }
  2792. .hentry div.sd-rating h3.sd-title,
  2793. .hentry div.sharedaddy h3.sd-title {
  2794. font-family: Lato, sans-serif;
  2795. font-size: 13px;
  2796. font-weight: bold;
  2797. line-height: 1.2;
  2798. margin: 0 0 7.5px;
  2799. }
  2800. .hentry div.sharedaddy .sd-content ul {
  2801. margin-bottom: 0 !important;
  2802. }
  2803. div#jp-relatedposts {
  2804. border-top: 1px solid #ddd;
  2805. margin: 0;
  2806. padding-top: 30px;
  2807. position: relative;
  2808. width: 100%;
  2809. }
  2810. div#jp-relatedposts a:focus {
  2811. background: transparent;
  2812. outline: 2px solid #ddd;
  2813. }
  2814. .hentry div#jp-relatedposts h3.jp-relatedposts-headline {
  2815. font-family: "Playfair Display", serif;
  2816. font-size: 25px;
  2817. font-weight: bold;
  2818. line-height: 1.2;
  2819. margin-bottom: 30px;
  2820. }
  2821. .hentry div#jp-relatedposts h3.jp-relatedposts-headline em {
  2822. font-weight: inherit;
  2823. }
  2824. .comment .pd-rating,
  2825. .hentry .pd-rating,
  2826. .hentry .sd-sharing .share-count {
  2827. line-height: 1 !important;
  2828. }
  2829. .comment .pd-rating {
  2830. margin-bottom: 30px;
  2831. }
  2832. .hentry .post-likes-widget {
  2833. margin-bottom: 30px;
  2834. position: inherit !important;
  2835. top: auto !important;
  2836. }
  2837. .hentry .pd-rating + br,
  2838. .hentry div.sharedaddy h3.sd-title:before,
  2839. .hentry div#jp-relatedposts h3.jp-relatedposts-headline em:before {
  2840. display: none;
  2841. }
  2842. .hentry div#jp-relatedposts div.jp-relatedposts-items {
  2843. width: 100%;
  2844. }
  2845. .hentry div#jp-relatedposts div.jp-relatedposts-items p {
  2846. font-size: 16px;
  2847. line-height: 1.5;
  2848. }
  2849. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post,
  2850. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
  2851. opacity: 1;
  2852. }
  2853. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  2854. padding: 0;
  2855. margin-bottom: 30px;
  2856. width: 100%;
  2857. }
  2858. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  2859. margin-bottom: 0;
  2860. }
  2861. .hentry div#jp-relatedposts div.jp-relatedposts-items.jp-relatedposts-items-minimal .jp-relatedposts-post {
  2862. margin: 0 0 30px;
  2863. padding: 0;
  2864. width: 100%;
  2865. }
  2866. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
  2867. color: #777;
  2868. font-family: Lato, sans-serif;
  2869. font-size: 13px;
  2870. font-weight: bold;
  2871. line-height: 1.54;
  2872. padding: 5px 0;
  2873. text-transform: uppercase;
  2874. }
  2875. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title {
  2876. font-family: "PT Serif", serif;
  2877. font-size: 16px;
  2878. font-weight: bold;
  2879. letter-spacing: 0;
  2880. line-height: 1.5;
  2881. }
  2882. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a {
  2883. border-bottom: 0;
  2884. font-weight: inherit;
  2885. text-decoration: none !important;
  2886. }
  2887. .hentry div#jp-relatedposts div.jp-relatedposts-items span.jp-relatedposts-post-title {
  2888. font-size: inherit;
  2889. line-height: inherit;
  2890. }
  2891. .hentry div#jp-relatedposts div.jp-relatedposts-post-thumbs .jp-relatedposts-post-title {
  2892. padding: 15px 0 0;
  2893. }
  2894. .hentry div#jp-relatedposts .jp-relatedposts-post-a {
  2895. border-bottom: 0;
  2896. }
  2897. .hentry .pd-rating {
  2898. line-height: 1;
  2899. }
  2900. .hentry .rating-msg {
  2901. display: none;
  2902. }
  2903. /*--------------------------------------------------------------
  2904. ## Site Logo
  2905. --------------------------------------------------------------*/
  2906. .site-logo-link {
  2907. align-items: center;
  2908. display: block;
  2909. display: -webkit-box;
  2910. display: -moz-box;
  2911. display: -ms-flexbox;
  2912. display: -webkit-flex;
  2913. display: flex;
  2914. -webkit-justify-content: center;
  2915. justify-content: center;
  2916. margin: 0 auto;
  2917. max-height: 90px;
  2918. max-width: 70%;
  2919. max-width: calc(100% - 120px);
  2920. position: relative;
  2921. z-index: 4;
  2922. }
  2923. .site-logo-link:active,
  2924. .site-logo-link:focus,
  2925. .site-logo-link:hover {
  2926. opacity: 0.7;
  2927. }
  2928. .site-logo-link:focus {
  2929. outline: none;
  2930. }
  2931. .site-logo-link img {
  2932. display: block;
  2933. height: auto;
  2934. max-height: 90px;
  2935. max-width: 100%;
  2936. }
  2937. /*--------------------------------------------------------------
  2938. ## Widgets
  2939. --------------------------------------------------------------*/
  2940. /* Contact Info */
  2941. .widget_contact_info .contact-map {
  2942. margin-bottom: 15px;
  2943. }
  2944. .widget_contact_info > div:last-of-type {
  2945. margin-bottom: 30px;
  2946. }
  2947. /* Display WordPress Posts */
  2948. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts {
  2949. margin: 0;
  2950. }
  2951. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 {
  2952. font-size: 20px;
  2953. line-height: 1.5;
  2954. margin: 0 auto 30px;
  2955. padding: 0;
  2956. }
  2957. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
  2958. margin-bottom: 30px;
  2959. }
  2960. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
  2961. font-size: 16px;
  2962. line-height: 1.5 !important;
  2963. margin: 0 0 30px !important;
  2964. }
  2965. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 + p {
  2966. margin-top: -30px !important;
  2967. }
  2968. /* Goodreads */
  2969. .widget_goodreads .gr_custom_widget {
  2970. margin-bottom: 30px;
  2971. }
  2972. .widget_goodreads br,
  2973. .widget_goodreads center {
  2974. display: none;
  2975. }
  2976. .widget_goodreads h2[class^="gr_custom_header"] {
  2977. font-size: 20px;
  2978. line-height: 1.5;
  2979. margin: 0 auto 30px;
  2980. }
  2981. .widget_goodreads div[class^="gr_custom_title"] a {
  2982. color: #d11415;
  2983. }
  2984. .widget_goodreads div[class^="gr_custom_title"] a:active,
  2985. .widget_goodreads div[class^="gr_custom_title"] a:focus,
  2986. .widget_goodreads div[class^="gr_custom_title"] a:hover {
  2987. color: #222;
  2988. }
  2989. .widget_goodreads div[class^="gr_custom_container"] {
  2990. padding: 0;
  2991. background: transparent;
  2992. border: 0;
  2993. color: inherit;
  2994. border-radius: 0;
  2995. }
  2996. .widget_goodreads div[class^="gr_custom_each_container"] {
  2997. padding: 15px 0;
  2998. margin: 0;
  2999. border-top: 1px solid #eee;
  3000. border-bottom: 0;
  3001. }
  3002. .widget_goodreads div[class^="gr_custom_each_container"]:last-of-type {
  3003. border-bottom: 1px solid #eee;
  3004. }
  3005. .widget_goodreads div[class^="gr_custom_title"] {
  3006. font-weight: bold;
  3007. }
  3008. .widget_goodreads div[class^="gr_custom_author"] {
  3009. color: #777;
  3010. font-family: Lato, sans-serif;
  3011. font-size: 13px;
  3012. font-weight: bold;
  3013. line-height: 1.54;
  3014. padding: 5px 0;
  3015. text-transform: uppercase;
  3016. }
  3017. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a {
  3018. border-bottom: 0;
  3019. color: inherit;
  3020. }
  3021. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:active,
  3022. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:focus,
  3023. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:hover {
  3024. color: #222;
  3025. }
  3026. .widget_goodreads center a {
  3027. border-bottom: 0;
  3028. }
  3029. /* Gravatar Profile */
  3030. .widget-grofile .grofile-thumbnail {
  3031. border-radius: 50%;
  3032. float: right;
  3033. margin-bottom: -60px;
  3034. max-width: 60px;
  3035. }
  3036. .widget-grofile h4 {
  3037. font-size: 20px;
  3038. line-height: 1.5;
  3039. margin: 0 0 45px !important;
  3040. max-width: 180px;
  3041. }
  3042. .widget-grofile .grofile-meta {
  3043. clear: both;
  3044. }
  3045. .widget-grofile .grofile-meta + p {
  3046. clear: both;
  3047. margin-top: -30px;
  3048. }
  3049. .widget-grofile .grofile-full-link {
  3050. display: inline-block;
  3051. }
  3052. /* Image */
  3053. .widget_image .jetpack-image-container {
  3054. margin-bottom: 30px;
  3055. }
  3056. .widget_image .jetpack-image-container img {
  3057. vertical-align: middle;
  3058. }
  3059. .widget_image .jetpack-image-container .wp-caption {
  3060. margin-bottom: 0;
  3061. }
  3062. /* RSS Links */
  3063. .widget_rss_links ul {
  3064. border-bottom: 1px solid #eee;
  3065. list-style: none;
  3066. margin-left: 0;
  3067. }
  3068. .widget_rss_links li {
  3069. border-top: 1px solid #eee;
  3070. padding-bottom: 15px;
  3071. padding-top: 15px;
  3072. }
  3073. .widget_rss_links a {
  3074. border-bottom: 0;
  3075. }
  3076. .widget_rss_links p {
  3077. border-top: 1px solid #eee;
  3078. margin-bottom: 15px;
  3079. padding-top: 15px;
  3080. }
  3081. .widget_rss_links p:last-of-type {
  3082. border-bottom: 1px solid #eee;
  3083. margin-bottom: 30px;
  3084. padding-bottom: 15px;
  3085. }
  3086. .widget_rss_links p a + a {
  3087. margin-left: 11px;
  3088. }
  3089. .widget_rss_links img {
  3090. vertical-align: middle;
  3091. }
  3092. /*--------------------------------------------------------------
  3093. # Eventbrite
  3094. --------------------------------------------------------------*/
  3095. .eventbrite-event .entry-header span {
  3096. padding-right: 12px;
  3097. }
  3098. .eventbrite-event .entry-header span:last-of-type {
  3099. padding-right: 0;
  3100. }
  3101. /*--------------------------------------------------------------
  3102. # Transitions
  3103. --------------------------------------------------------------*/
  3104. button,
  3105. input,
  3106. textarea,
  3107. #infinite-handle button,
  3108. .featured-content .post-thumbnail,
  3109. .post-link .genericon,
  3110. .post-navigation .meta-nav,
  3111. .post-navigation .post-title,
  3112. .hentry:not(.format-gallery):not(.format-image) .post-thumbnail,
  3113. .post-thumbnail:before,
  3114. .post-thumbnail img,
  3115. .search-form:before,
  3116. .site,
  3117. .site-info .sep,
  3118. .sticky-post {
  3119. transition: all 350ms ease-in-out;
  3120. }
  3121. a {
  3122. transition: color 350ms ease-in-out, background-color 350ms ease-in-out;
  3123. }
  3124. /*--------------------------------------------------------------
  3125. # Responsive
  3126. --------------------------------------------------------------*/
  3127. /*--------------------------------------------------------------
  3128. ## x >= 600px
  3129. --------------------------------------------------------------*/
  3130. @media screen and (min-width: 600px) {
  3131. /* Logo */
  3132. .site-logo-link {
  3133. max-width: 580px;
  3134. }
  3135. /* Primary Menu */
  3136. .menu-toggle {
  3137. height: 60px;
  3138. margin-top: -30px;
  3139. width: 60px;
  3140. }
  3141. .menu-toggle:before {
  3142. font-size: 16px;
  3143. height: 58px;
  3144. line-height: 58px;
  3145. width: 58%;
  3146. }
  3147. .main-navigation.toggled > div:before {
  3148. right: 24px;
  3149. }
  3150. /* Paging Navigation */
  3151. .comment-navigation,
  3152. .post-navigation,
  3153. .posts-navigation {
  3154. margin-bottom: 60px;
  3155. }
  3156. .comment-navigation + .comment-respond,
  3157. .posts-navigation {
  3158. padding-top: 60px;
  3159. }
  3160. .comment-navigation .nav-next a:after,
  3161. .comment-navigation .nav-previous a:before,
  3162. .posts-navigation .nav-next a:after,
  3163. .posts-navigation .nav-previous a:before {
  3164. content: '\f429';
  3165. font-size: 16px;
  3166. line-height: 1.875;
  3167. width: 20px;
  3168. }
  3169. .comment-navigation .nav-previous a:before,
  3170. .posts-navigation .nav-previous a:before {
  3171. content: '\f430';
  3172. }
  3173. /* Widgets */
  3174. .sidebar-toggle {
  3175. height: 60px;
  3176. margin-bottom: 60px;
  3177. margin-left: -30px;
  3178. width: 60px;
  3179. }
  3180. .sidebar-toggle:before {
  3181. height: 58px;
  3182. line-height: 58px;
  3183. width: 58px;
  3184. }
  3185. .widget {
  3186. padding-bottom: 30px;
  3187. }
  3188. .footer-widget {
  3189. padding-top: 60px;
  3190. }
  3191. .footer-widget-inner .widget {
  3192. border-bottom: 0;
  3193. margin-bottom: 0;
  3194. }
  3195. /* Grid */
  3196. .author-info {
  3197. margin: 30px 0 60px;
  3198. }
  3199. .site-main,
  3200. .widget-area {
  3201. padding-top: 60px;
  3202. }
  3203. .widget-area:before {
  3204. margin-top: -60px;
  3205. }
  3206. /* Header */
  3207. .site-branding {
  3208. min-height: 60px;
  3209. }
  3210. .site-description,
  3211. .site-title {
  3212. margin: 0 90px;
  3213. }
  3214. .site-title {
  3215. font-size: 31px;
  3216. line-height: 1.452;
  3217. }
  3218. .search-toggle {
  3219. height: 60px;
  3220. width: 60px;
  3221. }
  3222. .search-toggle:before {
  3223. font-size: 24px;
  3224. height: 58px;
  3225. line-height: 58px;
  3226. width: 58px;
  3227. }
  3228. .toggled .search-toggle:before {
  3229. font-size: 16px;
  3230. }
  3231. /* Posts & Pages */
  3232. .archive .hentry,
  3233. .blog .hentry,
  3234. .search .hentry {
  3235. margin-bottom: 60px;
  3236. padding-top: 60px;
  3237. }
  3238. .archive .hentry:first-of-type,
  3239. .blog .hentry:first-of-type,
  3240. .search .hentry:first-of-type {
  3241. margin-top: -60px;
  3242. }
  3243. .page .entry-footer {
  3244. margin-bottom: 30px;
  3245. margin-top: 30px;
  3246. }
  3247. .page-header {
  3248. margin-bottom: 60px;
  3249. padding-bottom: 30px;
  3250. }
  3251. .page .hentry:not(.has-post-thumbnail) .entry-header,
  3252. .single .hentry:not(.has-post-thumbnail) .entry-header,
  3253. .single .hentry.format-quote .entry-header,
  3254. .single .hentry.format-video .entry-header {
  3255. margin-bottom: 30px;
  3256. }
  3257. .entry-header-wrapper {
  3258. padding-top: 60px;
  3259. }
  3260. .page-content {
  3261. padding-bottom: 30px;
  3262. }
  3263. .content-area .format-standard a.post-thumbnail {
  3264. height: 240px;
  3265. }
  3266. /* Post Formats */
  3267. body:not(.single) .content-area .format-gallery.has-post-thumbnail,
  3268. body:not(.single) .content-area .format-image.has-post-thumbnail {
  3269. padding-top: 90px;
  3270. }
  3271. .post-link {
  3272. height: 240px;
  3273. }
  3274. /* Comments */
  3275. .comments-area {
  3276. padding-top: 60px;
  3277. }
  3278. .no-comments {
  3279. margin-bottom: 60px;
  3280. }
  3281. .comment-list {
  3282. margin-bottom: 60px;
  3283. padding-bottom: 30px;
  3284. }
  3285. .comment-form {
  3286. padding-bottom: 30px;
  3287. }
  3288. /* Infinite Scroll */
  3289. #infinite-handle {
  3290. margin-bottom: 60px;
  3291. padding-top: 60px;
  3292. }
  3293. .infinite-loader {
  3294. margin-bottom: 60px;
  3295. padding-top: 105px;
  3296. }
  3297. .archive .infinite-wrap .hentry:first-of-type,
  3298. .blog .infinite-wrap .hentry:first-of-type,
  3299. .search .infinite-wrap .hentry:first-of-type {
  3300. padding-top: 60px;
  3301. }
  3302. /* Sharedaddy */
  3303. div#jp-relatedposts {
  3304. margin-top: 30px;
  3305. padding-top: 61px;
  3306. }
  3307. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  3308. margin-bottom: 30px;
  3309. }
  3310. /* Site Logo */
  3311. .site-logo-link {
  3312. padding: 0 90px;
  3313. }
  3314. }
  3315. /*--------------------------------------------------------------
  3316. ## x >= 768px
  3317. --------------------------------------------------------------*/
  3318. @media screen and (min-width: 768px) {
  3319. /* Typography */
  3320. body {
  3321. font-size: 20px;
  3322. }
  3323. /* Grid */
  3324. .bottom-navigation > div,
  3325. .bottom-social > div,
  3326. .entry-header-inner,
  3327. .featured-content-inner,
  3328. .footer-navigation > div,
  3329. .footer-widget-inner,
  3330. .search-navigation-inner,
  3331. .site-branding,
  3332. .site-content-inner,
  3333. .site-info,
  3334. .site-top-inner {
  3335. width: 648px;
  3336. }
  3337. .footer-widget-inner .widget {
  3338. width: 294px;
  3339. }
  3340. .author-info .author-heading {
  3341. max-width: 496px;
  3342. }
  3343. .footer-widget-inner .widget {
  3344. float: left;
  3345. }
  3346. .footer-widget-inner .widget {
  3347. margin-left: 30px;
  3348. margin-right: 30px;
  3349. }
  3350. .footer-widget-inner .widget:nth-of-type(even) {
  3351. clear: right;
  3352. margin-right: 0;
  3353. }
  3354. .footer-widget-inner .widget:nth-of-type(odd) {
  3355. clear: left;
  3356. margin-left: 0;
  3357. }
  3358. /* Header */
  3359. .site-title {
  3360. font-size: 49px;
  3361. line-height: 1.225;
  3362. }
  3363. /* Featured Content */
  3364. .blog .featured-content .hentry {
  3365. height: 350px;
  3366. width: 309px;
  3367. }
  3368. .blog .featured-content .hentry:first-of-type {
  3369. height: 300px;
  3370. width: 100%;
  3371. }
  3372. .blog .featured-content .hentry:nth-of-type(2),
  3373. .blog .featured-content .hentry:nth-of-type(4) {
  3374. margin-right: 30px;
  3375. }
  3376. /* Posts & Pages */
  3377. .content-area .format-standard a.post-thumbnail {
  3378. float: left;
  3379. height: 100%;
  3380. margin-bottom: 0;
  3381. margin-right: 30px;
  3382. overflow: visible;
  3383. width: 196px;
  3384. }
  3385. .content-area .format-standard a.post-thumbnail img {
  3386. position: inherit;
  3387. top: auto;
  3388. -webkit-transform: none;
  3389. transform: none;
  3390. }
  3391. .content-area .format-standard.has-post-thumbnail .entry-header {
  3392. float: right;
  3393. width: 422px;
  3394. }
  3395. .content-area .format-standard.has-post-thumbnail > .entry-meta,
  3396. .content-area .format-standard.has-post-thumbnail .entry-summary {
  3397. clear: right;
  3398. }
  3399. .author-info .author-avatar {
  3400. display: block;
  3401. float: right;
  3402. width: 60px;
  3403. }
  3404. /* Post Formats */
  3405. .post-link {
  3406. float: left;
  3407. height: 174px;
  3408. margin-bottom: 0;
  3409. margin-right: 30px;
  3410. width: 196px;
  3411. }
  3412. .archive .format-link .entry-header,
  3413. .blog .format-link .entry-header,
  3414. .search .format-link .entry-header {
  3415. float: right;
  3416. width: 422px;
  3417. }
  3418. .archive .format-link > .entry-meta,
  3419. .blog .format-link > .entry-meta,
  3420. .search .format-link > .entry-meta,
  3421. .archive .format-link .entry-summary,
  3422. .blog .format-link .entry-summary,
  3423. .search .format-link .entry-summary {
  3424. clear: right;
  3425. }
  3426. /* Infinite Scroll */
  3427. #infinite-footer .container {
  3428. width: 648px !important;
  3429. }
  3430. }
  3431. /*--------------------------------------------------------------
  3432. ## x >= 840px
  3433. --------------------------------------------------------------*/
  3434. @media screen and (min-width: 840px) {
  3435. /* Grid */
  3436. .bottom-navigation > div,
  3437. .bottom-social > div,
  3438. .entry-header-inner,
  3439. .featured-content-inner,
  3440. .footer-navigation > div,
  3441. .footer-widget-inner,
  3442. .search-navigation-inner,
  3443. .site-branding,
  3444. .site-content-inner,
  3445. .site-info,
  3446. .site-top-inner {
  3447. width: 720px;
  3448. }
  3449. .footer-widget-inner .widget {
  3450. width: 330px;
  3451. }
  3452. .author-info .author-heading {
  3453. max-width: 568px;
  3454. }
  3455. /* Featured Content */
  3456. .blog .featured-content .hentry {
  3457. height: 300px;
  3458. width: 345px;
  3459. }
  3460. /* Posts & Pages */
  3461. .content-area .format-standard a.post-thumbnail {
  3462. width: 220px;
  3463. }
  3464. .content-area .format-standard.has-post-thumbnail .entry-header {
  3465. width: 470px;
  3466. }
  3467. /* Post Formats */
  3468. .post-link {
  3469. height: 195px;
  3470. width: 220px;
  3471. }
  3472. .archive .format-link .entry-header,
  3473. .blog .format-link .entry-header,
  3474. .search .format-link .entry-header {
  3475. width: 470px;
  3476. }
  3477. /* Infinite Scroll */
  3478. #infinite-footer .container {
  3479. width: 720px !important;
  3480. }
  3481. }
  3482. /*--------------------------------------------------------------
  3483. ## x >= 960px
  3484. --------------------------------------------------------------*/
  3485. @media screen and (min-width: 960px) {
  3486. /* Primary Menu */
  3487. .menu-toggle {
  3488. display: none;
  3489. }
  3490. .main-navigation {
  3491. float: left;
  3492. }
  3493. .main-navigation {
  3494. z-index: 1;
  3495. }
  3496. .main-navigation > div {
  3497. display: block;
  3498. margin: 0 auto;
  3499. width: auto;
  3500. }
  3501. .main-navigation.toggled > div {
  3502. background: #fff;
  3503. border: 0;
  3504. box-shadow: none;
  3505. position: relative;
  3506. top: auto;
  3507. margin-top: 0;
  3508. width: 100%;
  3509. left: auto;
  3510. padding: 0;
  3511. z-index: 9998;
  3512. }
  3513. .main-navigation > div:before {
  3514. background: #fff;
  3515. content: "";
  3516. display: block;
  3517. height: 100%;
  3518. position: absolute;
  3519. width: 1px;
  3520. z-index: 1;
  3521. }
  3522. .main-navigation > div > ul {
  3523. border: 0;
  3524. padding: 0;
  3525. }
  3526. .main-navigation > div > ul > li:last-child {
  3527. border-bottom: 0;
  3528. }
  3529. .main-navigation ul {
  3530. border-bottom: 0;
  3531. }
  3532. .main-navigation ul.toggled {
  3533. border-bottom: 0;
  3534. display: none;
  3535. margin-bottom: 0;
  3536. margin-top: 0;
  3537. padding-left: 0;
  3538. }
  3539. .main-navigation li {
  3540. border-top: 0;
  3541. float: left;
  3542. padding: 0 15px;
  3543. }
  3544. .main-navigation .nav-menu > li + li {
  3545. border-left: 1px solid #eee;
  3546. }
  3547. .main-navigation .menu-item-has-children {
  3548. padding-right: 38.5px;
  3549. position: relative;
  3550. }
  3551. .main-navigation .page_item_has_children > a,
  3552. .main-navigation .menu-item-has-children > a {
  3553. padding-right: 0;
  3554. position: static;
  3555. }
  3556. .main-navigation .menu-item-has-children > a:after {
  3557. color: #d11415;
  3558. content: "\f431";
  3559. font-size: 16px;
  3560. height: 16px;
  3561. line-height: 1;
  3562. margin-top: -8px;
  3563. position: absolute;
  3564. top: 50%;
  3565. right: 15px;
  3566. width: 16px;
  3567. }
  3568. .main-navigation ul ul .menu-item-has-children > a:after {
  3569. -webkit-transform: rotate(-90deg);
  3570. transform: rotate(-90deg);
  3571. }
  3572. .main-navigation ul ul {
  3573. background: #fff;
  3574. border: 1px solid #ddd;
  3575. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
  3576. float: left;
  3577. padding: 15px 0;
  3578. position: absolute;
  3579. top: 1.875em;
  3580. left: -999em;
  3581. z-index: 99999;
  3582. }
  3583. .main-navigation ul ul ul {
  3584. left: -999em;
  3585. top: -16px;
  3586. }
  3587. .main-navigation ul ul a {
  3588. width: 208px;
  3589. }
  3590. .main-navigation ul ul li {
  3591. background: #fff;
  3592. }
  3593. .main-navigation ul li:hover > ul,
  3594. .main-navigation ul .focus > ul {
  3595. display: block;
  3596. left: auto;
  3597. margin-left: -16px;
  3598. }
  3599. .main-navigation ul ul li:hover > ul,
  3600. .main-navigation ul ul .focus > ul {
  3601. left: 100%;
  3602. }
  3603. /* Social Menu */
  3604. .bottom-social {
  3605. display: none;
  3606. }
  3607. .social-navigation {
  3608. border-bottom: 0;
  3609. float: right;
  3610. padding-bottom: 0;
  3611. padding-left: 15px;
  3612. padding-top: 0;
  3613. }
  3614. .social-navigation a:before {
  3615. font-size: 16px;
  3616. }
  3617. /* Secondary Menu */
  3618. .secondary-navigation {
  3619. display: block;
  3620. float: left;
  3621. }
  3622. /* Bottom Menu */
  3623. .bottom-navigation {
  3624. display: none;
  3625. }
  3626. /* Footer Menu */
  3627. .footer-navigation ul {
  3628. padding: 3px 0;
  3629. }
  3630. .footer-navigation li {
  3631. border-top: 0;
  3632. float: left;
  3633. padding: 0 10px;
  3634. }
  3635. .footer-navigation li:first-child {
  3636. padding-left: 0;
  3637. }
  3638. .footer-navigation li:last-child {
  3639. padding-right: 0;
  3640. }
  3641. .footer-navigation li + li {
  3642. border-left: 1px solid #eee;
  3643. }
  3644. .footer-navigation a {
  3645. padding: 0;
  3646. }
  3647. /* Widgets */
  3648. .sidebar-toggle {
  3649. display: none;
  3650. }
  3651. .widget-area {
  3652. display: block;
  3653. }
  3654. .widget_calendar td,
  3655. .widget_calendar tr {
  3656. padding-left: 0;
  3657. padding-right: 0;
  3658. }
  3659. /* Grid */
  3660. .entry-header-inner,
  3661. .featured-content-inner,
  3662. .footer-navigation > div,
  3663. .footer-widget-inner,
  3664. .header-image-inner,
  3665. .search-navigation-inner,
  3666. .site-branding,
  3667. .site-content-inner,
  3668. .site-info,
  3669. .site-top-inner {
  3670. width: 840px;
  3671. }
  3672. .site-main {
  3673. width: 615px;
  3674. }
  3675. .widget-area {
  3676. width: 226px;
  3677. }
  3678. .author-info {
  3679. width: 225px;
  3680. }
  3681. .footer-widget-inner .widget {
  3682. width: 165px;
  3683. }
  3684. .comments-area {
  3685. margin-right: -60px;
  3686. padding-right: 60px;
  3687. }
  3688. .site-main {
  3689. border-right: 1px solid #ddd;
  3690. float: left;
  3691. padding-right: 60px;
  3692. }
  3693. .widget-area {
  3694. border-left: 1px solid #ddd;
  3695. float: right;
  3696. margin-left: -1px;
  3697. padding-left: 60px;
  3698. padding-top: 60px;
  3699. }
  3700. .widget-area:before {
  3701. display: none;
  3702. }
  3703. .footer-widget-inner .widget:nth-of-type(even),
  3704. .footer-widget-inner .widget:nth-of-type(odd) {
  3705. clear: none;
  3706. margin-left: 30px;
  3707. margin-right: 30px;
  3708. }
  3709. .footer-widget-inner .widget:nth-of-type(4n+1) {
  3710. clear: left;
  3711. margin-left: 0;
  3712. }
  3713. .footer-widget-inner .widget:nth-of-type(4n+4) {
  3714. clear: right;
  3715. margin-right: 0;
  3716. }
  3717. /* Header */
  3718. .no-site-branding .site-header {
  3719. padding-top: 0;
  3720. }
  3721. .site-top {
  3722. display: block;
  3723. }
  3724. .no-site-branding .site-top {
  3725. margin: 0;
  3726. }
  3727. .site-branding {
  3728. min-height: 0;
  3729. }
  3730. .site-description,
  3731. .site-title {
  3732. padding-left: 0;
  3733. padding-right: 0;
  3734. }
  3735. .search-navigation {
  3736. border-top: 1px solid #ddd;
  3737. margin-bottom: -15px;
  3738. margin-top: 30px;
  3739. padding-top: 15px;
  3740. position: relative;
  3741. top: auto;
  3742. }
  3743. .no-site-branding .site-branding + .search-navigation {
  3744. margin-top: 0;
  3745. }
  3746. .search-navigation-inner {
  3747. align-items: center;
  3748. -webkit-align-items: center;
  3749. display: block;
  3750. display: -webkit-box;
  3751. display: -moz-box;
  3752. display: -ms-flexbox;
  3753. display: -webkit-flex;
  3754. display: flex;
  3755. -webkit-justify-content: center;
  3756. justify-content: center;
  3757. }
  3758. .search-toggle {
  3759. height: 30px;
  3760. width: 30px;
  3761. z-index: 0;
  3762. }
  3763. .search-toggle:before {
  3764. font-size: 16px;
  3765. height: 28px;
  3766. line-height: 28px;
  3767. width: 28px;
  3768. }
  3769. .search-header.toggled .search-toggle:before {
  3770. font-size: 12px;
  3771. }
  3772. .header-image {
  3773. border-top: 1px solid #ddd;
  3774. margin: 30px 0 -15px;
  3775. padding: 30px 0 15px;
  3776. }
  3777. .no-site-branding .header-image {
  3778. margin-top: 0;
  3779. }
  3780. /* Featured Content */
  3781. .blog .featured-content .hentry {
  3782. height: 350px;
  3783. width: 345px;
  3784. }
  3785. .blog .featured-content .hentry:first-of-type {
  3786. margin-right: 30px;
  3787. height: 350px;
  3788. width: 550px;
  3789. }
  3790. .blog .featured-content .hentry:nth-of-type(2) {
  3791. margin-right: 0;
  3792. width: 260px;
  3793. }
  3794. .blog .featured-content .hentry:nth-of-type(3),
  3795. .blog .featured-content .hentry:nth-of-type(4),
  3796. .blog .featured-content .hentry:nth-of-type(5) {
  3797. width: 260px;
  3798. }
  3799. .blog .featured-content .hentry:nth-of-type(3) {
  3800. margin-right: 30px;
  3801. }
  3802. /* Posts & Pages */
  3803. .entry-header-wrapper {
  3804. background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  3805. bottom: 0;
  3806. left: 0;
  3807. padding-bottom: 60px;
  3808. position: absolute;
  3809. }
  3810. .entry-hero .entry-title {
  3811. color: #fff;
  3812. }
  3813. .entry-hero .entry-meta,
  3814. .entry-hero .entry-title {
  3815. max-width: 930px;
  3816. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
  3817. }
  3818. .entry-hero .entry-meta,
  3819. .entry-hero .entry-meta a {
  3820. color: #fff;
  3821. }
  3822. .entry-hero .entry-meta a:active,
  3823. .entry-hero .entry-meta a:focus,
  3824. .entry-hero .entry-meta a:hover {
  3825. color: #fff;
  3826. opacity: 0.7;
  3827. }
  3828. .entry-hero .entry-meta a:focus {
  3829. outline-color: rgba(255, 255, 255, 0.7);
  3830. }
  3831. .content-area .format-standard a.post-thumbnail {
  3832. width: 165px;
  3833. }
  3834. .content-area .format-standard.has-post-thumbnail .entry-header {
  3835. width: 359px;
  3836. }
  3837. .author-info {
  3838. border-left: 0;
  3839. border-right: 0;
  3840. border-top: 0;
  3841. margin: 0;
  3842. margin-bottom: 60px;
  3843. margin-left: -60px;
  3844. padding: 0;
  3845. padding-bottom: 30px;
  3846. padding-left: 60px;
  3847. }
  3848. .author-info .author-avatar {
  3849. display: none;
  3850. }
  3851. .author-info .author-heading {
  3852. float: none;
  3853. max-width: 100%;
  3854. }
  3855. /* Post Formats */
  3856. .post-link {
  3857. height: 147px;
  3858. width: 165px;
  3859. }
  3860. .archive .format-link .entry-header,
  3861. .blog .format-link .entry-header,
  3862. .search .format-link .entry-header {
  3863. width: 359px;
  3864. }
  3865. /* Comments */
  3866. .comment-list:before,
  3867. .comment-navigation + .comment-respond:before {
  3868. background: #ddd;
  3869. content: "";
  3870. display: block;
  3871. height: 1px;
  3872. position: absolute;
  3873. right: -60px;
  3874. width: 100%;
  3875. }
  3876. .comment-list:before {
  3877. bottom: -1px;
  3878. }
  3879. .comment-navigation + .comment-respond:before {
  3880. top: -1px;
  3881. }
  3882. /* Infinite Scroll */
  3883. #infinite-footer .container {
  3884. width: 840px !important;
  3885. }
  3886. /* Sharedaddy */
  3887. div#jp-relatedposts:before {
  3888. background: #ddd;
  3889. content: "";
  3890. display: block;
  3891. height: 1px;
  3892. position: absolute;
  3893. right: -60px;
  3894. top: -1px;
  3895. width: 100%;
  3896. }
  3897. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  3898. margin: 0 15px;
  3899. width: 164.6666667px;
  3900. }
  3901. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:first-of-type {
  3902. margin-left: 0;
  3903. }
  3904. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  3905. margin-right: 0;
  3906. }
  3907. }
  3908. /*--------------------------------------------------------------
  3909. ## x >= 1080px
  3910. --------------------------------------------------------------*/
  3911. @media screen and (min-width: 1080px) {
  3912. /* Grid */
  3913. .entry-header-inner,
  3914. .featured-content-inner,
  3915. .footer-navigation > div,
  3916. .footer-widget-inner,
  3917. .header-image-inner,
  3918. .search-navigation-inner,
  3919. .site-branding,
  3920. .site-content-inner,
  3921. .site-info,
  3922. .site-top-inner {
  3923. width: 960px;
  3924. }
  3925. .site-main {
  3926. width: 705px;
  3927. }
  3928. .widget-area {
  3929. width: 256px;
  3930. }
  3931. .author-info {
  3932. width: 255px;
  3933. }
  3934. .footer-widget-inner .widget {
  3935. width: 195px;
  3936. }
  3937. /* Featured Content */
  3938. .blog .featured-content .hentry:first-of-type {
  3939. height: 430px;
  3940. margin-right: 0;
  3941. width: 630px;
  3942. }
  3943. .blog .featured-content .hentry:nth-of-type(2),
  3944. .blog .featured-content .hentry:nth-of-type(3) {
  3945. height: 370px;
  3946. margin-left: 30px;
  3947. margin-right: 0;
  3948. width: 300px;
  3949. }
  3950. .blog .featured-content .hentry:nth-of-type(4),
  3951. .blog .featured-content .hentry:nth-of-type(5) {
  3952. height: 310px;
  3953. margin-right: 0;
  3954. margin-top: -340px;
  3955. width: 300px;
  3956. }
  3957. .blog .featured-content .hentry:nth-of-type(5) {
  3958. margin-left: 330px;
  3959. }
  3960. /* Posts & Pages */
  3961. .content-area .format-standard a.post-thumbnail {
  3962. width: 195px;
  3963. }
  3964. .content-area .format-standard.has-post-thumbnail .entry-header {
  3965. width: 419px;
  3966. }
  3967. .author-info .author-avatar {
  3968. display: block;
  3969. }
  3970. .author-info .author-heading {
  3971. float: left;
  3972. max-width: 120px;
  3973. }
  3974. /* Post Formats */
  3975. .post-link {
  3976. height: 173px;
  3977. width: 195px;
  3978. }
  3979. .archive .format-link .entry-header,
  3980. .blog .format-link .entry-header,
  3981. .search .format-link .entry-header {
  3982. width: 419px;
  3983. }
  3984. /* Infinite Scroll */
  3985. #infinite-footer .container {
  3986. width: 960px !important;
  3987. }
  3988. /* Sharedaddy */
  3989. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  3990. width: 194.6666667px;
  3991. }
  3992. }
  3993. /*--------------------------------------------------------------
  3994. ## x >= 1380px
  3995. --------------------------------------------------------------*/
  3996. @media screen and (min-width: 1380px) {
  3997. /* Grid */
  3998. .entry-header-inner,
  3999. .featured-content-inner,
  4000. .footer-navigation > div,
  4001. .footer-widget-inner,
  4002. .header-image-inner,
  4003. .search-navigation-inner,
  4004. .site-branding,
  4005. .site-content-inner,
  4006. .site-info,
  4007. .site-top-inner {
  4008. width: 1260px;
  4009. }
  4010. .page .comments-area,
  4011. .site-main {
  4012. width: 930px;
  4013. }
  4014. .comments-area {
  4015. width: 600px;
  4016. }
  4017. div#jp-relatedposts,
  4018. .single .entry-content {
  4019. width: 540px;
  4020. }
  4021. .author-info {
  4022. width: 330px;
  4023. }
  4024. .widget-area {
  4025. width: 331px;
  4026. }
  4027. .entry-footer,
  4028. .footer-widget-inner .widget {
  4029. width: 270px;
  4030. }
  4031. div#jp-relatedposts,
  4032. .comments-area,
  4033. .single .entry-content {
  4034. float: right;
  4035. }
  4036. /* Featured Content */
  4037. .blog .featured-content .hentry:first-of-type {
  4038. height: 500px;
  4039. width: 830px;
  4040. }
  4041. .blog .featured-content .hentry:nth-of-type(2),
  4042. .blog .featured-content .hentry:nth-of-type(3) {
  4043. height: 375px;
  4044. margin-left: 30px;
  4045. width: 400px;
  4046. }
  4047. .blog .featured-content .hentry:nth-of-type(4),
  4048. .blog .featured-content .hentry:nth-of-type(5) {
  4049. height: 250px;
  4050. margin-top: -280px;
  4051. width: 400px;
  4052. }
  4053. .blog .featured-content .hentry:nth-of-type(5) {
  4054. margin-left: 430px;
  4055. }
  4056. /* Posts & Pages */
  4057. .content-area .format-standard a.post-thumbnail {
  4058. width: 270px;
  4059. }
  4060. .content-area .format-standard.has-post-thumbnail .entry-header {
  4061. width: 569px;
  4062. }
  4063. .author-info .author-heading {
  4064. max-width: 180px;
  4065. }
  4066. /* Post Formats */
  4067. .post-link {
  4068. height: 240px;
  4069. width: 270px;
  4070. }
  4071. .archive .format-link .entry-header,
  4072. .blog .format-link .entry-header,
  4073. .search .format-link .entry-header {
  4074. width: 569px;
  4075. }
  4076. /* Infinite Scroll */
  4077. #infinite-footer .container {
  4078. width: 1260px !important;
  4079. }
  4080. /* Sharedaddy */
  4081. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  4082. width: 160px;
  4083. }
  4084. }