123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244 |
- /*
- Theme Name: Shoreditch
- Theme URI: https://wordpress.com/themes/shoreditch/
- Author: Automattic
- Author URI: https://wordpress.com/themes/
- Description: Shoreditch is a functional and responsive theme perfect for your business’s online presence. Although its main purpose is business, Shoreditch looks great as a personal blog theme too.
- Version: 1.2.9-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: shoreditch
- Tags: blue, white, light, two-columns, right-sidebar, responsive-layout, author-bio, custom-background, custom-colors, custom-header, custom-menu, featured-content-with-pages, featured-images, fixed-menu, flexible-header, full-width-template, infinite-scroll, post-slider, rtl-language-support, site-logo, sticky-post, testimonials, theme-options, translation-ready, announcement, art, blog, business, design, education, hotel, productivity, real-estate, school, wedding, bright, clean, contemporary, elegant, minimal, modern, professional, simple, sophisticated, tech, traditional, one-page
- This theme, like WordPress, is licensed under the GPL.
- Use it to make something cool, have fun, and share what you've learned with others.
- Shoreditch is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
- Underscores is distributed under the terms of the GNU GPL v2 or later.
- Normalizing styles have been helped along thanks to the fine work of
- Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- # Normalize
- # Typography
- # Elements
- # Forms
- # Layout
- ## Header
- ## Footer
- ## Widgets
- # Navigation
- ## Links
- ## Main Menu
- ## Pagination
- ## Back to Top
- # Accessibility
- # Alignments
- # Clearings
- # Widgets
- # Content
- ## Posts & Pages
- ## Featured Content
- ## Panel Page Template
- ## Comments
- # Media
- ## Captions
- ## Galleries
- ## Playlists
- # Jetpack
- ## Contact Form
- ## Galleries
- ## Infinite Scroll
- ## MailChimp Subscriber Popup
- ## PollDaddy
- ## Recipes
- ## Responsive Videos
- ## Sharedaddy
- ## Social Menu
- ## Testimonials
- ## Widgets
- # Extra Classes
- ## Buttons
- ## Columns
- # Responsive
- ## x >= 600px
- ## x >= 768px
- ## x >= 896px
- ## x >= 1020px
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- # Normalize
- --------------------------------------------------------------*/
- html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 0;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- menu,
- nav,
- section,
- summary {
- display: block;
- }
- audio,
- canvas,
- progress,
- video {
- display: inline-block;
- vertical-align: baseline;
- }
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- [hidden],
- template {
- display: none;
- }
- a {
- background-color: transparent;
- }
- a:active,
- a:hover {
- outline: 0;
- }
- abbr[title] {
- border-bottom: 1px dotted;
- }
- b,
- strong {
- font-weight: bold;
- }
- dfn {
- font-style: italic;
- }
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- mark {
- background: #ff0;
- color: #000;
- }
- small {
- font-size: 80%;
- }
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sup {
- top: -0.5em;
- }
- sub {
- bottom: -0.25em;
- }
- img {
- border: 0;
- }
- svg:not(:root) {
- overflow: hidden;
- }
- figure {
- margin: 0 0 1.5em;
- }
- hr {
- box-sizing: content-box;
- height: 0;
- }
- pre {
- overflow: auto;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: monospace, monospace;
- font-size: 1em;
- }
- button,
- input,
- optgroup,
- select,
- textarea {
- color: inherit;
- font: inherit;
- margin: 0;
- }
- button {
- overflow: visible;
- }
- button,
- select {
- text-transform: none;
- }
- button,
- html input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- }
- button[disabled],
- html input[disabled] {
- cursor: default;
- }
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
- input {
- line-height: normal;
- }
- input[type="checkbox"],
- input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- input[type="search"] {
- -webkit-appearance: textfield;
- box-sizing: border-box;
- }
- input[type="search"]::-webkit-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- fieldset {
- border: 1px solid #f3f3f3;
- margin: 0;
- padding: 0.5em;
- }
- legend {
- border: 0;
- padding: 0;
- }
- textarea {
- overflow: auto;
- }
- optgroup {
- font-weight: bold;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- /*--------------------------------------------------------------
- # Typography
- --------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- color: #73757D;
- font-family: Lato, sans-serif;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.5;
- }
- .widget-footer-top-area,
- .widget-footer-top-area button,
- .widget-footer-top-area input,
- .widget-footer-top-area select,
- .widget-footer-top-area textarea {
- color: #fff;
- }
- .widget-footer-top-area select option {
- color: #333;
- }
- .entry-footer,
- .entry-meta,
- .site-info {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- .site-title {
- clear: both;
- color: #2c313f;
- font-family: Poppins, sans-serif;
- font-weight: bold;
- margin: 0 0 1.5rem;
- }
- .featured-content .hentry.has-post-thumbnail h1,
- .featured-content .hentry.has-post-thumbnail h2,
- .featured-content .hentry.has-post-thumbnail h3,
- .featured-content .hentry.has-post-thumbnail h4,
- .featured-content .hentry.has-post-thumbnail h5,
- .featured-content .hentry.has-post-thumbnail h6,
- .page-template-panel-page .hentry.has-post-thumbnail h1,
- .page-template-panel-page .hentry.has-post-thumbnail h2,
- .page-template-panel-page .hentry.has-post-thumbnail h3,
- .page-template-panel-page .hentry.has-post-thumbnail h4,
- .page-template-panel-page .hentry.has-post-thumbnail h5,
- .page-template-panel-page .hentry.has-post-thumbnail h6,
- .widget-footer-top-area h1,
- .widget-footer-top-area h2,
- .widget-footer-top-area h3,
- .widget-footer-top-area h4,
- .widget-footer-top-area h5,
- .widget-footer-top-area h6 {
- color: inherit;
- }
- .site-title {
- margin-bottom: 0;
- }
- h1,
- .entry-title,
- .post-type-archive-jetpack-testimonial .page-title {
- font-size: 40px;
- font-size: 2.5rem;
- line-height: 1.2;
- }
- h2,
- .comment-reply-title,
- .comments-title {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.125;
- }
- h3,
- .page-title,
- .widgettitle,
- .widget-title {
- font-size: 25px;
- font-size: 1.5625rem;
- line-height: 1.2;
- }
- h4,
- .site-title {
- font-size: 20px;
- font-size: 1.25rem;
- line-height: 1.5;
- }
- h5 {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.5;
- }
- h6 {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- address,
- p,
- pre {
- margin: 0 0 1.5em;
- }
- blockquote {
- border: 0 solid #3e69dc;
- border-left-width: 2px;
- font-size: 20px;
- font-size: 1.25rem;
- font-style: italic;
- line-height: 1.5;
- margin: 0 0 1.5rem;
- padding-left: 1.5rem;
- }
- blockquote * {
- margin-bottom: 1.5rem;
- }
- blockquote cite {
- color: #2c313f;
- display: block;
- }
- code,
- kbd,
- tt,
- var {
- background: #f3f3f3;
- font-family: Inconsolata, monospace;
- padding: 0 0.25em;
- }
- .featured-content .hentry.has-post-thumbnail code,
- .featured-content .hentry.has-post-thumbnail kbd,
- .featured-content .hentry.has-post-thumbnail tt,
- .featured-content .hentry.has-post-thumbnail var,
- .page-template-panel-page .hentry.has-post-thumbnail code,
- .page-template-panel-page .hentry.has-post-thumbnail kbd,
- .page-template-panel-page .hentry.has-post-thumbnail tt,
- .page-template-panel-page .hentry.has-post-thumbnail var {
- background: rgba(0, 0, 0, 0.25);
- }
- .widget-footer-top-area code,
- .widget-footer-top-area kbd,
- .widget-footer-top-area tt,
- .widget-footer-top-area var {
- background: rgba(255, 255, 255, 0.25);
- }
- pre {
- border: 1px solid #f3f3f3;
- font-family: Inconsolata, monospace;
- max-width: 100%;
- overflow: auto;
- padding: 1.5em;
- position: relative;
- }
- .featured-content .hentry.has-post-thumbnail pre,
- .page-template-panel-page .hentry.has-post-thumbnail pre {
- border-color: rgba(0, 0, 0, 0.25);
- }
- .widget-footer-top-area pre {
- border-color: rgba(255, 255, 255, 0.25);
- }
- abbr,
- abbr[title],
- acronym {
- border-bottom: 1px dotted;
- cursor: help;
- }
- mark:not(.has-inline-color),
- ins {
- background: #3e69dc;
- color: #fff;
- padding: 0 0.25em;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- /*--------------------------------------------------------------
- # Elements
- --------------------------------------------------------------*/
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- body {
- background: #fff;
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: "";
- }
- blockquote,
- q {
- quotes: "" "";
- }
- hr {
- background-color: #f3f3f3;
- border: 0;
- height: 1px;
- margin-bottom: 1.5em;
- }
- ul,
- ol {
- margin: 0 0 1.5em 1.25em;
- padding: 0;
- }
- ul {
- list-style: outside disc;
- }
- ol {
- list-style: outside decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 1.5em;
- }
- dl {
- margin: 0 0 1.5em;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1.5em;
- }
- img {
- height: auto;
- max-width: 100%;
- vertical-align: middle;
- }
- table,
- th,
- td {
- border: 1px solid #f3f3f3;
- }
- table {
- border-collapse: separate;
- border-spacing: 0;
- border-width: 1px 0 0 1px;
- margin: 0 0 1.5em;
- table-layout: fixed;
- width: 100%;
- }
- th {
- border-width: 0 1px 1px 0;
- }
- td {
- border-width: 0 1px 1px 0;
- }
- th,
- td {
- padding: 0.25em;
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- background: #3e69dc;
- border: 0;
- border-radius: 5em;
- color: #fff;
- display: inline-block;
- font-size: 13px;
- font-size: 0.8125rem;
- font-weight: bold;
- letter-spacing: 0.0625em;
- line-height: 1.3847;
- padding: 0.5625rem 1.5em;
- text-transform: uppercase;
- }
- button:focus,
- input[type="button"]:focus,
- input[type="reset"]:focus,
- input[type="submit"]:focus,
- button:hover,
- input[type="button"]:hover,
- input[type="reset"]:hover,
- input[type="submit"]:hover {
- background: #2c313f;
- outline: none;
- }
- .widget-footer-top-area button,
- .widget-footer-top-area input[type="button"],
- .widget-footer-top-area input[type="reset"],
- .widget-footer-top-area input[type="submit"] {
- background: #fff;
- color: #3e69dc;
- }
- .widget-footer-top-area button:focus,
- .widget-footer-top-area input[type="button"]:focus,
- .widget-footer-top-area input[type="reset"]:focus,
- .widget-footer-top-area input[type="submit"]:focus,
- .widget-footer-top-area button:hover,
- .widget-footer-top-area input[type="button"]:hover,
- .widget-footer-top-area input[type="reset"]:hover,
- .widget-footer-top-area input[type="submit"]:hover {
- background: rgba(255, 255, 255, 0.25);
- color: #fff;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- -webkit-appearance: none;
- -moz-appearance: none;
- background: #f3f3f3;
- border: 0;
- border-radius: 0;
- box-sizing: border-box;
- max-width: 100%;
- padding: 0.375em;
- width: 100%;
- }
- select {
- background: #f3f3f3;
- border: 0;
- box-sizing: border-box;
- max-width: 100%;
- width: 100%;
- }
- .widget-footer-top-area input[type="text"],
- .widget-footer-top-area input[type="email"],
- .widget-footer-top-area input[type="url"],
- .widget-footer-top-area input[type="password"],
- .widget-footer-top-area input[type="search"],
- .widget-footer-top-area input[type="number"],
- .widget-footer-top-area input[type="tel"],
- .widget-footer-top-area input[type="range"],
- .widget-footer-top-area input[type="date"],
- .widget-footer-top-area input[type="month"],
- .widget-footer-top-area input[type="week"],
- .widget-footer-top-area input[type="time"],
- .widget-footer-top-area input[type="datetime"],
- .widget-footer-top-area input[type="datetime-local"],
- .widget-footer-top-area input[type="color"],
- .widget-footer-top-area select,
- .widget-footer-top-area textarea {
- background: rgba(255, 255, 255, 0.25);
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- select:focus,
- textarea:focus {
- background: transparent;
- outline: 2px solid #3e69dc;
- outline-offset: -2px;
- }
- .widget-footer-top-area input[type="text"]:focus,
- .widget-footer-top-area input[type="email"]:focus,
- .widget-footer-top-area input[type="url"]:focus,
- .widget-footer-top-area input[type="password"]:focus,
- .widget-footer-top-area input[type="search"]:focus,
- .widget-footer-top-area input[type="number"]:focus,
- .widget-footer-top-area input[type="tel"]:focus,
- .widget-footer-top-area input[type="range"]:focus,
- .widget-footer-top-area input[type="date"]:focus,
- .widget-footer-top-area input[type="month"]:focus,
- .widget-footer-top-area input[type="week"]:focus,
- .widget-footer-top-area input[type="time"]:focus,
- .widget-footer-top-area input[type="datetime"]:focus,
- .widget-footer-top-area input[type="datetime-local"]:focus,
- .widget-footer-top-area input[type="color"]:focus,
- .widget-footer-top-area select:focus,
- .widget-footer-top-area textarea:focus {
- outline-color: #fff;
- }
- label {
- color: #2c313f;
- }
- .page-template-panel-page .hentry.has-post-thumbnail label {
- color: inherit;
- }
- .widget-footer-top-area label {
- color: #fff;
- }
- /* Placeholder */
- ::input-placeholder {
- color: #73757D;
- }
- .widget-footer-top-area ::input-placeholder {
- color: #fff;
- }
- ::-webkit-input-placeholder {
- color: #73757D;
- }
- .widget-footer-top-area ::-webkit-input-placeholder {
- color: #fff;
- }
- :-moz-placeholder {
- color: #73757D;
- opacity: 1;
- }
- .widget-footer-top-area :-moz-placeholder {
- color: #fff;
- }
- ::-moz-placeholder {
- color: #73757D;
- opacity: 1;
- }
- .widget-footer-top-area ::-moz-placeholder {
- color: #fff;
- }
- :-ms-input-placeholder {
- color: #73757D;
- }
- .widget-footer-top-area :-ms-input-placeholder {
- color: #fff;
- }
- /* Search */
- .search-form {
- position: relative;
- padding-bottom: 1.5em;
- }
- .search-form .search-field {
- padding-right: 2.625em;
- }
- .search-form .search-submit {
- background: transparent;
- border-radius: 0;
- font-size: 16px;
- font-size: 1rem;
- height: 2.25em;
- line-height: 1;
- padding: 0;
- position: absolute;
- right: 0;
- text-transform: none;
- top: 0;
- width: 2.25em;
- }
- .search-form .search-submit:focus,
- .search-form .search-submit:hover {
- background: transparent;
- }
- .search-form .search-submit:before {
- background: #3e69dc;
- border-radius: 50%;
- content: "\f400";
- display: block;
- font-family: Genericons;
- height: 1.75em;
- left: 50%;
- line-height: 1.75;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -moz-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 1.75em;
- }
- .widget-footer-top-area .search-form .search-submit:before {
- background: #fff;
- }
- .search-form .search-submit:focus:before,
- .search-form .search-submit:hover:before {
- background: #2c313f;
- }
- .widget-footer-top-area .search-form .search-submit:focus:before,
- .widget-footer-top-area .search-form .search-submit:hover:before {
- background: rgba(255, 255, 255, 0.25);
- }
- /* Password Protected */
- .post-password-form input[type="submit"] {
- margin-top: 1.5em;
- }
- /*--------------------------------------------------------------
- # Layout
- --------------------------------------------------------------*/
- .entry-hero-wrapper,
- .hentry-wrapper,
- .site-content-wrapper,
- .site-footer-wrapper,
- .site-header-wrapper,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper,
- .widget-area-wrapper {
- margin-left: auto;
- margin-right: auto;
- max-width: 900px;
- max-width: 56.25rem;
- width: 90%;
- width: calc(100% - 3em);
- }
- .content-area,
- .site-content-wrapper {
- width: 100%;
- }
- .content-area,
- .site-header-wrapper {
- max-width: 100%;
- }
- .site-content-wrapper {
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-flow: row wrap;
- -ms-flex-flow: row wrap;
- flex-flow: row wrap;
- position: relative;
- }
- /*--------------------------------------------------------------
- ## Header
- --------------------------------------------------------------*/
- .site-header {
- background: #fff;
- border-bottom: 1px solid #f3f3f3;
- padding-bottom: 1.5em;
- width: 100%;
- }
- .site-header-wrapper {
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- position: relative;
- z-index: 9999;
- }
- .site-branding {
- margin-left: 0;
- margin-right: auto;
- margin-top: 1.5em;
- padding-right: 1.5em;
- }
- .site-title a {
- color: #3e69dc;
- }
- .site-title a:focus,
- .site-title a:hover {
- color: #2c313f;
- }
- .wp-custom-logo .site-title {
- margin-top: 0.5rem;
- }
- .site-description {
- display: none;
- }
- .custom-logo-link {
- display: block;
- }
- .custom-logo {
- max-width: 180px;
- }
- .header-image {
- border-bottom: 1px solid #f3f3f3;
- text-align: center;
- }
- .header-image a {
- display: inline-block;
- max-width: 100%;
- }
- .header-image a:focus {
- opacity: 0.5;
- }
- /*--------------------------------------------------------------
- ## Footer
- --------------------------------------------------------------*/
- .site-footer {
- border-top: 1px solid #f3f3f3;
- padding: 1.5em 0;
- }
- .site-info a {
- color: #73757D;
- }
- .site-info a:focus,
- .site-info a:hover {
- color: #3e69dc;
- }
- .sep {
- color: #f3f3f3;
- padding: 0 0.5em;
- }
- /*--------------------------------------------------------------
- ## Widgets
- --------------------------------------------------------------*/
- .site-content-wrapper .widget-area {
- border-top: 1.5em solid #2c313f;
- padding: 1.5em 1.5em 0;
- width: 100%;
- }
- .widget-footer-area {
- padding-top: 1.5em;
- }
- .widget-footer-top-area {
- background: #3e69dc;
- }
- .widget-footer-bottom-area {
- border-top: 1px solid #f3f3f3;
- }
- .widget-footer-top-area + .widget-footer-bottom-area {
- border-top: 0;
- }
- /*--------------------------------------------------------------
- # Navigation
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Links
- --------------------------------------------------------------*/
- a {
- color: #2c313f;
- text-decoration: none;
- }
- a:visited {
- font-weight: normal;
- }
- a:focus,
- a:hover {
- color: #3e69dc;
- outline: 0;
- }
- .comment-content a,
- .comment-reply-title small a,
- .entry-content a,
- .entry-footer a:focus,
- .entry-footer a:hover,
- .entry-summary a,
- .logged-in-as a,
- .pingback .comment-body > a,
- .site-info a:focus,
- .site-info a:hover,
- .taxonomy-description a {
- text-decoration: underline;
- }
- .comment-content a:hover,
- .entry-content a:hover,
- .entry-summary a:hover {
- text-decoration: none;
- }
- .comment-content a:focus,
- .comment-content a:hover,
- .comment-content a[href$=".png"],
- .comment-content a.button,
- .comment-reply-title small a:focus,
- .comment-reply-title small a:hover,
- .entry-content a:focus,
- .entry-content a:hover,
- .entry-content a[href$=".png"],
- .entry-content a.button,
- .entry-summary a:focus,
- .entry-summary a:hover,
- .entry-summary a[href$=".png"],
- .entry-summary a.button,
- .logged-in-as a:focus,
- .logged-in-as a:hover,
- .pingback .comment-body > a:focus,
- .pingback .comment-body > a:hover,
- .site .testimonial-featured-image,
- .site-content .wp-audio-shortcode a,
- .taxonomy-description a:focus,
- .taxonomy-description a:hover {
- text-decoration: none;
- }
- .featured-content .hentry.has-post-thumbnail a,
- .page-template-panel-page .hentry.has-post-thumbnail a,
- .widget-footer-top-area a {
- color: rgba(255, 255, 255, 0.75);
- }
- .comment-metadata a,
- .entry-footer a,
- .entry-header a,
- .featured-content .hentry.has-post-thumbnail a:focus,
- .featured-content .hentry.has-post-thumbnail a:hover,
- .page-template-panel-page .hentry.has-post-thumbnail a:focus,
- .page-template-panel-page .hentry.has-post-thumbnail a:hover,
- .widget-footer-top-area a:focus,
- .widget-footer-top-area a:hover {
- color: inherit;
- }
- .comment-metadata a:focus,
- .comment-metadata a:hover,
- .entry-footer a:focus,
- .entry-footer a:hover,
- .entry-header a:focus,
- .entry-header a:hover {
- color: #3e69dc;
- }
- /*--------------------------------------------------------------
- ## Main Menu
- --------------------------------------------------------------*/
- .site-menu {
- display: none;
- -webkit-flex: 0 1 100%;
- -ms-flex: 0 1 100%;
- flex: 0 1 100%;
- }
- .site-menu.toggled-on {
- display: block;
- }
- .main-navigation {
- margin-top: 1.5em;
- }
- .main-navigation .primary-menu {
- border-bottom: 1px solid;
- }
- .main-navigation ul {
- color: #f3f3f3;
- display: none;
- list-style: none;
- margin: 0;
- }
- .main-navigation.toggled-on ul,
- .main-navigation.toggled-on ul.toggled-on {
- display: block;
- }
- .main-navigation.toggled-on ul ul {
- display: none;
- }
- .main-navigation .menu-item-has-children > a {
- margin-right: 3.5em;
- position: relative;
- }
- .main-navigation .menu-item-has-children > a:after {
- color: #3e69dc;
- content: "\f431";
- display: none;
- font-family: Genericons;
- line-height: 1;
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .main-navigation ul ul .menu-item-has-children > a:after {
- right: 0.75em;
- -webkit-transform: translateY(-50%) rotate(-90deg);
- -moz-transform: translateY(-50%) rotate(-90deg);
- -ms-transform: translateY(-50%) rotate(-90deg);
- transform: translateY(-50%) rotate(-90deg);
- }
- .main-navigation li {
- border-top: 1px solid;
- position: relative;
- }
- .main-navigation a {
- color: #2c313f;
- display: block;
- font-weight: bold;
- padding: 0.75em 0;
- }
- .main-navigation a:focus,
- .main-navigation a:hover {
- color: #3e69dc;
- }
- .main-navigation ul ul {
- background: #fff;
- margin-left: 1.5em;
- }
- .main-navigation .primary-menu .current_page_item > a,
- .main-navigation .primary-menu .current-menu-item > a,
- .main-navigation .primary-menu .current_page_ancestor > a {
- border-color: #3e69dc;
- }
- /* Menu Toggle */
- .menu-toggle {
- margin-top: 1.5em;
- }
- /* Dropdown Toggle */
- .dropdown-toggle {
- border: 0.25em solid;
- border-radius: 50%;
- font-size: 16px;
- font-size: 1rem;
- height: 2.5em;
- line-height: 1;
- padding: 0;
- position: absolute;
- right: 0;
- text-transform: none;
- top: 0.25em;
- width: 2.5em;
- }
- .dropdown-toggle:before {
- content: "\f431";
- font-family: Genericons;
- height: 1em;
- left: 50%;
- line-height: 1;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -moz-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 1em;
- }
- .dropdown-toggle.toggled-on:before {
- content: "\f432";
- }
- /*--------------------------------------------------------------
- ## Pagination
- --------------------------------------------------------------*/
- .comment-navigation,
- .post-navigation,
- .posts-navigation {
- clear: both;
- margin: 0 auto;
- overflow: hidden;
- position: relative;
- }
- .comment-navigation,
- .posts-navigation {
- border: 1px solid #f3f3f3;
- border-width: 1px 0 0;
- }
- .post-navigation {
- border-bottom: 0 solid #f3f3f3;
- max-width: 900px;
- max-width: 56.25rem;
- }
- .comment-navigation:before,
- .posts-navigation:before {
- background: #f3f3f3;;
- content: "";
- display: block;
- height: 100%;
- left: 50%;
- position: absolute;
- width: 1px;
- }
- .comment-navigation a,
- .posts-navigation a {
- border: 0;
- display: block;
- font-weight: bold;
- padding: 1.5em;
- }
- .post-navigation a {
- border: 1px solid #f3f3f3;
- border-width: 1px 0 0;
- display: block;
- padding: 1.5em;
- }
- .comment-navigation a:focus,
- .comment-navigation a:hover,
- .post-navigation a:focus,
- .post-navigation a:hover,
- .posts-navigation a:focus,
- .posts-navigation a:hover {
- background-color: #f3f3f3;
- }
- .post-navigation .nav-next,
- .post-navigation .nav-previous {
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- position: relative;
- }
- .post-navigation .meta-nav {
- color: #73757D;
- display: block;
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- padding: 0.1875rem 0;
- text-transform: uppercase;
- }
- .post-navigation .post-title {
- font-family: Poppins, sans-serif;
- font-size: 25px;
- font-size: 1.5625rem;
- font-weight: bold;
- line-height: 1.2;
- }
- .post-navigation a:focus .post-title,
- .post-navigation a:hover .post-title {
- color: #3e69dc;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous {
- float: left;
- position: relative;
- width: 50%;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next {
- float: right;
- text-align: right;
- width: 50%;
- }
- .comment-navigation .nav-previous a:before,
- .posts-navigation .nav-previous a:before,
- .comment-navigation .nav-next a:after,
- .posts-navigation .nav-next a:after {
- color: #3e69dc;
- content: "\f431";
- display: inline-block;
- font-family: Genericons;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1;
- margin-right: 0.25em;
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
- vertical-align: text-bottom;
- }
- .comment-navigation .nav-next a:after,
- .posts-navigation .nav-next a:after {
- content: "\f432";
- margin-left: 0.25em;
- margin-right: 0;
- }
- /*--------------------------------------------------------------
- ## Back to Top
- --------------------------------------------------------------*/
- .back-top {
- background: #2c313f;
- border-radius: 0;
- display: none;
- opacity: 0.75;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 9999;
- }
- .back-top:focus,
- .back-top:hover {
- opacity: 1;
- }
- /*--------------------------------------------------------------
- # Accessibility
- --------------------------------------------------------------*/
- .screen-reader-text {
- clip: rect(1px, 1px, 1px, 1px);
- position: absolute !important;
- height: 1px;
- width: 1px;
- overflow: hidden;
- }
- .screen-reader-text:focus {
- background-color: #f1f1f1;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- color: #21759b;
- display: block;
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- height: auto;
- left: 5px;
- line-height: normal;
- padding: 15px 23px 14px;
- text-decoration: none;
- top: 5px;
- width: auto;
- z-index: 100000;
- }
- #content[tabindex="-1"]:focus {
- outline: 0;
- }
- /*--------------------------------------------------------------
- # Alignments
- --------------------------------------------------------------*/
- .alignleft {
- display: inline;
- float: left;
- margin-right: 1.5em;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 1.5em;
- }
- .aligncenter {
- clear: both;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- /*--------------------------------------------------------------
- # Clearings
- --------------------------------------------------------------*/
- .clear:before,
- .clear:after,
- .entry-author:before,
- .entry-author:after,
- .entry-content:before,
- .entry-content:after,
- .comment-content:before,
- .comment-content:after,
- .page-content:before,
- .page-content:after,
- .page-links:before,
- .page-links:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-footer:before,
- .site-footer:after,
- .widget-area-wrapper:before,
- .widget-area-wrapper:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .clear:after,
- .entry-author:after,
- .entry-content:after,
- .comment-content:after,
- .page-content:after,
- .page-links:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after,
- .widget-area-wrapper:after {
- clear: both;
- }
- /*--------------------------------------------------------------
- # Widgets
- --------------------------------------------------------------*/
- .widget {
- margin: 0;
- }
- .widget-title:empty {
- display: none;
- }
- /* Calendar */
- .widget_calendar td,
- .widget_calendar th {
- line-height: 2.35;
- padding: 0;
- text-align: center;
- }
- .widget_calendar caption {
- font-weight: bold;
- margin-bottom: 1.5em;
- }
- .widget_calendar tbody a {
- background-color: #f3f3f3;
- display: block;
- }
- .widget_calendar tbody a:hover,
- .widget_calendar tbody a:focus {
- background-color: transparent;
- }
- /* Lists */
- .widget_archive ul,
- .widget_categories ul,
- .widget_links ul,
- .widget_meta ul,
- .widget_nav_menu ul,
- .widget_pages ul,
- .widget_recent_comments ul,
- .widget_recent_entries ul,
- .widget_rss ul {
- border-bottom: 1px solid #f3f3f3;
- list-style: none;
- margin-left: 0;
- }
- .widget-footer-top-area .widget_archive ul,
- .widget-footer-top-area .widget_categories ul,
- .widget-footer-top-area .widget_links ul,
- .widget-footer-top-area .widget_meta ul,
- .widget-footer-top-area .widget_nav_menu ul,
- .widget-footer-top-area .widget_pages ul,
- .widget-footer-top-area .widget_recent_comments ul,
- .widget-footer-top-area .widget_recent_entries ul,
- .widget-footer-top-area .widget_rss ul {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .widget_archive li,
- .widget_categories li,
- .widget_links li,
- .widget_meta li,
- .widget_nav_menu li,
- .widget_pages li,
- .widget_recent_comments li,
- .widget_recent_entries li,
- .widget_rss li {
- border-top: 1px solid #f3f3f3;
- padding: 0.75em 0;
- }
- .widget-footer-top-area .widget_archive li,
- .widget-footer-top-area .widget_categories li,
- .widget-footer-top-area .widget_links li,
- .widget-footer-top-area .widget_meta li,
- .widget-footer-top-area .widget_nav_menu li,
- .widget-footer-top-area .widget_pages li,
- .widget-footer-top-area .widget_recent_comments li,
- .widget-footer-top-area .widget_recent_entries li,
- .widget-footer-top-area .widget_rss li {
- border-top-color: rgba(255, 255, 255, 0.25);
- }
- .widget_categories .children,
- .widget_nav_menu .sub-menu,
- .widget_pages .children {
- border-bottom: 0;
- margin-bottom: -0.75em;
- margin-top: 0.75em;
- padding-left: 1.5em;
- }
- .widget_recent_entries .post-date {
- display: block;
- }
- /* RSS */
- .widget_rss .widget-title img {
- display: none;
- }
- .widget_rss cite,
- .widget_rss .rssSummary,
- .widget_rss .rss-date {
- display: block;
- }
- /* Select */
- .widget_archive select,
- .widget_categories select {
- margin-bottom: 1.5em;
- }
- /* Tag Cloud */
- .widget_tag_cloud .tagcloud {
- padding-bottom: 1.25em;
- display: flex;
- flex-wrap: wrap;
- }
- .widget_tag_cloud .tagcloud a {
- background: #f3f3f3;
- display: block;
- margin-bottom: 0.25em;
- margin-right: 0.25em;
- padding: 0.25em 0.5em;
- }
- .widget-footer-top-area .widget_tag_cloud .tagcloud a {
- background: rgba(255, 255, 255, 0.25);
- }
- /*--------------------------------------------------------------
- # Content
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Posts & Pages
- --------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .hentry {
- border-bottom: 1px solid #f3f3f3;
- margin: 0 0 1.5em;
- padding-top: 1.5em;
- }
- .hentry:last-of-type {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .hentry + .hentry {
- margin-top: -1.5em;
- }
- .updated:not(.published) {
- display: none;
- }
- .entry-content,
- .entry-summary {
- margin: 0;
- }
- .page-content {
- padding: 1.5em 1.5em 0;
- }
- .page-header {
- border-bottom: 1px solid #f3f3f3;
- padding: 1.5em 1.5em 0;
- }
- .page-title span {
- color: #73757D;
- }
- .entry-header {
- color: #2c313f;
- }
- /* Entry Hero & Has Post Tumbnail */
- .entry-hero,
- .site-content-wrapper .has-post-thumbnail .entry-header {
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- border-bottom: 0;
- color: #fff;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- min-height: 30vh;
- position: relative;
- text-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
- }
- .site-content-wrapper .has-post-thumbnail .entry-header {
- margin-bottom: 1.5em;
- margin-left: -1.5em;
- margin-top: -1.5em;
- width: 100%;
- width: calc(100% + 3em);
- }
- .entry-hero:before,
- .site-content-wrapper .has-post-thumbnail .entry-header:before {
- background: rgba(0, 0, 0, 0.2);
- content: "";
- display: block;
- height: 100%;
- position: absolute;
- top: 0;
- width: 100%;
- }
- .entry-hero-wrapper,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper {
- -webkit-align-self: flex-end;
- -ms-align-self: flex-end;
- align-self: flex-end;
- padding-bottom: 1.5em;
- padding-top: 1.5em;
- position: relative;
- }
- .entry-hero a,
- .entry-hero .entry-title,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper a {
- color: #fff;
- }
- .entry-hero a:focus,
- .entry-hero a:hover,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper a:focus,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper a:hover {
- color: rgba(255, 255, 255, 0.75);
- }
- .entry-hero .entry-title,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper .entry-title {
- margin-bottom: 0;
- }
- /* Entry Meta & Entry Footer */
- .entry-meta {
- font-weight: bold;
- margin-bottom: 0.375rem;
- text-transform: uppercase;
- }
- .entry-footer > span,
- .entry-meta > span {
- display: inline-block;
- padding: 0.1875rem 0;
- }
- .entry-footer > span:last-of-type {
- margin-bottom: 1.5rem;
- }
- .entry-footer > span:not(:last-child):after {
- color: #f3f3f3;
- content: "\002f";
- display: inline-block;
- padding: 0 0.5em;
- }
- /* Entry Author */
- .entry-author {
- border: 1px solid #f3f3f3;
- margin: 0 0 1.5em;
- padding: 1.5em 1.5em 0;
- }
- .author-avatar {
- float: right;
- }
- .author-avatar img {
- border-radius: 50%;
- display: block;
- height: 3em;
- width: 3em;
- }
- .author-heading {
- float: left;
- max-width: calc(100% - 4.5em);
- }
- .author-title {
- color: #73757D;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-size: 0.8125rem;
- font-weight: normal;
- line-height: 1.3847;
- margin-bottom: 0;
- padding: 0.1875rem 0 0;
- text-transform: uppercase;
- }
- .author-name {
- clear: both;
- color: #2c313f;
- display: block;
- font-family: Poppins, sans-serif;
- font-size: 25px;
- font-size: 1.5625rem;
- font-weight: bold;
- line-height: 1.2;
- margin: 0 0 1.5rem;
- padding: 0.1875rem 0 0;
- text-transform: none;
- }
- .author-bio {
- clear: both;
- }
- .author-link {
- white-space: nowrap;
- }
- /* Page Links & More Link */
- .page-links {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- margin: 0 0 1.25rem;
- }
- .page-links a,
- .page-links > span {
- background: #f3f3f3;
- border-radius: 50%;
- display: block;
- float: left;
- height: 1.5rem;
- line-height: 1.5rem;
- margin: 0 0.25rem 0.25rem 0;
- text-align: center;
- width: 1.5rem;
- }
- .hentry .page-links a {
- box-shadow: none;
- }
- .page-links > span,
- .page-links > .page-links-title,
- .page-links a:hover,
- .page-links a:focus {
- background: transparent;
- }
- .page-links > .page-links-title {
- border-radius: 0;
- display: block;
- height: auto;
- margin: 0;
- text-align: inherit;
- text-transform: uppercase;
- width: 100%;
- }
- .more-link {
- white-space: nowrap;
- }
- .more-link .meta-nav {
- display: none;
- }
- /*--------------------------------------------------------------
- ## Featured Content
- --------------------------------------------------------------*/
- .featured-content {
- border-bottom: 1px solid #f3f3f3;
- opacity: 0;
- position: relative;
- }
- .featured-content .hentry {
- -webkit-backface-visibility: hidden;
- border-bottom: 0;
- margin: 0;
- }
- .featured-content .hentry.has-post-thumbnail {
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- border-bottom: 0;
- color: #fff;
- position: relative;
- text-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
- }
- .featured-content .has-post-thumbnail .entry-header {
- color: inherit;
- }
- .featured-content .hentry.has-post-thumbnail:before {
- background: rgba(0, 0, 0, 0.2);
- content: "";
- display: block;
- height: 100%;
- position: absolute;
- top: 0;
- width: 100%;
- }
- .featured-content .hentry.has-post-thumbnail .hentry-wrapper {
- position: relative;
- }
- .featured-content .has-post-thumbnail .entry-header a:focus,
- .featured-content .has-post-thumbnail .entry-header a:hover,
- .featured-content .has-post-thumbnail .entry-footer,
- .featured-content .has-post-thumbnail .entry-footer a {
- color: rgba(255, 255, 255, 0.75);
- }
- .featured-content .has-post-thumbnail .entry-header,
- .featured-content .has-post-thumbnail .entry-header a,
- .featured-content .has-post-thumbnail .entry-footer a:focus,
- .featured-content .has-post-thumbnail .entry-footer a:hover {
- color: #fff;
- }
- .featured-content .hentry.has-post-thumbnail .entry-footer > span:not(:last-child):after {
- color: rgba(255, 255, 255, 0.25);
- }
- /* Pagination */
- .featured-content .flex-control-paging {
- border-top: 1px solid #f3f3f3;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-justify-content: center;
- -ms-justify-content: center;
- justify-content: center;
- list-style: none;
- margin: 0 auto;
- padding: 1.5em;
- position: relative;
- }
- .featured-content .flex-control-paging:empty {
- display: none;
- }
- .featured-content .flex-control-paging li {
- display: block;
- height: 0.75em;
- margin: 0 0.125em;
- width: 0.75em;
- }
- .featured-content .flex-control-paging a {
- background: transparent;
- border: 2px solid #3e69dc;
- border-radius: 50%;
- color: transparent;
- display: block;
- height: inherit;
- line-height: 1;
- position: relative;
- text-align: center;
- width: inherit;
- }
- .featured-content .flex-control-paging a:hover,
- .featured-content .flex-control-paging .flex-active {
- background: #3e69dc;
- }
- /*--------------------------------------------------------------
- ## Panel Page Template
- --------------------------------------------------------------*/
- .page-template-panel-page .hentry.has-post-thumbnail {
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- border-bottom: 0;
- color: #fff;
- position: relative;
- text-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
- }
- .page-template-panel-page .has-post-thumbnail .entry-header {
- color: inherit;
- }
- .page-template-panel-page .hentry + .has-post-thumbnail {
- margin-top: -1.5em;
- }
- .page-template-panel-page .hentry.has-post-thumbnail:before {
- background: rgba(0, 0, 0, 0.2);
- content: "";
- display: block;
- height: 100%;
- position: absolute;
- top: 0;
- width: 100%;
- }
- .page-template-panel-page .hentry.has-post-thumbnail .hentry-wrapper {
- position: relative;
- }
- /*--------------------------------------------------------------
- ## Comments
- --------------------------------------------------------------*/
- .comments-area {
- border-top: 1px solid #f3f3f3;
- padding-top: 1.5em;
- }
- .comments-wrapper {
- padding-left: 1.5em;
- padding-right: 1.5em;
- }
- /* Comment List */
- .comment-list {
- list-style: none;
- margin: 0;
- }
- .comment-list .children {
- list-style: none;
- }
- .comment-list > li {
- border-bottom: 1px solid #f3f3f3;
- margin-bottom: 1.5em;
- }
- .comment-list > li:last-child {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .pingback .comment-body,
- .trackback .comment-body {
- padding-bottom: 1.5em;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comment-meta {
- margin-bottom: 1.5em;
- }
- .comment-author .avatar {
- border-radius: 50%;
- float: left;
- height: 3em;
- margin-right: 0.375em;
- vertical-align: middle;
- width: 3em;
- }
- .comment-author .fn {
- font-weight: normal;
- }
- .comment-metadata {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- padding: 0.1875rem 0;
- }
- .comment-metadata .edit-link:before {
- color: #f3f3f3;
- content: "\002f";
- display: inline-block;
- padding-left: 0.25em;
- padding-right: 0.5em;
- }
- .reply {
- margin-bottom: 1.5em;
- }
- .comment-reply-link {
- font-weight: bold;
- }
- .comment-reply-link:after {
- color: #3e69dc;
- content: "\f432";
- display: inline-block;
- font-family: Genericons;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1;
- margin-left: 0.25em;
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
- vertical-align: middle;
- }
- /* Comment Respond */
- .comment-respond {
- padding-left: 1.5em;
- padding-right: 1.5em;
- }
- .comment .comment-respond {
- padding-left: 0;
- padding-right: 0;
- }
- .comments-wrapper + .comment-respond,
- .comment-navigation + .comment-respond {
- border-top: 1px solid #f3f3f3;
- padding-top: 1.5em;
- }
- .comment-form {
- margin-bottom: 1.5em;
- }
- .comment-form iframe {
- margin-bottom: 0;
- }
- .comment-subscription-form + .comment-subscription-form {
- margin-top: -1.5em;
- }
- .comment-reply-title small {
- display: block;
- font-family: Lato, sans-serif;
- font-size: 16px;
- font-size: 1rem;
- font-weight: normal;
- line-height: 1.5;
- }
- /* No Comments */
- .no-comments {
- color: #2c313f;
- font-family: Poppins, sans-serif;
- font-size: 32px;
- font-size: 2rem;
- font-weight: bold;
- line-height: 1.125;
- margin-bottom: 1.5rem;
- }
- /*--------------------------------------------------------------
- # Media
- --------------------------------------------------------------*/
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- embed,
- iframe,
- object,
- video,
- .fb_iframe_widget,
- .wp-audio-shortcode {
- margin-bottom: 1.5em;
- max-width: 100%;
- }
- p embed,
- p iframe,
- p object,
- p video {
- margin-bottom: 0;
- }
- /*--------------------------------------------------------------
- ## Captions
- --------------------------------------------------------------*/
- .wp-caption {
- margin-bottom: 1.5em;
- max-width: auto;
- }
- .wp-caption:not(.large-element) {
- max-width: 100%;
- }
- .wp-caption img[class*="wp-image-"] {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- .wp-caption .wp-caption-text {
- border-bottom: 1px solid #f3f3f3;
- margin: 0;
- }
- .widget-footer-top-area .wp-caption .wp-caption-text {
- border-bottom-color: rgba(255, 255, 255, 0.75);
- }
- .wp-caption-text {
- font-size: 13px;
- font-size: 0.8125rem;
- font-style: italic;
- line-height: 1.3847;
- padding: 0.1875rem 0;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- margin: -0.75em 0 0.75em;
- -webkit-transform: translateX(-0.75em);
- -moz-transform: translateX(-0.75em);
- -ms-transform: translateX(-0.75em);
- transform: translateX(-0.75em);
- width: calc(100% + 1.5em);
- }
- .gallery-item {
- display: inline-block;
- margin: 0;
- padding: 0.75em;
- text-align: center;
- vertical-align: top;
- width: 100%;
- }
- .gallery-columns-2 .gallery-item,
- .gallery-columns-4 .gallery-item,
- .gallery-columns-6 .gallery-item,
- .gallery-columns-8 .gallery-item {
- max-width: 50%;
- }
- .gallery-caption {
- display: block;
- }
- /*--------------------------------------------------------------
- ## Playlists
- --------------------------------------------------------------*/
- .site .wp-playlist {
- background: transparent !important;
- border-color: #f3f3f3;
- color: inherit;
- margin: 0 0 1.5em;
- padding: 0.75em;
- }
- .site .wp-playlist,
- .site .wp-playlist-caption,
- .site .wp-playlist-item-title,
- .site .wp-playlist-item-length {
- font-size: inherit;
- line-height: inherit;
- }
- .widget-footer-top-area .wp-playlist {
- border-color: rgba(255, 255, 255, 0.25);
- }
- .site .wp-playlist a {
- box-shadow: none;
- }
- .site .wp-playlist-current-item {
- margin-bottom: 0.75em;
- }
- .site .wp-playlist-tracks {
- margin-top: 0.75em;
- }
- .site .wp-playlist-light .wp-playlist-playing {
- background: transparent;
- color: inherit;
- }
- .site .wp-playlist-item {
- border-bottom-color: #f3f3f3;
- color: inherit;
- }
- .widget-footer-top-area .wp-playlist-item {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .site .wp-playlist-light .wp-playlist-caption {
- color: #2c313f;
- }
- .widget-footer-top-area .wp-playlist-light .wp-playlist-caption {
- color: rgba(255, 255, 255, 0.75);
- }
- .site .wp-playlist-light a.wp-playlist-caption:focus,
- .site .wp-playlist-light a.wp-playlist-caption:hover {
- color: #3e69dc;
- }
- .widget-footer-top-area .wp-playlist-light a.wp-playlist-caption:focus,
- .widget-footer-top-area .wp-playlist-light a.wp-playlist-caption:hover {
- color: #fff;
- }
- /*--------------------------------------------------------------
- # Jetpack
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Contact Form
- --------------------------------------------------------------*/
- .site-content .contact-form > div {
- margin-bottom: 1.5em;
- }
- .site-content .contact-form label {
- font-weight: normal;
- }
- .site-content .contact-form input[type="text"],
- .site-content .contact-form input[type="email"],
- .site-content .contact-form input[type="url"],
- .site-content .contact-form textarea {
- width: 100%;
- max-width: 100%;
- }
- .site-content .contact-form label span {
- color: inherit;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .site .slideshow-window {
- border-radius: 0;
- margin-bottom: 1.5em;
- }
- .site .slideshow-controls a,
- .site .tiled-gallery-item > a {
- box-shadow: none;
- }
- .site .tiled-gallery {
- margin-bottom: 1.5em;
- }
- .site .tiled-gallery-caption {
- background: #fff;
- color: #73757D;
- font-size: 13px;
- font-size: 0.8125rem;
- font-style: italic;
- line-height: 1.3847;
- padding: 0.1875rem 0;
- text-indent: 3px;
- }
- .instagram-media {
- margin: 0 0 1.5em !important;
- width: 100% !important;
- }
- /*--------------------------------------------------------------
- ## Infinite Scroll
- --------------------------------------------------------------*/
- /* Infinite Footer */
- .infinite-scroll .posts-navigation,
- .infinite-scroll.neverending .site-footer {
- display: none;
- }
- .infinity-end.neverending .site-footer {
- display: block;
- }
- #infinite-footer {
- background: #3e69dc;
- opacity: 0.75;
- z-index: 9999;
- }
- #infinite-footer:hover {
- opacity: 1;
- }
- #infinite-footer .container {
- background: transparent;
- border: 0;
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- padding: 0.692308em 3.692308em;
- }
- #infinite-footer .blog-info,
- #infinite-footer .blog-credits {
- line-height: inherit;
- overflow: visible;
- }
- #infinite-footer .blog-credits,
- #infinite-footer .blog-credits a,
- #infinite-footer .blog-info a {
- color: #fff;
- display: inline-block;
- font-size: inherit;
- font-weight: normal;
- text-decoration: none;
- }
- #infinite-footer .blog-info a:hover,
- #infinite-footer .blog-credits a:hover {
- box-shadow: 0 1px 0 0;
- color: #fff;
- text-decoration: none;
- }
- /* Infinite Handle */
- #infinite-handle {
- border-top: 1px solid #f3f3f3;
- padding: 1.5em;
- }
- .site-main #infinite-handle span {
- background: transparent;
- border-radius: 0;
- color: inherit;
- font-size: inherit;
- padding: 0;
- }
- .site-main #infinite-handle span button,
- .site-main #infinite-handle span button:focus,
- .site-main #infinite-handle span button:hover {
- background: #3e69dc;
- border: 0;
- border-radius: 5em;
- color: #fff;
- display: block;
- font-size: 13px;
- font-size: 0.8125rem;
- font-weight: bold;
- line-height: 1.3847;
- padding: 0.69231em 1.5em;
- text-align: center;
- text-transform: uppercase;
- width: 100%;
- }
- .site-main #infinite-handle span button:focus,
- .site-main #infinite-handle span button:hover {
- background: #2c313f;
- color: #fff;
- }
- /* Infinite Loader */
- .site-main .infinite-loader {
- border-top: 1px solid #f3f3f3;
- box-sizing: content-box;
- height: 5.25em;
- }
- .infinite-loader .spinner {
- left: 50% !important;
- top: 50% !important;
- z-index: 9998 !important;
- }
- .infinite-loader .spinner div {
- background: currentcolor !important;
- color: #3e69dc;
- }
- /* Infinite Wrap */
- .infinite-wrap {
- border-top: 1px solid #f3f3f3;
- padding-top: 1.5em;
- }
- .infinite-wrap .hentry {
- margin-top: -1.5em;
- }
- .post-type-archive-jetpack-testimonial .infinite-wrap {
- border: none;
- padding-left: 1.5em;
- padding-right: 1.5em;
- padding-top: 0;
- }
- .post-type-archive-jetpack-testimonial .infinite-wrap .hentry {
- margin-top: 0;
- }
- /*--------------------------------------------------------------
- ## Jetpack Contact Forms
- /*--------------------------------------------------------------*/
- .site-content .contact-form input[type="radio"],
- .site-content .contact-form input[type="checkbox"] {
- margin-bottom: 6px;
- margin-right: .3em;
- vertical-align: middle;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form label.checkbox-multiple,
- .site-content .contact-form label.radio {
- font-weight: normal;
- font-style: normal;
- margin-bottom: .1875em;
- float: none;
- font-size: inherit;
- }
- .site-content .contact-form label {
- margin-bottom: .1875em;
- }
- .site-content .contact-form > div {
- margin-bottom: .75em;
- }
- .site-content .contact-form textarea,
- .site-content .contact-form input[type='text'],
- .site-content .contact-form input[type='email'],
- .site-content .contact-form input[type='url'],
- .site-content .contact-form select {
- margin-bottom: .1875em;
- max-width: 100%;
- }
- /*--------------------------------------------------------------
- ## MailChimp Subscriber Popup
- --------------------------------------------------------------*/
- .sticky-header .mc-modal {
- z-index: 9999;
- }
- /*--------------------------------------------------------------
- ## PollDaddy
- --------------------------------------------------------------*/
- .PDS_Poll {
- margin-bottom: 1.5em;
- }
- /*--------------------------------------------------------------
- ## Recipes
- --------------------------------------------------------------*/
- .site-content .jetpack-recipe {
- margin: 0 0 1.5em;
- padding: 1.5em 1.5em 0;
- }
- .site-content .jetpack-recipe blockquote {
- margin-left: 0;
- }
- .site-content .jetpack-recipe ol,
- .site-content .jetpack-recipe ul {
- list-style-position: inside;
- }
- .site-content .jetpack-recipe-title {
- padding: 0;
- margin: 0 auto 1.5rem;
- border-bottom: 0;
- }
- .site-content .jetpack-recipe-content br {
- display: none;
- }
- .site-content .jetpack-recipe .jetpack-recipe-meta {
- font-size: inherit;
- line-height: inherit;
- overflow: inherit;
- }
- .site-content .jetpack-recipe-meta:before,
- .site-content .jetpack-recipe-meta:after {
- content: "";
- display: table;
- }
- .site-content .jetpack-recipe-meta:after {
- clear: both;
- }
- /*--------------------------------------------------------------
- ## Responsive Videos
- --------------------------------------------------------------*/
- .jetpack-video-wrapper {
- margin: 0 0 1.5em;
- }
- .jetpack-video-wrapper:empty {
- display: none;
- }
- .jetpack-video-wrapper video {
- margin-bottom: 0;
- }
- /*--------------------------------------------------------------
- ## Sharedaddy
- --------------------------------------------------------------*/
- .hentry #jp-post-flair {
- padding: 0;
- }
- div#jp-relatedposts,
- .sd-like.jetpack-likes-widget-wrapper,
- .sd-rating,
- .sd-sharing-enabled:not(#jp-post-flair) {
- margin: 0 0 1.5rem;
- }
- div#jp-relatedposts,
- .sd-like.jetpack-likes-widget-wrapper,
- .sd-sharing-enabled:not(#jp-post-flair) {
- border-bottom: 1px solid #f3f3f3;
- padding-bottom: 1.5rem;
- }
- .page-template-panel-page .hentry.has-post-thumbnail div#jp-relatedposts,
- .page-template-panel-page .hentry.has-post-thumbnail .sd-like.jetpack-likes-widget-wrapper,
- .page-template-panel-page .hentry.has-post-thumbnail .sd-sharing-enabled:not(#jp-post-flair) {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .page-template-panel-page .hentry.has-post-thumbnail .sd-rating + .sd-sharing-enabled:not(#jp-post-flair) {
- border-top-color: rgba(255, 255, 255, 0.25);
- }
- .sd-like.jetpack-likes-widget-wrapper iframe {
- margin-bottom: 0;
- }
- .hentry div.sd-rating h3.sd-title,
- .hentry div.sharedaddy h3.sd-title ,
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline {
- color: currentcolor;
- font-family: inherit;
- font-size: inherit;
- font-weight: normal;
- line-height: inherit;
- margin: 0;
- }
- .hentry .pd-rating + br,
- .hentry div.sharedaddy h3.sd-title:before,
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline em:before {
- display: none;
- }
- .hentry div.sharedaddy h3.sd-title {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- padding: 0.1875rem 0;
- text-transform: uppercase;
- }
- .hentry div.sharedaddy .sd-content ul,
- .hentry div.sharedaddy .sd-content .inner ul {
- margin-bottom: 0 !important;
- }
- .hentry .sd-sharing .share-count {
- line-height: 1 !important;
- }
- /* Related Posts */
- div#jp-relatedposts {
- clear: both;
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.3847;
- padding: 0 0 1.5rem;
- position: relative;
- width: 100%;
- }
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline {
- text-transform: uppercase;
- }
- div#jp-relatedposts .jp-relatedposts-post-context,
- div#jp-relatedposts .jp-relatedposts-post-date,
- div#jp-relatedposts .jp-relatedposts-post-title {
- padding: 0.1875rem 0;
- }
- div#jp-relatedposts .jp-relatedposts-post-excerpt {
- border: solid transparent;
- border-width: 0.1875rem 0;
- box-sizing: content-box;
- }
- div#jp-relatedposts .jp-relatedposts-post-excerpt:empty {
- display: none;
- }
- div#jp-relatedposts .jp-relatedposts-post-aoverlay {
- box-shadow: none;
- }
- div#jp-relatedposts .jp-relatedposts-post-aoverlay:focus {
- outline: 1px solid;
- }
- div#jp-relatedposts a:focus {
- background: transparent;
- }
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline em {
- font-weight: inherit;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items {
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items p {
- font-size: inherit;
- line-height: inherit;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post,
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context,
- .hentry #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,
- .hentry #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
- opacity: 1;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- padding: 0;
- margin-bottom: 1.5em;
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items.jp-relatedposts-items-minimal .jp-relatedposts-post {
- margin: 0;
- padding: 0;
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type,
- .hentry div#jp-relatedposts div.jp-relatedposts-items.jp-relatedposts-items-minimal .jp-relatedposts-post:last-of-type {
- margin-bottom: 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context:empty {
- display: none;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title {
- font-size: inherit;
- font-weight: inherit;
- letter-spacing: 0;
- line-height: inherit;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a {
- box-shadow: none;
- font-weight: inherit;
- text-decoration: none !important;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a:focus,
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a:hover {
- box-shadow: 0 1px 0 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-post-thumbs .jp-relatedposts-post-title {
- padding-top: 0.375rem;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items span.jp-relatedposts-post-title {
- font-size: inherit;
- line-height: inherit;
- }
- /* Ratings */
- .comment .pd-rating,
- .hentry .pd-rating {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1 !important;
- margin-bottom: 1.5rem;
- padding: 0.25em 0;
- }
- .sd-rating + .sd-sharing-enabled:not(#jp-post-flair) {
- border-top: 1px solid #f3f3f3;
- padding-top: 1.5rem;
- }
- .hentry .post-likes-widget {
- margin-bottom: 1.5em;
- position: inherit !important;
- top: auto !important;
- }
- .comments-area .comment-likes {
- height: 1.5em;
- }
- .comments-area .comment-likes .comment-like-link {
- box-shadow: none;
- line-height: 1.5;
- }
- .comments-area .comment-like-link:before,
- .comments-area .comment-likes-overlay span.icon {
- line-height: 1.2;
- }
- .comments-area .comment-likes .comment-like-feedback {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.5;
- }
- /*--------------------------------------------------------------
- ## Social Menu
- --------------------------------------------------------------*/
- .site .jetpack-social-navigation ul {
- font-size: 16px;
- font-size: 1rem;
- margin: 0 0 0.75em;
- }
- .site .jetpack-social-navigation ul:before,
- .site .jetpack-social-navigation ul:after {
- content: "";
- display: table;
- }
- .site .jetpack-social-navigation ul:after {
- clear: both;
- }
- .site .jetpack-social-navigation li {
- display: block;
- margin: 0 0.25em;
- text-align: center;
- }
- .site .jetpack-social-navigation li {
- float: left;
- }
- .site .jetpack-social-navigation li:first-child {
- margin-left: 0;
- }
- .site .jetpack-social-navigation li:last-child {
- margin-right: 0;
- }
- .site .jetpack-social-navigation a {
- border: 1px solid #f3f3f3;
- border-radius: 50%;
- color: #73757D;
- display: block;
- font-size: 16px;
- font-size: 1rem;
- height: 2em;
- position: relative;
- width: 2em;
- }
- .site .jetpack-social-navigation a:before {
- left: 50%;
- margin-left: -0.5em;
- margin-top: -0.5em;
- position: absolute;
- top: 50%;
- }
- .site .jetpack-social-navigation a:hover,
- .site .jetpack-social-navigation a:focus {
- background: #f3f3f3;
- color: #3e69dc;
- }
- /*--------------------------------------------------------------
- ## Testimonials
- --------------------------------------------------------------*/
- .site .testimonial-entry-mobile-first-item-row,
- .site .testimonial-entry-mobile-last-item-row {
- margin: 0;
- width: 100%;
- }
- .site .jetpack-testimonial,
- .site .testimonial-entry {
- border: 1px solid #f3f3f3;
- margin-bottom: 1.5em;
- padding: 1.5em 1.5em 0;
- }
- .page-template-panel-page .has-post-thumbnail .testimonial-entry,
- .widget-footer-top-area .testimonial-entry {
- border-color: rgba(255, 255, 255, 0.75);
- }
- .site .jetpack-testimonial.has-post-thumbnail,
- .site .testimonial-entry.has-testimonial-thumbnail {
- margin-bottom: 3.5em;
- }
- .site .testimonial-entry-content {
- font-style: italic;
- margin: 0 0 1.5em;
- }
- .site .testimonial-entry-content > br {
- display: none;
- }
- .site .testimonial-entry-title {
- color: #2c313f;
- display: block;
- font-weight: bold;
- margin-bottom: 1.5em;
- }
- .page-template-panel-page .hentry.has-post-thumbnail .testimonial-entry-title,
- .widget-footer-top-area .testimonial-entry-title {
- color: #fff;
- }
- .jetpack-testimonial + .jetpack-testimonial {
- margin-top: 0;
- }
- .testimonial-featured-image {
- display: block;
- width: 4em;
- }
- .site a.testimonial-featured-image {
- box-shadow: none;
- }
- .site .testimonial-featured-image {
- margin-left: auto;
- margin-right: auto;
- margin: 0 auto;
- }
- .testimonial-featured-image img {
- border-radius: 50%;
- margin-bottom: -2em;
- }
- .post-type-archive-jetpack-testimonial .page-header {
- border-bottom: 0;
- }
- .post-type-archive-jetpack-testimonial .page-title,
- .post-type-archive-jetpack-testimonial .taxonomy-description {
- margin-left: auto;
- margin-right: auto;
- max-width: 900px;
- max-width: 56.25rem;
- }
- .single-jetpack-testimonial .hentry-wrapper {
- padding-top: 1.5em;
- }
- /*--------------------------------------------------------------
- ## Widgets
- --------------------------------------------------------------*/
- /* Akismet */
- .widget_akismet_widget .a-stats {
- color: #2c313f;
- margin-bottom: 1.5em;
- width: 100%;
- }
- .widget_akismet_widget .a-stats a,
- .widget_akismet_widget .a-stats .count {
- color: inherit;
- font-size: inherit;
- line-height: inherit;
- }
- .widget_akismet_widget .a-stats a {
- background: transparent;
- border: 0;
- border-radius: 0;
- display: inline-block;
- padding: 0;
- text-align: inherit;
- width: auto;
- }
- .widget_akismet_widget .a-stats a:focus,
- .widget_akismet_widget .a-stats a:hover {
- background: transparent;
- color: #3e69dc;
- }
- .widget_akismet_widget .a-stats .count {
- display: inline-block;
- padding: 0;
- }
- .widget-footer-top-area .widget_akismet_widget .a-stats {
- color: rgba(255, 255, 255, 0.75);
- }
- .widget-footer-top-area .widget_akismet_widget .a-stats a:focus,
- .widget-footer-top-area .widget_akismet_widget .a-stats a:hover {
- color: #fff;
- }
- /* Blog Subscriptions */
- .jetpack_subscription_widget form,
- .jetpack_subscription_widget .success {
- border: 1px solid #f3f3f3;
- margin-bottom: 1.5em;
- padding: 1.5em 1.5em 0;
- }
- .widget-footer-top-area .jetpack_subscription_widget form,
- .widget-footer-top-area .jetpack_subscription_widget .success {
- border-color: rgba(255, 255, 255, 0.25);
- }
- /* Contact Info */
- .widget_contact_info .contact-map,
- .widget_contact_info > div:last-of-type {
- margin-bottom: 1.5em;
- }
- /* Display WordPress Posts */
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts {
- margin: 0;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 {
- font-size: inherit;
- line-height: inherit;
- margin: 0 auto 1.5em;
- padding: 0;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
- margin-bottom: 1.5em;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
- font-size: inherit;
- line-height: inherit !important;
- margin: 0 0 1.5em !important;
- }
- /* Goodreads */
- .widget_goodreads br,
- .widget_goodreads center {
- display: none;
- }
- .widget_goodreads h2[class^="gr_custom_header"] {
- font-size: inherit;
- line-height: inherit;
- margin: 0 auto 1.5em;
- }
- .widget_goodreads div[class^="gr_custom_title"] a,
- .widget_goodreads div[class^=gr_custom_container] a {
- color: #2c313f;
- font-weight: normal;
- }
- .widget-footer-top-area .widget_goodreads div[class^="gr_custom_title"] a,
- .widget-footer-top-area .widget_goodreads div[class^=gr_custom_container] a {
- color: rgba(255, 255, 255, 0.75);
- }
- .widget_goodreads div[class^="gr_custom_title"] a:focus,
- .widget_goodreads div[class^="gr_custom_title"] a:hover,
- .widget_goodreads div[class^=gr_custom_container] a:focus,
- .widget_goodreads div[class^=gr_custom_container] a:hover {
- color: #3e69dc;
- }
- .widget-footer-top-area .widget_goodreads div[class^="gr_custom_title"] a:focus,
- .widget-footer-top-area .widget_goodreads div[class^="gr_custom_title"] a:hover,
- .widget-footer-top-area .widget_goodreads div[class^=gr_custom_container] a:focus,
- .widget-footer-top-area .widget_goodreads div[class^=gr_custom_container] a:hover {
- color: #fff;
- }
- .widget_goodreads div[class^="gr_custom_container"] {
- background: transparent;
- border: 0;
- border-radius: 0;
- color: inherit;
- margin-bottom: 1.5em;
- padding: 0;
- }
- .widget_goodreads div[class^="gr_custom_each_container"] {
- border-bottom: 0;
- border-top: 1px solid #f3f3f3;
- padding: 0.75em 0;
- margin: 0;
- }
- .widget-footer-top-area .widget_goodreads div[class^="gr_custom_each_container"] {
- border-top-color: rgba(255, 255, 255, 0.25);
- }
- .widget_goodreads div[class^="gr_custom_each_container"]:last-of-type {
- border-bottom: 1px solid #f3f3f3;
- }
- .widget-footer-top-area .widget_goodreads div[class^="gr_custom_each_container"]:last-of-type {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .widget_goodreads div[class^="gr_custom_title"] {
- font-weight: bold;
- }
- .widget_goodreads div[class^="gr_custom_author"] {
- color: inherit;
- font-size: inherit;
- padding: 0;
- }
- /* Google+ Badge */
- .widget_googleplus_badge iframe {
- margin-bottom: 1.5em !important;
- }
- /* Gravatar Profile */
- .widget-grofile .grofile-thumbnail {
- border-radius: 50%;
- margin-bottom: 1.5em;
- }
- .widget-grofile h4 {
- margin: 0 0 1.5rem !important;
- }
- .widget-grofile .grofile-full-link {
- display: inline-block;
- }
- /* Image */
- .widget_image .jetpack-image-container {
- margin-bottom: 1.5em;
- }
- .widget_image .jetpack-image-container img {
- vertical-align: middle;
- }
- .widget_image .jetpack-image-container .wp-caption {
- margin-bottom: 0;
- }
- .widget_image .jetpack-image-container .wp-caption-text {
- padding: 0.1875rem 0;
- }
- /* RSS Links */
- .widget_rss_links ul {
- border-bottom: 1px solid #f3f3f3;
- list-style: none;
- margin-left: 0;
- }
- .widget-footer-top-area .widget_rss_links ul {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .widget_rss_links li {
- border-top: 1px solid #f3f3f3;
- padding: 0.75em 0;
- }
- .widget-footer-top-area .widget_rss_links li {
- border-color: rgba(255, 255, 255, 0.25);
- }
- .widget_rss_links a {
- border-bottom: 0;
- }
- .widget_rss_links p {
- border-top: 1px solid #f3f3f3;
- margin-bottom: 0;
- padding: 0.75em 0;
- }
- .widget-footer-top-area .widget_rss_links p {
- border-top-color: rgba(255, 255, 255, 0.25);
- }
- .widget_rss_links p:last-of-type {
- border-bottom: 1px solid #f3f3f3;
- margin-bottom: 1.5em;
- padding-bottom: 0.75em;
- }
- .widget-footer-top-area .widget_rss_links p:last-of-type {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .widget_rss_links p a + a {
- margin-left: 0.1865em;
- }
- .widget_rss_links img {
- vertical-align: middle;
- }
- /* Social Icons */
- .site .jetpack_widget_social_icons ul {
- font-size: 16px;
- font-size: 1rem;
- margin: 0 0 1em -0.25em;
- }
- .site .jetpack_widget_social_icons ul:before,
- .site .jetpack_widget_social_icons ul:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .site .jetpack_widget_social_icons ul:after {
- clear: both;
- }
- .site .jetpack_widget_social_icons li {
- display: block;
- float: left;
- margin: 0 0.25em 0.5em;
- text-align: center;
- }
- .site .jetpack_widget_social_icons li:last-child {
- margin-right: 0;
- }
- .site .jetpack_widget_social_icons a {
- border: 1px solid #f3f3f3;
- border-radius: 50%;
- color: #2c313f;
- display: block;
- font-size: 16px;
- font-size: 1rem;
- height: 2em;
- position: relative;
- width: 2em;
- }
- .widget-footer-top-area .jetpack_widget_social_icons a {
- border-color: rgba(255, 255, 255, 0.25);
- color: rgba(255, 255, 255, 0.75);
- }
- .site .jetpack_widget_social_icons a:hover,
- .site .jetpack_widget_social_icons a:focus {
- background: #f3f3f3;
- color: #3e69dc;
- }
- .widget-footer-top-area .jetpack_widget_social_icons a:hover,
- .widget-footer-top-area .jetpack_widget_social_icons a:focus {
- background: rgba(255, 255, 255, 0.25);
- border-color: transparent;
- color: #fff;
- }
- .site .jetpack_widget_social_icons ul.size-small a {
- height: 32px;
- padding: 7px;
- width: 32px;
- }
- .site .jetpack_widget_social_icons ul.size-small svg {
- height: 16px;
- width: 16px;
- }
- .site .jetpack_widget_social_icons ul.size-medium a {
- height: 48px;
- padding: 12px;
- width: 48px;
- }
- .site .jetpack_widget_social_icons ul.size-medium svg {
- height: 24px;
- width: 24px;
- }
- .site .jetpack_widget_social_icons ul.size-large a {
- height: 64px;
- padding: 16px;
- width: 64px;
- }
- .site .jetpack_widget_social_icons ul.size-large svg {
- height: 32px;
- width: 32px;
- }
- /* Social Media Icons */
- .site .widget_wpcom_social_media_icons_widget ul {
- font-size: 16px;
- font-size: 1rem;
- margin: 0 0 1em -0.25em;
- }
- .site .widget_wpcom_social_media_icons_widget ul:before,
- .site .widget_wpcom_social_media_icons_widget ul:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .site .widget_wpcom_social_media_icons_widget ul:after {
- clear: both;
- }
- .site .widget_wpcom_social_media_icons_widget li {
- display: block;
- float: left;
- margin: 0 0.25em 0.5em;
- text-align: center;
- }
- .site .widget_wpcom_social_media_icons_widget li:last-child {
- margin-right: 0;
- }
- .site .widget_wpcom_social_media_icons_widget a {
- border: 1px solid #f3f3f3;
- border-radius: 50%;
- color: #2c313f;
- display: block;
- font-size: 16px;
- font-size: 1rem;
- height: 2em;
- position: relative;
- width: 2em;
- }
- .widget-footer-top-area .widget_wpcom_social_media_icons_widget a {
- border-color: rgba(255, 255, 255, 0.25);
- color: rgba(255, 255, 255, 0.75);
- }
- .site .widget_wpcom_social_media_icons_widget a:before {
- left: 50%;
- margin-left: -0.5em;
- margin-top: -0.5em;
- position: absolute;
- top: 50%;
- }
- .site .widget_wpcom_social_media_icons_widget a:hover,
- .site .widget_wpcom_social_media_icons_widget a:focus {
- background: #f3f3f3;
- color: #3e69dc;
- }
- .widget-footer-top-area .widget_wpcom_social_media_icons_widget a:hover,
- .widget-footer-top-area .widget_wpcom_social_media_icons_widget a:focus {
- background: rgba(255, 255, 255, 0.25);
- border-color: transparent;
- color: #fff;
- }
- /* Top Posts & Pages */
- .widget_top-posts ul {
- border-bottom: 1px solid #f3f3f3;
- list-style: none;
- margin-left: 0;
- }
- .widget-footer-top-area .widget_top-posts ul {
- border-bottom-color: rgba(255, 255, 255, 0.25);
- }
- .widget_top-posts li {
- border-top: 1px solid #f3f3f3;
- padding: 0.75em 0;
- vertical-align: middle;
- }
- .widget_top-posts .widgets-list-layout li {
- margin-bottom: 0;
- }
- .widget-footer-top-area .widget_top-posts li {
- border-top-color: rgba(255, 255, 255, 0.25);
- }
- .widget_top-posts .widgets-grid-layout {
- margin-bottom: 1.5em;
- }
- /* Twitter Timeline */
- .widget_twitter_timeline iframe {
- margin-bottom: 1.5em !important;
- }
- /*--------------------------------------------------------------
- # Extra Classes
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Buttons
- --------------------------------------------------------------*/
- .button {
- background: #3e69dc;
- border: 0;
- border-radius: 5em;
- cursor: pointer;
- display: inline-block;
- font-size: 13px;
- font-size: 0.8125rem;
- font-weight: bold;
- letter-spacing: 0.0625em;
- line-height: 1.3847;
- padding: 0.69231em 1.5em;
- text-align: center;
- text-shadow: none;
- text-transform: uppercase;
- }
- .button,
- .button:focus,
- .button:hover {
- color: #fff;
- }
- .button:focus,
- .button:hover {
- background: #2c313f;
- }
- .button.minimal,
- .button.alt {
- background: transparent;
- color: #3e69dc;
- position: relative;
- }
- .button.minimal:before,
- .button.alt:before {
- border: 2px solid;
- border-radius: 5em;
- content: "";
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- }
- input.button.alt[type="submit"] {
- border: 2px solid;
- }
- .button.minimal:focus,
- .button.minimal:hover,
- .button.alt:focus,
- .button.alt:hover {
- background: #3e69dc;
- box-shadow: none;
- color: #fff;
- }
- .button.minimal:focus:before,
- .button.minimal:hover:before,
- .button.alt:focus:before,
- .button.alt:hover:before {
- display: none;
- }
- /* Featured Content, Panel Page Template & Widget Footer Top Area */
- .featured-content .hentry.has-post-thumbnail .button,
- .page-template-panel-page .hentry.has-post-thumbnail .button {
- background: #3e69dc;
- color: #fff;
- }
- .widget-footer-top-area .button {
- background: #fff;
- color: #3e69dc;
- }
- .featured-content .hentry.has-post-thumbnail .button:focus,
- .featured-content .hentry.has-post-thumbnail .button:hover,
- .page-template-panel-page .hentry.has-post-thumbnail .button:focus,
- .page-template-panel-page .hentry.has-post-thumbnail .button:hover {
- background: #fff;
- color: #3e69dc;
- }
- .widget-footer-top-area .button:focus,
- .widget-footer-top-area .button:hover {
- background: rgba(255, 255, 255, 0.25);
- color: #fff;
- }
- .featured-content .hentry.has-post-thumbnail .button.minimal,
- .page-template-panel-page .hentry.has-post-thumbnail .button.minimal,
- .widget-footer-top-area .button.minimal,
- .featured-content .hentry.has-post-thumbnail .button.alt,
- .page-template-panel-page .hentry.has-post-thumbnail .button.alt,
- .widget-footer-top-area .button.alt {
- background: transparent;
- color: #fff;
- }
- .featured-content .hentry.has-post-thumbnail .button.minimal,
- .page-template-panel-page .hentry.has-post-thumbnail .button.minimal,
- .featured-content .hentry.has-post-thumbnail .button.alt,
- .page-template-panel-page .hentry.has-post-thumbnail .button.alt {
- text-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
- }
- .featured-content .hentry.has-post-thumbnail .button.minimal:focus,
- .featured-content .hentry.has-post-thumbnail .button.minimal:hover,
- .page-template-panel-page .hentry.has-post-thumbnail .button.minimal:focus,
- .page-template-panel-page .hentry.has-post-thumbnail .button.minimal:hover,
- .featured-content .hentry.has-post-thumbnail .button.alt:focus,
- .featured-content .hentry.has-post-thumbnail .button.alt:hover,
- .page-template-panel-page .hentry.has-post-thumbnail .button.alt:focus,
- .page-template-panel-page .hentry.has-post-thumbnail .button.alt:hover {
- background: #3e69dc;
- color: #fff;
- text-shadow: none;
- }
- .widget-footer-top-area .button.alt:focus,
- .widget-footer-top-area .button.alt:hover {
- background: #fff;
- color: #3e69dc;
- }
- /* Main Menu */
- .main-navigation .button {
- border: 0;
- display: block;
- margin-bottom: 0.75em;
- margin-top: 0.75em;
- padding: 0;
- position: relative;
- }
- .main-navigation .button:before {
- background: #f3f3f3;
- content: "";
- display: block;
- height: 1px;
- -webkit-transform: translateY(-0.75em);
- -moz-transform: translateY(-0.75em);
- -ms-transform: translateY(-0.75em);
- transform: translateY(-0.75em);
- width: 100%;
- }
- .main-navigation .button a {
- border-radius: 5em;
- padding: 0.69231em 1.5em;
- }
- .main-navigation .primary-menu > .button a {
- border: 0;
- }
- .main-navigation .button a,
- .main-navigation .button a:focus,
- .main-navigation .button a:hover,
- .main-navigation .button.minimal a:focus,
- .main-navigation .button.minimal a:hover,
- .main-navigation .button.alt a:focus,
- .main-navigation .button.alt a:hover {
- color: #fff;
- }
- .main-navigation .button.minimal a:focus,
- .main-navigation .button.alt a:focus {
- background: #3e69dc;
- }
- .main-navigation .button.minimal a,
- .main-navigation .button.alt a {
- color: #3e69dc;
- }
- /*--------------------------------------------------------------
- ## Columns
- --------------------------------------------------------------*/
- .column-1-2,
- .column-1-3 {
- float: none;
- width: 100%;
- }
- /*--------------------------------------------------------------
- # Responsive
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## x >= 600px
- --------------------------------------------------------------*/
- @media screen and (min-width: 600px) {
- /* Forms */
- .error-404 .search-form {
- padding-bottom: 3em;
- }
- /* Layout */
- .entry-hero-wrapper,
- .hentry-wrapper,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper,
- .site-footer-wrapper,
- .site-header-wrapper,
- .widget-area-wrapper {
- width: 80%;
- width: calc(100% - 6em);
- }
- .site-content-wrapper .widget-area {
- padding: 3em 3em 0;
- }
- .site-footer {
- padding-bottom: 3em;
- padding-top: 3em;
- }
- .widget-footer-area {
- padding-top: 3em;
- }
- /* Navigation */
- .comment-navigation a,
- .post-navigation a,
- .posts-navigation a {
- padding-left: 3em;
- padding-right: 3em;
- }
- .admin-bar .back-top {
- top: 46px;
- }
- /* Widgets */
- .widget {
- padding-bottom: 1.5em;
- }
- /* Content */
- .hentry {
- padding-top: 3em;
- padding-bottom: 1.5em;
- }
- .page-content,
- .page-header {
- padding: 3em 3em 1.5em;
- }
- .entry-hero,
- .site-content-wrapper .has-post-thumbnail .entry-header {
- min-height: 40vh;
- }
- .site-content-wrapper .has-post-thumbnail .entry-header {
- margin-bottom: 3em;
- margin-left: -3em;
- margin-top: -3em;
- width: 100%;
- width: calc(100% + 6em);
- }
- .entry-hero-wrapper,
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper {
- padding-bottom: 3em;
- padding-top: 3em;
- }
- .entry-author {
- margin-top: 1.5em;
- }
- .error-404 .widget:last-of-type {
- padding-bottom: 0;
- }
- .comments-area {
- padding-top: 3em;
- }
- .comments-wrapper {
- padding-bottom: 1.5em;
- padding-left: 3em;
- padding-right: 3em;
- }
- .comment-list > li {
- margin-bottom: 3em;
- padding-bottom: 1.5em;
- }
- .comment-list > li:last-child {
- padding-bottom: 0;
- }
- .comment-respond {
- padding-bottom: 1.5em;
- padding-left: 3em;
- padding-right: 3em;
- }
- .comments-wrapper + .comment-respond,
- .comment-navigation + .comment-respond {
- padding-top: 3em;
- }
- /* Media */
- .gallery-columns-3 .gallery-item,
- .gallery-columns-6 .gallery-item,
- .gallery-columns-9 .gallery-item {
- max-width: 33.33%;
- }
- .gallery-columns-4 .gallery-item,
- .gallery-columns-8 .gallery-item {
- max-width: 25%;
- }
- .gallery-columns-5 .gallery-item {
- max-width: 20%;
- }
- /* Jetpack */
- #infinite-handle {
- padding: 3em;
- }
- .site-main .infinite-loader {
- height: 8.25em;
- }
- .post-type-archive-jetpack-testimonial .infinite-wrap {
- margin-top: -1.5em;
- padding-bottom: 1.5em;
- padding-left: 3em;
- padding-right: 3em;
- }
- .site .testimonial-entry-column-2 {
- width: 47%;
- width: calc(50% - 0.75em);
- }
- .site .testimonial-entry-column-2.testimonial-entry-first-item-row {
- margin-right: 0.75em;
- }
- .site .testimonial-entry-column-2.testimonial-entry-last-item-row {
- margin-left: 0.75em;
- }
- .post-type-archive-jetpack-testimonial .page-header {
- padding-bottom: 0;
- }
- .post-type-archive-jetpack-testimonial .hentry-wrapper {
- padding-bottom: 1.5em;
- }
- .single-jetpack-testimonial .hentry-wrapper {
- padding-bottom: 1.5em;
- padding-top: 3em;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 768px
- --------------------------------------------------------------*/
- @media screen and (min-width: 768px) {
- /* Typography */
- body,
- button,
- input,
- select,
- textarea {
- font-size: 20px;
- font-size: 1.25rem;
- }
- .entry-footer,
- .entry-meta,
- .site-info,
- .widget-small,
- .widget-small input,
- .widget-small select,
- .widget-small textarea {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin: 0 0 1.875rem;
- }
- .widget-small h1,
- .widget-small h2,
- .widget-small h3,
- .widget-small h4,
- .widget-small h5,
- .widget-small h6 {
- margin-bottom: 1.40625rem;
- }
- h1,
- .entry-title,
- .post-type-archive-jetpack-testimonial .page-title {
- font-size: 49px;
- font-size: 3.0625rem;
- line-height: 1.2245;
- }
- .widget-small h1 {
- font-size: 40px;
- font-size: 2.5rem;
- line-height: 1.125;
- }
- h2,
- .comment-reply-title,
- .comments-title {
- font-size: 40px;
- font-size: 2.5rem;
- line-height: 1.125;
- }
- .widget-small h2 {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.0547;
- }
- h3,
- .page-title,
- .widgettitle,
- .widget-title {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.1719;
- }
- .widget-small h3,
- .widget-small .widgettitle,
- .widget-small .widget-title {
- font-size: 25px;
- font-size: 1.5625rem;
- line-height: 1.125;
- }
- h4,
- .site-title {
- font-size: 25px;
- font-size: 1.5625rem;
- line-height: 1.2;
- }
- .widget-small h4 {
- font-size: 20px;
- font-size: 1.25rem;
- line-height: 1.125;
- }
- h5 {
- font-size: 20px;
- font-size: 1.25rem;
- line-height: 1.5;
- }
- .widget-small h5 {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- }
- h6 {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- }
- .widget-small h6 {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.2981;
- }
- .widget-small address,
- .widget-small p,
- .widget-small pre {
- margin-bottom: 1.40625em;
- }
- blockquote {
- font-size: 25px;
- font-size: 1.5625rem;
- line-height: 1.2;
- margin-bottom: 1.875rem;
- padding-left: 1.875rem;
- }
- .widget-small blockquote {
- font-size: 20px;
- font-size: 1.25rem;
- line-height: 1.125;
- margin-bottom: 1.40625rem;
- padding-left: 1.40625rem;
- }
- blockquote * {
- margin-bottom: 1.875rem;
- }
- .widget-small blockquote * {
- margin-bottom: 1.40625rem;
- }
- .widget-small pre {
- padding: 1.40625em;
- }
- /* Elements */
- .widget-small hr {
- margin-bottom: 1.40625em;
- }
- .widget-small ul,
- .widget-small ol {
- margin-bottom: 1.40625em;
- }
- .widget-small li > ul,
- .widget-small li > ol {
- margin-bottom: 0;
- margin-left: 1.40625em;
- }
- .widget-small dl {
- margin-bottom: 1.40625em;
- }
- .widget-small dd {
- margin-left: 1.40625em;
- margin-right: 1.40625em;
- }
- .widget-small table {
- margin-bottom: 1.40625em;
- }
- /* Forms */
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .widget-small button,
- .widget-small input[type="button"],
- .widget-small input[type="reset"],
- .widget-small input[type="submit"] {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.1539;
- padding-bottom: 0.865384em;
- padding-top: 0.865384em;
- }
- .widget-small input[type="text"],
- .widget-small input[type="email"],
- .widget-small input[type="url"],
- .widget-small input[type="password"],
- .widget-small input[type="search"],
- .widget-small input[type="number"],
- .widget-small input[type="tel"],
- .widget-small input[type="range"],
- .widget-small input[type="date"],
- .widget-small input[type="month"],
- .widget-small input[type="week"],
- .widget-small input[type="time"],
- .widget-small input[type="datetime"],
- .widget-small input[type="datetime-local"],
- .widget-small input[type="color"],
- .widget-small select,
- .widget-small textarea {
- padding: 0.703125em;
- }
- .widget-small .search-form .search-field {
- padding-right: 3.515625em;
- }
- .search-form .search-submit {
- height: 2.8125em;
- width: 2.8125em;
- }
- /* Layout */
- .site-content-wrapper .widget-area,
- .widget-footer-bottom-area {
- padding-bottom: 0.75em;
- }
- .widget-footer-area.column-2 .widget {
- float: left;
- width: 50%;
- }
- .widget-footer-area.column-2 .widget:nth-child(odd) {
- clear: left;
- padding-right: 1.5em;
- }
- .widget-footer-area.column-2 .widget-small:nth-child(odd) {
- padding-right: 1.875em;
- }
- .widget-footer-area.column-2 .widget:nth-child(even) {
- padding-left: 1.5em;
- }
- .widget-footer-area.column-2 .widget-small:nth-child(even) {
- padding-left: 1.875em;
- }
- .wp-custom-logo .site-title {
- margin-top: 0.8rem;
- }
- .custom-logo {
- max-width: 210px;
- }
- /* Navigation */
- .main-navigation .menu-item-has-children > a {
- margin-right: 3em;
- }
- .dropdown-toggle {
- top: 0.625em;
- }
- .post-navigation .meta-nav {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding: 0.234375em 0;
- }
- .post-navigation .post-title {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.1719;
- }
- .comment-navigation .nav-previous a:before,
- .posts-navigation .nav-previous a:before,
- .comment-navigation .nav-next a:after,
- .posts-navigation .nav-next a:after {
- vertical-align: middle;
- }
- /* Alignments */
- .widget-small .alignleft {
- margin-right: 1.40625em;
- }
- .widget-small .alignright {
- margin-left: 1.40625em;
- }
- /* Widgets */
- .widget-small {
- padding-bottom: 1.40625em;
- }
- .widget-small.widget_calendar caption {
- margin-bottom: 1.40625em;
- }
- .widget-small.widget_archive li,
- .widget-small.widget_categories li,
- .widget-small.widget_links li,
- .widget-small.widget_meta li,
- .widget-small.widget_nav_menu li,
- .widget-small.widget_pages li,
- .widget-small.widget_recent_comments li,
- .widget-small.widget_recent_entries li,
- .widget-small.widget_rss li {
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .widget-small.widget_categories .children,
- .widget-small.widget_nav_menu .sub-menu,
- .widget-small.widget_pages .children {
- margin-bottom: -0.703125em;
- margin-left: 0;
- margin-right: 0;
- margin-top: 0.703125em;
- }
- .widget-small.widget_archive select,
- .widget-small.widget_categories select {
- margin-bottom: 1.40625em;
- }
- .widget-small.widget_tag_cloud .tagcloud {
- padding-bottom: 1.15625em;
- }
- /* Content */
- .entry-hero,
- .site-content-wrapper .has-post-thumbnail .entry-header {
- min-height: 55vh;
- }
- .entry-meta {
- margin-bottom: 0.46875em;
- }
- .entry-footer > span,
- .entry-meta > span {
- display: inline-block;
- padding: 0.23438em 0;
- }
- .entry-footer > span:last-of-type {
- margin-bottom: 1.875em;
- }
- .author-title {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-top: 0.234375em;
- }
- .author-name {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.1719;
- margin-bottom: 1.875rem;
- padding-top: 0.234375rem;
- }
- .page-links {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- margin-bottom: 1.5625em;
- }
- .page-links a,
- .page-links > span {
- height: 1.875em;
- line-height: 1.875em;
- margin-bottom: 0.3125em;
- margin-right: 0.3125em;
- width: 1.875em;
- }
- .comment-reply-title small {
- font-size: 20px;
- font-size: 1.25rem;
- }
- .comment-metadata {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding: 0.234375em 0;
- }
- .no-comments {
- font-size: 40px;
- font-size: 2.5rem;
- line-height: 1.125;
- margin-bottom: 1.875rem;
- }
- /* Media */
- .widget-small embed,
- .widget-small iframe,
- .widget-small object,
- .widget-small video,
- .widget-small .fb_iframe_widget,
- .widget-small .wp-audio-shortcode {
- margin-bottom: 1.40625em;
- }
- .widget-small p embed,
- .widget-small p iframe,
- .widget-small p object,
- .widget-small p video {
- margin-bottom: 0;
- }
- .widget-small .wp-caption {
- margin-bottom: 1.40625em;
- }
- .wp-caption-text {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.234375em;
- padding-top: 0.234375em;
- }
- .widget-small .wp-caption-text {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.2981;
- padding-bottom: 0.17578125em;
- padding-top: 0.17578125em;
- }
- .widget-small .gallery {
- margin: -0.703125em 0 0.703125em;
- -webkit-transform: translateX(-0.703125em);
- -moz-transform: translateX(-0.703125em);
- -ms-transform: translateX(-0.703125em);
- transform: translateX(-0.703125em);
- width: calc(100% + 1.40625em);
- }
- .gallery-columns-6 .gallery-item {
- max-width: 16.66%;
- }
- .gallery-columns-7 .gallery-item {
- max-width: 14.28%;
- }
- .gallery-columns-8 .gallery-item {
- max-width: 12.5%;
- }
- .gallery-columns-9 .gallery-item {
- max-width: 11.11%;
- }
- .widget-small .gallery-item {
- padding: 0.703125em;
- }
- .widget-small .wp-playlist {
- margin-bottom: 1.40625em;
- padding: 0.703125em;
- }
- .widget-small .wp-playlist-current-item {
- margin-bottom: 0.703125em;
- }
- .widget-small .wp-playlist-tracks {
- margin-top: 0.703125em;
- }
- /* Jetpack */
- .widget-small .contact-form > div {
- margin-bottom: 1.40625em;
- }
- .widget-small .slideshow-window,
- .widget-small .tiled-gallery {
- margin-bottom: 1.40625em;
- }
- .site .tiled-gallery-caption {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.234375em;
- padding-top: 0.234375em;
- }
- .widget-small .tiled-gallery-caption {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.2981;
- padding-bottom: 0.17578125em;
- padding-top: 0.17578125em;
- }
- .widget-small .instagram-media {
- margin-bottom: 1.40625em !important;
- }
- #infinite-footer .container {
- background: transparent;
- border: 0;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding: 0.703125em 3.75em;
- }
- .site-main #infinite-handle span button,
- .site-main #infinite-handle span button:focus,
- .site-main #infinite-handle span button:hover {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .widget-small .PDS_Poll {
- margin-bottom: 1.40625em;
- }
- .widget-small .jetpack-video-wrapper {
- margin-bottom: 1.40625em;
- }
- div#jp-relatedposts,
- .sd-like.jetpack-likes-widget-wrapper,
- .sd-rating,
- .sd-sharing-enabled:not(#jp-post-flair) {
- margin-bottom: 1.875rem;
- }
- div#jp-relatedposts,
- .sd-like.jetpack-likes-widget-wrapper,
- .sd-sharing-enabled:not(#jp-post-flair) {
- padding-bottom: 1.875rem;
- }
- .hentry div.sharedaddy h3.sd-title {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.234375rem;
- padding-top: 0.234375rem;
- }
- div#jp-relatedposts {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 1.875rem;
- }
- div#jp-relatedposts .jp-relatedposts-post-context,
- div#jp-relatedposts .jp-relatedposts-post-date,
- div#jp-relatedposts .jp-relatedposts-post-title {
- padding-bottom: 0.234375rem;
- padding-top: 0.234375rem;
- }
- div#jp-relatedposts .jp-relatedposts-post-excerpt {
- border-width: 0.234375rem 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- float: left;
- margin-bottom: 0;
- width: 33.333333%;
- padding-right: 1.25rem;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post:nth-of-type(2) {
- padding-left: 0.625rem;
- padding-right: 0.625rem;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post:last-of-type {
- padding-left: 1.25rem;
- padding-right: 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-post-thumbs .jp-relatedposts-post-title {
- padding-top: 0.46875rem;
- }
- .comment .pd-rating,
- .hentry .pd-rating {
- margin-bottom: 1.875rem;
- padding-bottom: 0.4375em;
- padding-top: 0.4375em;
- }
- .sd-rating + .sd-sharing-enabled:not(#jp-post-flair) {
- padding-top: 1.875rem;
- }
- .widget-small .testimonial-entry {
- margin-bottom: 1.40625em;
- padding: 1.40625em 1.40625em 0;
- }
- .widget-small .testimonial-entry.has-testimonial-thumbnail {
- margin-bottom: 3.40625em;
- }
- .widget-small .testimonial-entry-content,
- .widget-small .testimonial-entry-title {
- margin-bottom: 1.40625em;
- }
- .site .testimonial-entry-mobile-first-item-row {
- clear: none;
- }
- .site .testimonial-entry-first-item-row {
- clear: left;
- }
- .site .testimonial-entry-column-3 {
- margin-left: 0.5em;
- margin-right: 0.5em;
- width: 31%;
- width: calc(33.333333% - 1em);
- }
- .site .testimonial-entry-column-3.testimonial-entry-first-item-row {
- margin-left: 0;
- margin-right: 1em;
- }
- .site .testimonial-entry-column-3.testimonial-entry-last-item-row {
- margin-left: 1em;
- margin-right: 0;
- }
- .widget-small.jetpack_subscription_widget form,
- .widget-small.jetpack_subscription_widget .success,
- .widget-small.widget_akismet_widget .a-stats,
- .widget-small.widget_contact_info .contact-map,
- .widget-small.widget_contact_info > div:last-of-type,
- .widget-small.widget_goodreads h2[class^="gr_custom_header"],
- .widget-small.widget_goodreads div[class^="gr_custom_container"],
- .widget-small.widget-grofile .grofile-thumbnail,
- .widget-small.widget_image .jetpack-image-container,
- .widget-small.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4,
- .widget-small.widget_jetpack_display_posts_widget .jetpack-display-remote-posts img,
- .widget-small.widget_top-posts .widgets-grid-layout {
- margin-bottom: 1.40625em;
- }
- .widget-small.widget_wpcom_social_media_icons_widget ul {
- margin-bottom: 0.90625em;
- }
- .widget-small.widget_googleplus_badge iframe,
- .widget-small.widget_jetpack_display_posts_widget .jetpack-display-remote-posts p,
- .widget-small.widget_twitter_timeline iframe {
- margin-bottom: 1.40625em !important;
- }
- .widget-grofile h4 {
- margin-bottom: 1.875rem !important;
- }
- .widget-small.widget-grofile h4 {
- margin-bottom: 1.40625rem !important;
- }
- .widget-small.widget_image .jetpack-image-container .wp-caption {
- margin-bottom: 0;
- }
- .widget-small.jetpack_subscription_widget form,
- .widget-small.jetpack_subscription_widget .success {
- padding: 1.40625em 1.40625em 0;
- }
- .widget-small.widget_goodreads div[class^="gr_custom_each_container"],
- .widget-small.widget_rss_links li,
- .widget-small.widget_rss_links p,
- .widget-small.widget_top-posts li {
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .widget-small.widget_rss_links p:last-of-type {
- padding-bottom: 0.703125em;
- }
- /* Extra Classes */
- .button {
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.40625;
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .widget-small .button {
- font-size: 13px;
- font-size: 0.8125rem;
- line-height: 1.1539;
- padding-bottom: 0.865384em;
- padding-top: 0.865384em;
- }
- .main-navigation .button a {
- padding-bottom: 0.703125em;
- padding-top: 0.703125em;
- }
- .column-1-2 {
- float: left;
- width: 50%;
- }
- .column-1-2.column-first {
- padding-right: 0.75em;
- }
- .column-1-2.column-last {
- padding-left: 0.75em;
- }
- .column-last + * {
- clear: left;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 896px
- --------------------------------------------------------------*/
- @media screen and (min-width: 896px) {
- /* Layout */
- .no-sidebar .site-content-wrapper {
- max-width: 100%;
- }
- body:not(.no-sidebar) .site-content-wrapper,
- .no-sidebar .comments-area {
- width: calc(100% - 6em);
- }
- .no-sidebar .comments-area {
- margin-left: auto;
- margin-right: auto;
- max-width: 900px;
- max-width: 56.25rem;
- }
- body:not(.no-sidebar) .content-area {
- -webkit-order: 1;
- -ms-flex-order: 1;
- order: 1;
- padding-right: 1em;
- width: 66.666666%;
- }
- .blog .content-area {
- padding-top: 1.5em;
- }
- .archive .content-area,
- .blog .content-area,
- .search .content-area {
- padding-bottom: 3em;
- }
- .site-content-wrapper .widget-area {
- border-top: 0;
- -webkit-order: 2;
- -ms-flex-order: 2;
- order: 2;
- padding-bottom: 2.25em;
- padding-left: 2em;
- padding-right: 0;
- padding-top: 4.5em;
- width: 33.333333%;
- }
- body:not(.no-sidebar) .content-area .hentry-wrapper {
- width: 100%;
- }
- .site-header-wrapper {
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- width: 90%;
- width: calc(100% - 3em);
- }
- .site-menu {
- display: block;
- -webkit-flex: 0 1 auto;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- }
- .sticky-header .site-content {
- padding-top: 4.75em;
- }
- .sticky-header .site-header {
- position: fixed;
- -webkit-transition: all 250ms ease-in-out;
- -moz-transition: all 250ms ease-in-out;
- transition: all 250ms ease-in-out;
- z-index: 9999;
- }
- .sticky-header .main-navigation,
- .sticky-header .site-branding {
- -webkit-transition: margin-top 250ms ease-in-out;
- -moz-transition: margin-top 250ms ease-in-out;
- transition: margin-top 250ms ease-in-out;
- }
- .scrolling .site-header {
- padding-bottom: 0.75em;
- }
- .scrolling .main-navigation,
- .scrolling .site-branding {
- margin-top: 0.75em;
- }
- .custom-logo {
- max-width: 240px;
- }
- .site-footer-wrapper {
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .site-info {
- margin: 0 auto 0 0;
- -webkit-order: 1;
- -ms-flex-order: 1;
- order: 1;
- }
- .jetpack-social-navigation {
- -webkit-order: 2;
- -ms-flex-order: 2;
- order: 2;
- }
- .widget-footer-area.column-3 .widget {
- float: left;
- width: 33.333333%;
- }
- .widget-footer-area.column-3 .widget:nth-child(3n+1) {
- clear: left;
- padding-right: 2em;
- }
- .widget-footer-area.column-3 .widget-small:nth-child(3n+1) {
- padding-right: 2.5em;
- }
- .widget-footer-area.column-3 .widget:nth-child(3n+2) {
- padding-left: 1em;
- padding-right: 1em;
- }
- .widget-footer-area.column-3 .widget-small:nth-child(3n+2) {
- padding-left: 1.25em;
- padding-right: 1.25em;
- }
- .widget-footer-area.column-3 .widget:nth-child(3n+3) {
- padding-left: 2em;
- }
- .widget-footer-area.column-3 .widget-small:nth-child(3n+3) {
- padding-left: 2.5em;
- }
- /* Navigation */
- .dropdown-toggle,
- .main-navigation ul .dropdown-toggle.toggled-on,
- .menu-toggle {
- display: none;
- }
- .main-navigation.toggled-on ul ul {
- display: block;
- }
- .main-navigation .primary-menu {
- border-bottom: 0;
- }
- .main-navigation ul,
- .main-navigation.toggled-on ul {
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.5;
- }
- .main-navigation li {
- border: 0;
- margin: 0 0.75em;
- position: relative;
- }
- .main-navigation .primary-menu > li:first-child {
- margin-left: 0;
- }
- .main-navigation .primary-menu > li:last-child {
- margin-right: 0;
- }
- .main-navigation .primary-menu > li > a {
- border-color: transparent;
- border-style: solid;
- border-width: 0 0 0.125em;
- }
- .main-navigation a {
- display: block;
- padding: 0.25em 0;
- }
- .main-navigation .menu-item-has-children > a {
- margin-right: 0;
- padding-right: 20px;
- }
- .main-navigation ul ul .menu-item-has-children > a {
- padding-right: 28px;
- padding-right: calc(0.75em + 20px);
- }
- .main-navigation ul ul .menu-item-has-children > a:after {
- content: "\f432";
- }
- .main-navigation .menu-item-has-children > a:after {
- display: block;
- }
- .main-navigation ul ul {
- border-style: solid;
- border-width: 1px 1px 0;
- float: left;
- margin: 0;
- position: absolute;
- top: 100%;
- left: -999em;
- width: 12.5em;
- z-index: 99999;
- }
- .main-navigation ul ul ul {
- top: -1px;
- }
- .main-navigation ul ul a {
- padding: 0.75em;
- }
- .main-navigation ul ul li {
- border-bottom: 1px solid;
- margin: 0;
- width: 100%;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li.focus > ul {
- left: auto;
- right: 0;
- }
- .main-navigation ul ul li:hover > ul,
- .main-navigation ul ul li.focus > ul {
- left: auto;
- right: 100%;
- }
- /* Move dropdowns falling offscreen to the right */
- .main-navigation ul li:hover > ul.offscreen,
- .main-navigation ul li.focus > ul.offscreen {
- left: 0;
- }
- .main-navigation ul ul li:hover > ul.offscreen,
- .main-navigation ul ul li.focus > ul.offscreen,
- .main-navigation ul ul ul.offscreen li:hover > ul,
- .main-navigation ul ul ul.offscreen li.focus > ul {
- left: 100%;
- right: auto;
- }
- .main-navigation ul ul.offscreen .menu-item-has-children > a:after {
- transform: rotate(90deg);
- top: 40%;
- }
- .comment-navigation,
- .posts-navigation {
- border-width: 1px;
- }
- .comment-navigation {
- margin-bottom: 3em;
- }
- .posts-navigation {
- margin-bottom: 1.5em;
- margin-top: 3em;
- }
- .comment-navigation a,
- .post-navigation a,
- .posts-navigation a {
- padding-left: 1.5em;
- padding-right: 1.5em;
- }
- .post-navigation {
- border-bottom-width: 1px;
- margin-bottom: 4.5em;
- }
- .post-navigation a {
- border-width: 1px 1px 0;
- }
- /* Content */
- .hentry {
- padding-bottom: 3em;
- padding-top: 4.5em;
- }
- .archive .content-area .hentry,
- .blog .content-area .hentry,
- .search .content-area .hentry {
- border-bottom-width: 0;
- padding-bottom: 0;
- padding-top: 3em;
- }
- .page-content {
- padding: 4.5em 0 3em;
- }
- .not-found .page-content {
- padding-top: 0;
- }
- .page-header {
- border-bottom: 0;
- margin-bottom: -3em;
- padding: 4.5em 0 0;
- }
- .not-found .page-header {
- margin-bottom: 0;
- }
- .entry-hero {
- min-height: 70vh;
- }
- .entry-hero-wrapper {
- padding-bottom: 4.5em;
- padding-top: 4.5em;
- }
- .site-content-wrapper .has-post-thumbnail .entry-header-wrapper {
- padding: 1.5em;
- width: 100%;
- }
- .site-content-wrapper .has-post-thumbnail .entry-header {
- margin: 0 0 1.5em;
- min-height: 30vh;
- width: 100%;
- }
- .entry-author {
- margin-top: 3em;
- }
- .comments-area {
- border-top: 0;
- padding-bottom: 1.5em;
- padding-top: 0;
- }
- .comment-respond,
- .comments-wrapper {
- padding-left: 0;
- padding-right: 0;
- }
- .comment-navigation + .comment-respond {
- border-top: 0;
- padding-top: 0;
- }
- /* Jetpack */
- #infinite-footer .container {
- padding-left: 1.875em;
- padding-right: 1.875em;
- }
- #infinite-handle {
- border-top: 0;
- padding: 3em 0 1.5em;
- }
- .site-main #infinite-handle span button,
- .site-main #infinite-handle span button:focus,
- .site-main #infinite-handle span button:hover {
- display: inline-block;
- width: auto;
- }
- .site-main .infinite-loader {
- border-top: 0;
- height: 6.75em;
- }
- .infinite-loader .spinner {
- left: 12px !important;
- -webkit-transform: translateY(0.75em);
- -moz-transform: translateY(0.75em);
- -ms-transform: translateY(0.75em);
- transform: translateY(0.75em);
- }
- .infinite-wrap {
- border-top: 0;
- }
- .post-type-archive-jetpack-testimonial .infinite-wrap {
- margin-top: 0;
- padding-bottom: 0;
- padding-left: 0;
- padding-right: 0;
- }
- .post-type-archive-jetpack-testimonial #infinite-handle,
- .post-type-archive-jetpack-testimonial .infinite-loader,
- .post-type-archive-jetpack-testimonial .infinite-wrap {
- margin-left: auto;
- margin-right: auto;
- max-width: 900px;
- max-width: 56.25rem;
- width: 80%;
- width: calc(100% - 6em);
- }
- .site-footer .jetpack-social-navigation ul {
- margin-bottom: 0;
- }
- .site .testimonial-entry-column-4 {
- width: 23%;
- width: calc(25% - 1.25em);
- }
- .site .testimonial-entry-column-4.testimonial-entry-first-item-row {
- margin-right: 1.25em;
- }
- .site .testimonial-entry-column-4:nth-of-type(4n+2) {
- margin-left: 0.25em;
- margin-right: 0.75em;
- }
- .site .testimonial-entry-column-4:nth-of-type(4n+3) {
- margin-left: 0.75em;
- margin-right: 0.25em;
- }
- .site .testimonial-entry-column-4.testimonial-entry-last-item-row {
- margin-left: 1.25em;
- }
- .site .testimonial-entry-column-5 {
- margin-left: 0.375em;
- margin-right: 0.375em;
- width: 18%;
- width: calc(20% - 0.75em);
- }
- .site .testimonial-entry-column-6 {
- margin-left: 0.375em;
- margin-right: 0.375em;
- width: 15.5%;
- width: calc(16.666667% - 0.75em);
- }
- .archive .content-area .jetpack-testimonial,
- .search .content-area .jetpack-testimonial {
- border-bottom-width: 1px;
- padding-top: 1.5em;
- }
- .search-testimonial:after {
- content: "";
- display: block;
- height: 1.5em;
- margin-top: -1.5em;
- }
- .post-type-archive-jetpack-testimonial .page-header {
- margin-bottom: 0;
- padding-left: 3em;
- padding-right: 3em;
- }
- .post-type-archive-jetpack-testimonial .hentry-wrapper {
- padding-bottom: 0;
- }
- .post-type-archive-jetpack-testimonial .posts-navigation {
- margin-top: 4.5em;
- max-width: 900px;
- max-width: 56.25rem;
- width: 80%;
- width: calc(100% - 6em);
- }
- .single-jetpack-testimonial .hentry-wrapper {
- padding-bottom: 3em;
- padding-top: 4.5em;
- }
- /* Extra Classes */
- .main-navigation .button {
- margin-bottom: 0;
- margin-top: 0;
- }
- .main-navigation .button:before {
- display: none;
- }
- .column-1-3 {
- float: left;
- padding-left: 0.5em;
- padding-right: 0.5em;
- width: 33.333333%;
- }
- .column-1-3.column-first {
- padding-left: 0;
- padding-right: 1em;
- }
- .column-1-3.column-last {
- padding-left: 1em;
- padding-right: 0;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 1020px
- --------------------------------------------------------------*/
- @media screen and (min-width: 1020px) {
- /* Layout */
- .single:not(.single-product) .content-area {
- margin-bottom: 3em;
- }
- .archive .content-area,
- .blog .content-area,
- .search .content-area {
- padding-bottom: 4.5em;
- }
- .site-content-wrapper .widget-area {
- padding-bottom: 3.75em;
- padding-top: 6em;
- }
- /* Navigation */
- .posts-navigation {
- margin-top: 4.5em;
- }
- /* Content */
- .hentry {
- padding-bottom: 4.5em;
- padding-top: 6em;
- }
- .archive .content-area .hentry,
- .blog .content-area .hentry,
- .search .content-area .hentry {
- padding-top: 4.5em;
- }
- .page-content {
- padding-top: 6em;
- padding-bottom: 4.5em;
- }
- .page-header {
- margin-bottom: -4.5em;
- padding-top: 6em;
- }
- .entry-hero-wrapper {
- padding-bottom: 6em;
- padding-top: 6em;
- }
- .entry-author {
- margin-top: 4.5em;
- }
- .comments-area {
- padding-bottom: 3em;
- }
- /* Jetpack */
- #infinite-handle {
- padding-top: 4.5em;
- }
- .site-main .infinite-loader {
- height: 8.25em;
- }
- .infinite-loader .spinner {
- -webkit-transform: translateY(1.5em);
- -moz-transform: translateY(1.5em);
- -ms-transform: translateY(1.5em);
- transform: translateY(1.5em);
- }
- .archive .content-area .jetpack-testimonial,
- .search .content-area .jetpack-testimonial {
- padding-top: 1.5em;
- }
- .post-type-archive-jetpack-testimonial .posts-navigation {
- margin-top: 6em;
- }
- .single-jetpack-testimonial .hentry-wrapper {
- padding-bottom: 1.5em;
- padding-top: 6em;
- }
- }
|