style.css 103 KB

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