style.css 85 KB

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