123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242 |
- /*
- Theme Name: Canard
- Theme URI: https://wordpress.com/themes/canard/
- Author: Automattic
- Author URI: https://wordpress.com/themes/
- Description: A flexible and versatile theme perfect for magazines, news sites, and blogs. It lets you highlight specific articles on the homepage and balances readability with a powerful use of photography — all in a layout that works on any device.
- Version: 1.0.17-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: canard
- Tags: author-bio, blog, blog-excerpts, classic-menu, clean, collaboration, contemporary, custom-colors, custom-header, custom-menu, elegant, featured-content-with-pages, featured-images, flexible-header, food, gaming, geometric, infinite-scroll, journal, light, magazine, minimal, modern, multiple-menus, news, post-formats, professional, red, responsive-layout, right-sidebar, rtl-language-support, simple, site-logo, sophisticated, sticky-post, theme-options, translation-ready, two-columns, white
- 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.
- Canard is based on Underscores http://underscores.me/, (C) 2012-2020 Automattic, Inc.
- 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
- # Genericons
- # Typography
- # Elements
- # Forms
- # Navigation
- ## Links
- ## Primary Menu
- ## Social Menu
- ## Secondary Menu
- ## Footer Menu
- ## Bottom Menu
- ## Paging Navigation
- # Accessibility
- # Alignments
- # Clearings
- # Widgets
- # Content
- ## Grid
- ## Header
- ## Footer
- ## Featured Content
- ## Posts & Pages
- ## Post Formats
- ## Comments
- # Media
- ## Captions
- ## Galleries
- # Jetpack
- ## Contact Form
- ## Galleries
- ## Infinite Scroll
- ## PollDaddy
- ## Recipes
- ## Responsive Videos
- ## Sharedaddy
- ## Site Logo
- ## Widgets
- # Eventbrite
- # Transitions
- # Responsive
- ## x >= 600px
- ## x >= 768px
- ## x >= 840px
- ## x >= 960px
- ## x >= 1080px
- ## x >= 1380px
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- # 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;
- }
- div:focus {
- outline: none;
- }
- 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 30px;
- }
- 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 {
- border-radius: 0;
- 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: none;
- box-sizing: content-box;
- }
- input[type="search"]::-webkit-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- legend {
- border: 0;
- padding: 0;
- }
- textarea {
- overflow: auto;
- }
- optgroup {
- font-weight: bold;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- /*--------------------------------------------------------------
- # Genericons
- --------------------------------------------------------------*/
- blockquote:before,
- .back-top:before,
- .comment-navigation .nav-next a:after,
- .comment-navigation .nav-previous a:before,
- .dropdown-toggle:before,
- .main-navigation .menu-item-has-children > a:after,
- .menu-toggle:before,
- .posts-navigation .nav-next a:after,
- .posts-navigation .nav-previous a:before,
- .search-form:before,
- .search-toggle:before,
- .sidebar-toggle:before,
- .social-navigation a:before {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- display: inline-block;
- font-family: Genericons;
- font-size: 24px;
- font-style: normal;
- font-weight: normal;
- height: 30px;
- line-height: 1.25;
- speak: none;
- text-decoration: inherit;
- vertical-align: top;
- width: 30px;
- }
- /*--------------------------------------------------------------
- # Typography
- --------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- color: #222;
- font-family: "PT Serif", serif;
- font-size: 16px;
- }
- body {
- line-height: 1.5;
- }
- button,
- input,
- select,
- textarea {
- line-height: 1.875;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- clear: both;
- font-family: "Playfair Display", serif;
- font-weight: bold;
- margin-top: 0;
- }
- h1 {
- font-size: 49px;
- line-height: 1.225;
- margin-bottom: 30px;
- }
- h2 {
- font-size: 39px;
- line-height: 1.54;
- margin-bottom: 30px;
- }
- h3 {
- font-size: 31px;
- line-height: 1.452;
- margin-bottom: 30px;
- }
- h4 {
- font-size: 25px;
- line-height: 1.2;
- margin-bottom: 30px;
- }
- h5 {
- font-size: 20px;
- line-height: 1.5;
- margin-bottom: 30px;
- }
- h6 {
- font-size: 16px;
- line-height: 1.5;
- margin-bottom: 30px;
- }
- h1 a,
- h2 a,
- h3 a,
- h4 a,
- h5 a,
- h6 a {
- font-weight: inherit;
- }
- p {
- margin-top: 0;
- margin-bottom: 30px;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- cite {
- font-weight: bold;
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: "";
- }
- blockquote,
- q {
- quotes: "" "";
- }
- blockquote {
- color: #555;
- font-style: italic;
- margin: 0 0 30px;
- padding: 0;
- position: relative;
- }
- blockquote:before {
- color: #ddd;
- content: "\f106";
- float: left;
- }
- blockquote * {
- margin-bottom: 0;
- }
- blockquote blockquote {
- margin-left: 30px;
- margin-top: 30px;
- }
- blockquote cite {
- font-style: normal;
- }
- address {
- margin: 0 0 30px;
- }
- code,
- kbd,
- pre,
- tt,
- var {
- font-family: Inconsolata, monospace;
- }
- pre {
- background: #eee;
- border-left: 2px solid #d11415;
- max-width: 100%;
- overflow: auto;
- padding: 30px;
- }
- abbr,
- acronym {
- border-bottom: 1px dotted #222;
- cursor: help;
- }
- mark:not(.has-inline-color),
- ins {
- background: #d11415;
- color: #fff;
- padding: 0 0.2em;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- /*--------------------------------------------------------------
- # Elements
- --------------------------------------------------------------*/
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- body {
- background: #fff;
- }
- hr {
- background-color: #ddd;
- border: 0;
- height: 1px;
- margin-bottom: 30px;
- }
- ul,
- ol {
- margin: 0 0 30px 0;
- padding: 0;
- }
- ul {
- list-style: square inside;
- }
- ol {
- list-style: decimal inside;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 30px;
- }
- dl {
- margin: 0;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 0 30px;
- }
- img {
- height: auto;
- max-width: 100%;
- }
- table {
- border-top: 1px solid #ddd;
- margin: 0 0 30px;
- text-align: left;
- width: 100%;
- }
- caption,
- th {
- font-family: Lato, sans-serif;
- font-weight: bold;
- text-transform: uppercase;
- }
- caption {
- color: #777;
- }
- th,
- td {
- border-bottom: 1px solid #ddd;
- padding: 5px;
- }
- thead {
- background: #eee;
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- background: #d11415;
- border: 2px solid #d11415;
- color: #fff;
- font-family: Lato, sans-serif;
- font-weight: bold;
- padding: 5.5px 13px;
- text-transform: uppercase;
- }
- button:active,
- input[type="button"]:active,
- input[type="reset"]:active,
- input[type="submit"]:active,
- 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: #fff;
- color: #d11415;
- outline: none;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- textarea {
- -webkit-appearance: none;
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 0;
- box-sizing: border-box;
- padding: 6.5px;
- width: 100%;
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- textarea:focus {
- box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.075);
- outline: none;
- }
- /* Placeholder */
- ::input-placeholder {
- color: #777;
- }
- ::-webkit-input-placeholder {
- color: #777;
- }
- :-moz-placeholder {
- color: #777;
- opacity: 1;
- }
- ::-moz-placeholder {
- color: #777;
- opacity: 1;
- }
- :-ms-input-placeholder {
- color: #777;
- }
- /* Search Form */
- .search-form {
- margin-bottom: 30px;
- position: relative;
- }
- .search-form:before {
- background: #fff;
- border-radius: 50%;
- color: #d11415;
- content: "\f400";
- font-size: 16px;
- height: 28px;
- line-height: 28px;
- position: absolute;
- right: 8.5px;
- top: 8.5px;
- text-align: center;
- width: 28px;
- }
- .search-form.hover:before {
- background: #eee;
- }
- .search-form .search-field {
- padding-right: 45px;
- }
- .search-form .search-submit {
- background: transparent;
- border: 1px solid #ddd;
- border-radius: 50%;
- color: transparent;
- display: block;
- height: 30px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- right: 7.5px;
- top: 7.5px;
- width: 30px;
- z-index: 2;
- }
- .search-form .search-submit:active,
- .search-form .search-submit:focus,
- .search-form .search-submit:hover {
- background: transparent;
- border-color: #ddd;
- color: transparent;
- }
- /* Password Protected */
- .post-password-form input[type="submit"] {
- margin-top: 30px;
- }
- /*--------------------------------------------------------------
- # Navigation
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Links
- --------------------------------------------------------------*/
- a {
- color: #d11415;
- font-weight: bold;
- text-decoration: none;
- }
- a:active,
- a:focus,
- a:hover {
- color: inherit;
- outline: none;
- }
- a:focus {
- outline: 2px solid #ddd;
- }
- a:visited {
- font-weight: normal;
- }
- /*--------------------------------------------------------------
- ## Primary Menu
- --------------------------------------------------------------*/
- /* Menu Toggle */
- .menu-toggle {
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 50%;
- color: #222;
- height: 45px;
- margin-top: -22.5px;
- padding: 0;
- position: absolute;
- right: 0;
- top: 50%;
- width: 45px;
- z-index: 3;
- }
- .menu-toggle:active,
- .menu-toggle:focus,
- .menu-toggle:hover {
- background: #eee;
- border-color: #ddd;
- color: #d11415;
- }
- .menu-toggle:before {
- content: "\f419";
- font-size: 12px;
- height: 43px;
- line-height: 43px;
- width: 43px;
- }
- .toggled .menu-toggle {
- background: #222;
- border-color: #222;
- color: #fff;
- }
- .toggled .menu-toggle:active,
- .toggled .menu-toggle:focus,
- .toggled .menu-toggle:hover {
- background: #444;
- border-color: #444;
- }
- .toggled .menu-toggle:before {
- content: "\f406";
- }
- /* Dropdown Toggle */
- .dropdown-toggle {
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 50%;
- color: #d11415;
- height: 30px;
- margin-top: -15px;
- padding: 0;
- position: absolute;
- right: 0;
- top: 50%;
- width: 30px;
- z-index: 1;
- }
- .dropdown-toggle:active,
- .dropdown-toggle:focus,
- .dropdown-toggle:hover {
- background: #eee;
- border-color: #ddd;
- color: #d11415;
- }
- .dropdown-toggle:before {
- content: "\f431";
- font-size: 16px;
- height: 28px;
- line-height: 28px;
- width: 28px;
- }
- .dropdown-toggle.toggled:before {
- content: "\f432";
- }
- /* Main Navigation */
- .main-navigation {
- font-size: 16px;
- line-height: 1.875;
- margin: 0;
- z-index: 5;
- }
- .main-navigation > div {
- display: none;
- }
- .main-navigation.toggled > div {
- background: #222;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
- display: block;
- position: absolute;
- top: 100%;
- margin-top: 8px;
- padding: 7.5px;
- width: 100%;
- left: 0;
- z-index: 9998;
- }
- .main-navigation.toggled > div:before {
- border-bottom: 6px solid #222;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- top: -6px;
- content: "";
- display: block;
- right: 16.5px;
- position: absolute;
- }
- .main-navigation > div > ul {
- background: #fff;
- border: 1px solid #ddd;
- padding: 30px;
- position: relative;
- }
- .main-navigation > div > ul > li:last-child {
- border-bottom: 1px solid #eee;
- }
- .main-navigation ul {
- border-bottom: 1px solid #eee;
- list-style: none;
- margin: 0;
- padding-left: 0;
- }
- .main-navigation li {
- border-top: 1px solid #eee;
- padding-bottom: 7.5px;
- padding-top: 7.5px;
- position: relative;
- }
- .main-navigation ul ul {
- display: none;
- }
- .main-navigation ul.toggled {
- border-bottom: 0;
- display: block;
- margin-bottom: -7.5px;
- margin-top: 7.5px;
- padding-left: 30px;
- }
- .main-navigation a {
- color: #222;
- display: block;
- text-decoration: none;
- }
- .main-navigation a:active,
- .main-navigation a:focus,
- .main-navigation a:hover {
- color: #d11415;
- }
- .main-navigation .page_item_has_children > a,
- .main-navigation .menu-item-has-children > a {
- padding-right: 45px;
- position: relative;
- }
- .main-navigation .current_page_item > a,
- .main-navigation .current-menu-item > a,
- .main-navigation .current_page_ancestor > a {
- color: #d11415;
- }
- /*--------------------------------------------------------------
- ## Social Menu
- --------------------------------------------------------------*/
- .social-navigation {
- background: #222;
- border-bottom: 1px solid #444;
- display: block;
- padding: 7.5px 0;
- text-align: center;
- }
- .social-navigation > div {
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .social-navigation ul {
- display: block;
- margin: 0;
- padding: 0;
- }
- .social-navigation li {
- display: block;
- float: left;
- margin: 0 5px;
- line-height: 1;
- }
- .social-navigation li:first-child {
- margin-left: 0;
- }
- .social-navigation li:last-child {
- margin-right: 0;
- }
- .social-navigation a {
- display: block;
- position: relative;
- width: 30px;
- height: 30px;
- color: #ccc;
- }
- .social-navigation a:before {
- height: 30px;
- font-size: 24px;
- line-height: 30px;
- width: 30px;
- }
- .social-navigation a:active,
- .social-navigation a:focus,
- .social-navigation a:hover {
- color: #fff;
- }
- .social-navigation a:focus {
- outline-color: #555;
- }
- .social-navigation a:before {
- content: "\f415";
- }
- /* CodePen */
- .social-navigation a[href*="codepen.io"]:before {
- content: "\f216";
- }
- /* Digg */
- .social-navigation a[href*="digg.com"]:before {
- content: "\f221";
- }
- /* Dribbble */
- .social-navigation a[href*="dribbble.com"]:before {
- content: "\f201";
- }
- /* Dropbox */
- .social-navigation a[href*="dropbox.com"]:before {
- content: "\f225";
- }
- /* Email */
- .social-navigation a[href*="mailto:"]:before {
- content: "\f410";
- }
- /* Facebook */
- .social-navigation a[href*="facebook.com"]:before {
- content: "\f203";
- }
- /* Flickr */
- .social-navigation a[href*="flickr.com"]:before {
- content: "\f211";
- }
- /* Foursquare */
- .social-navigation a[href*="foursquare.com"]:before {
- content: "\f226";
- }
- /* GitHub */
- .social-navigation a[href*="github.com"]:before {
- content: "\f200";
- }
- /* Google Plus */
- .social-navigation a[href*="plus.google.com"]:before {
- content: "\f206";
- }
- /* Instagram */
- .social-navigation a[href*="instagram.com"]:before {
- content: "\f215";
- }
- /* LinkedIn */
- .social-navigation a[href*="linkedin.com"]:before {
- content: "\f208";
- }
- /* Path */
- .social-navigation a[href*="path.com"]:before {
- content: "\f219";
- }
- /* Pinterest */
- .social-navigation a[href*="pinterest."]:before {
- content: "\f210";
- }
- /* Polldaddy */
- .social-navigation a[href*="polldaddy.com"]:before {
- content: "\f217";
- }
- /* Reddit */
- .social-navigation a[href*="reddit.com"]:before {
- content: "\f222";
- }
- /* RSS Feed */
- .social-navigation a[href$="/feed/"]:before {
- content: "\f413";
- }
- /* Spotify */
- .social-navigation a[href*="spotify.com"]:before {
- content: "\f515";
- }
- /* StumbleUpon */
- .social-navigation a[href*="stumbleupon.com"]:before {
- content: "\f223";
- }
- /* Tumblr */
- .social-navigation a[href*="tumblr.com"]:before {
- content: "\f214";
- }
- /* Twitch */
- .social-navigation a[href*="twitch.tv"]:before {
- content: "\f516";
- }
- /* Twitter */
- .social-navigation a[href*="twitter.com"]:before {
- content: "\f202";
- }
- /* Vimeo */
- .social-navigation a[href*="vimeo.com"]:before {
- content: "\f212";
- }
- /* Vine */
- .social-navigation a[href*="vine.co"]:before {
- content: "\f517";
- }
- /* WordPress */
- .social-navigation a[href*="wordpress.com"]:before,
- .social-navigation a[href*="wordpress.org"]:before {
- content: "\f205";
- }
- /* YouTube */
- .social-navigation a[href*="youtube.com"]:before {
- content: "\f213";
- }
- /*--------------------------------------------------------------
- ## Secondary Menu
- --------------------------------------------------------------*/
- .secondary-navigation {
- font-size: 13px;
- line-height: 1.845;
- padding: 0 15px 0 0;
- text-align: center;
- }
- .secondary-navigation ul {
- display: block;
- margin: 0;
- padding: 3px 0;
- }
- .secondary-navigation li {
- display: block;
- float: left;
- margin: 0;
- padding: 0 10px;
- }
- .secondary-navigation li:first-child {
- padding-left: 0;
- }
- .secondary-navigation li:last-child {
- padding-right: 0;
- }
- .secondary-navigation li + li {
- border-left: 1px solid #444;
- }
- .secondary-navigation a {
- display: block;
- position: relative;
- color: #ccc;
- }
- .secondary-navigation a:active,
- .secondary-navigation a:focus,
- .secondary-navigation a:hover {
- color: #fff;
- }
- .secondary-navigation a:focus {
- outline-color: #555;
- }
- /*--------------------------------------------------------------
- ## Footer Menu
- --------------------------------------------------------------*/
- .footer-navigation {
- border-top: 1px solid #ddd;
- display: block;
- font-size: 13px;
- line-height: 1.845;
- padding: 15px 0;
- text-align: center;
- }
- .footer-navigation > div {
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .footer-navigation ul {
- display: block;
- margin: 0;
- padding: 0;
- }
- .footer-navigation li {
- display: block;
- margin: 0;
- }
- .footer-navigation a {
- display: block;
- padding: 3px 0;
- position: relative;
- color: #777;
- }
- .footer-navigation a:active,
- .footer-navigation a:focus,
- .footer-navigation a:hover {
- color: #d11415;
- }
- /*--------------------------------------------------------------
- ## Bottom Menu
- --------------------------------------------------------------*/
- .bottom-navigation {
- background: #222;
- border-bottom: 1px solid #444;
- display: block;
- font-size: 13px;
- line-height: 1.845;
- padding: 15px 0;
- text-align: center;
- }
- .bottom-navigation ul {
- display: block;
- margin: 0;
- }
- .bottom-navigation li {
- display: block;
- margin: 0;
- }
- .bottom-navigation a {
- display: block;
- padding: 3px 0;
- position: relative;
- color: #ccc;
- }
- .bottom-navigation a:active,
- .bottom-navigation a:focus,
- .bottom-navigation a:hover {
- color: #fff;
- }
- .bottom-navigation a:focus {
- outline-color: #555;
- }
- /*--------------------------------------------------------------
- ## Paging Navigation
- --------------------------------------------------------------*/
- .comment-navigation,
- .post-navigation,
- .posts-navigation {
- clear: both;
- font-family: Lato, sans-serif;
- margin: 0 0 30px;
- overflow: hidden;
- }
- .posts-navigation {
- border-top: 1px solid #eee;
- padding: 30px 0 0;
- }
- .comment-navigation .meta-nav {
- display: none;
- }
- .comment-navigation + .comment-respond {
- border-top: 1px solid #ddd;
- padding-top: 30px;
- position: relative;
- }
- .comment-navigation a,
- .posts-navigation a {
- background: #fff;
- border: 2px solid #eee;
- color: #d11415;
- display: inline-block;
- font-size: 16px;
- line-height: 1.875;
- padding: 5.5px 13px;
- text-transform: uppercase;
- }
- .post-navigation a {
- border: 1px solid #eee;
- color: #222;
- display: block;
- padding: 30px;
- }
- .post-navigation a:active,
- .post-navigation a:focus,
- .post-navigation a:hover {
- background-color: #eee;
- }
- .post-navigation .nav-previous + .nav-next a {
- border-top: 0;
- }
- .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: #777;
- display: block;
- font-size: 13px;
- line-height: 1.54;
- text-transform: uppercase;
- }
- .post-navigation .post-title {
- font-family: "Playfair Display", serif;
- font-size: 25px;
- font-weight: bold;
- line-height: 1.2;
- }
- .post-navigation a:active .post-title,
- .post-navigation a:focus .post-title,
- .post-navigation a:hover .post-title {
- color: #d11415;
- }
- .comment-navigation a:active,
- .comment-navigation a:focus,
- .comment-navigation a:hover,
- .posts-navigation a:active,
- .posts-navigation a:focus,
- .posts-navigation a:hover {
- background: #d11415;
- border-color: #d11415;
- color: #fff;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous {
- float: left;
- width: 50%;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next {
- float: right;
- text-align: right;
- width: 50%;
- }
- /*--------------------------------------------------------------
- # 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: #fff;
- border-radius: 0;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.7);
- 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;
- }
- /*--------------------------------------------------------------
- # Alignments
- --------------------------------------------------------------*/
- .alignleft {
- display: inline;
- float: left;
- margin-right: 30px;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 30px;
- }
- .aligncenter {
- clear: both;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- /*--------------------------------------------------------------
- # Clearings
- --------------------------------------------------------------*/
- .author-info:before,
- .author-info:after,
- .clear:before,
- .clear:after,
- .comment-content:before,
- .comment-content:after,
- .comment-meta:before,
- .comment-meta:after,
- .entry-content:before,
- .entry-content:after,
- .entry-meta:before,
- .entry-meta:after,
- .featured-content-inner:before,
- .featured-content-inner:after,
- .footer-navigation > div:before,
- .footer-navigation > div:after,
- .footer-widget:before,
- .footer-widget:after,
- .hentry:before,
- .hentry:after,
- .main-navigation ul:before,
- .main-navigation ul:after,
- .sd-block:before,
- .sd-block:after,
- .sharedaddy:before,
- .sharedaddy:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-content-inner:before,
- .site-content-inner:after,
- .site-footer:before,
- .site-footer:after,
- .site-top-inner:before,
- .site-top-inner:after,
- .social-navigation > div:before,
- .social-navigation > div:after,
- .secondary-navigation > div:before,
- .secondary-navigation > div:after {
- content: "";
- display: table;
- }
- .author-info:after,
- .clear:after,
- .comment-content:after,
- .comment-meta:after,
- .entry-content:after,
- .entry-meta:after,
- .featured-content-inner:after,
- .footer-navigation > div:after,
- .footer-widget:after,
- .hentry:after,
- .main-navigation ul:after,
- .sd-block:after,
- .sharedaddy:after,
- .site-header:after,
- .site-content:after,
- .site-content-inner:after,
- .site-footer:after,
- .site-top-inner:after,
- .social-navigation > div:after,
- .secondary-navigation > div:after {
- clear: both;
- }
- /*--------------------------------------------------------------
- # Widgets
- --------------------------------------------------------------*/
- .widget {
- font-size: 16px;
- line-height: 1.5;
- margin: 0;
- padding: 0;
- word-break: break-word;
- }
- .widget-title,
- .widgettitle {
- font-size: 25px;
- line-height: 1.2;
- margin-bottom: 30px;
- }
- .widget select {
- margin-bottom: 30px;
- max-width: 100%;
- }
- .widget-area:before {
- background: #ddd;
- content: "";
- display: block;
- height: 1px;
- left: 0;
- margin-top: -30px;
- position: absolute;
- width: 100%;
- }
- /* Sidebar Toggle */
- .sidebar-toggle {
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 50%;
- color: #222;
- height: 45px;
- margin-bottom: 30px;
- margin-left: -22.5px;
- padding: 0;
- position: relative;
- left: 50%;
- width: 45px;
- z-index: 1;
- }
- .sidebar-toggle:active,
- .sidebar-toggle:focus,
- .sidebar-toggle:hover {
- background: #eee;
- border-color: #ddd;
- color: #d11415;
- }
- .sidebar-toggle.toggled {
- background: #222;
- border-color: #222;
- color: #fff;
- }
- .sidebar-toggle.toggled:active,
- .sidebar-toggle.toggled:focus,
- .sidebar-toggle.toggled:hover {
- background: #444;
- border-color: #444;
- }
- .sidebar-toggle:before {
- content: "\f476";
- font-size: 16px;
- height: 43px;
- line-height: 43px;
- width: 43px;
- }
- .toggled.sidebar-toggle:before {
- content: "\f406";
- }
- .widget-area {
- display: none;
- }
- .toggled.widget-area {
- display: block;
- }
- /* Footer Widget */
- .footer-widget {
- border-top: 1px solid #ddd;
- padding: 30px 0 0;
- }
- .footer-widget-inner .widget {
- border-bottom: 1px solid #ddd;
- margin-bottom: 30px;
- }
- .footer-widget-inner .widget:last-of-type {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .footer-widget-inner .widget:nth-of-type(4n+1) {
- clear: left;
- margin-left: 0;
- }
- .footer-widget-inner .widget:nth-of-type(4n+4) {
- clear: right;
- margin-right: 0;
- }
- /* Calendar */
- .widget_calendar table {
- text-align: center;
- }
- .widget_calendar tfoot {
- font-family: Lato, sans-serif;
- text-transform: uppercase;
- }
- /* Custom Menu */
- .widget_nav_menu .page_item_has_children > a,
- .widget_nav_menu .menu-item-has-children > a {
- display: block;
- padding-right: 45px;
- position: relative;
- }
- .widget_nav_menu .sub-menu {
- display: none;
- }
- .widget_nav_menu .sub-menu.toggled {
- display: block;
- }
- /* 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 #eee;
- list-style: none;
- margin-left: 0;
- }
- .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 #eee;
- padding-bottom: 7.5px;
- padding-top: 7.5px;
- }
- .widget_categories .children,
- .widget_nav_menu .sub-menu,
- .widget_pages .children {
- border-bottom: 0;
- margin-bottom: -7.5px;
- margin-top: 7.5px;
- padding-left: 30px;
- }
- /* Recent Posts */
- .widget_recent_entries .post-date {
- color: #777;
- display: block;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- /* RSS */
- .widget_rss cite,
- .widget_rss .rss-date {
- color: #777;
- display: block;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-style: normal;
- font-weight: bold;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- /* Tag Cloud */
- .widget_tag_cloud > div {
- padding-bottom: 30px;
- }
- .widget_tag_cloud a {
- font-size: inherit !important;
- line-height: 1.5;
- text-decoration: none;
- }
- .widget_tag_cloud a:before {
- color: #222;
- content: "\0023";
- margin-right: 0.125em;
- }
- /*--------------------------------------------------------------
- # Content
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Grid
- --------------------------------------------------------------*/
- /* Widths */
- .bottom-navigation > div,
- .bottom-social > div,
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 90%;
- }
- /* Floats and Other Properties */
- .author-info {
- border: 1px solid #ddd;
- margin: 0 0 30px;
- padding: 30px 30px 0;
- }
- .bottom-navigation > div,
- .bottom-social > div,
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .header-image-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- margin: 0 auto;
- }
- .site-main,
- .widget-area {
- padding-top: 30px;
- }
- /*--------------------------------------------------------------
- ## Header
- --------------------------------------------------------------*/
- /* Site Header */
- .site-header {
- border-bottom: 1px solid #ddd;
- padding: 30px 0;
- position: relative;
- width: 100%;
- }
- /* Site Top */
- .site-top {
- background: #222;
- color: #ccc;
- display: none;
- margin-bottom: 30px;
- margin-top: -30px;
- padding: 7.5px 0;
- }
- /* Search Navigation */
- .search-navigation {
- position: absolute;
- top: 30px;
- left: 0;
- width: 100%;
- }
- .search-navigation-inner {
- position: relative;
- }
- .search-header {
- min-width: 30px;
- }
- .search-toggle {
- background: transparent;
- border: 1px solid #ddd;
- border-radius: 50%;
- color: #222;
- height: 45px;
- padding: 0;
- position: relative;
- width: 45px;
- z-index: 2;
- }
- .search-toggle:active,
- .search-toggle:focus,
- .search-toggle:hover {
- background: #eee;
- border-color: #ddd;
- color: #d11415;
- }
- .search-toggle:before {
- content: "\f400";
- font-size: 16px;
- height: 43px;
- line-height: 43px;
- width: 43px;
- }
- .toggled .search-toggle {
- background: #222;
- border-color: #222;
- color: #fff;
- }
- .toggled .search-toggle:active,
- .toggled .search-toggle:focus,
- .toggled .search-toggle:hover {
- background: #444;
- border-color: #444;
- }
- .toggled .search-toggle:before {
- content: "\f406";
- font-size: 12px;
- }
- .search-header .search-form {
- display: none;
- position: absolute;
- right: 0;
- z-index: 10;
- }
- .search-header.toggled .search-form {
- display: block;
- }
- .search-header .search-form {
- background: #222;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
- margin-top: 8px;
- padding: 7.5px;
- width: 100%;
- }
- .search-header.toggled .search-toggle:after {
- border-bottom: 6px solid #222;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- bottom: -9px;
- content: "";
- display: block;
- left: 50%;
- margin-left: -6px;
- position: absolute;
- }
- .search-header .search-form:before {
- right: 16px;
- top: 16px;
- }
- .search-header .search-form .search-submit {
- right: 15px;
- top: 15px;
- }
- /* Site Branding */
- .site-branding {
- align-items: center;
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-justify-content: center;
- justify-content: center;
- min-height: 45px;
- position: relative;
- text-align: center;
- word-break: break-word;
- }
- .site-title {
- color: #d11415;
- font-size: 25px;
- line-height: 1.2;
- margin: 0 60px;
- padding: 0;
- position: relative;
- z-index: 4;
- }
- .site-title a {
- color: inherit;
- }
- .site-title a:active,
- .site-title a:focus,
- .site-title a:hover {
- color: #222;
- }
- .site-description {
- color: #777;
- display: none;
- font-family: Lato, sans-serif;
- font-size: 16px;
- line-height: 1.875;
- margin: 0 60px;
- padding: 3px 0;
- position: relative;
- text-transform: uppercase;
- z-index: 4;
- }
- /* Site Social */
- .site-social {
- background: #222;
- border-bottom: 1px solid #444;
- padding: 7.5px 0;
- }
- .site-social-inner {
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- }
- /* Header Image */
- .header-image {
- margin: 30px 0 -31px;
- }
- .header-image a,
- .header-image img {
- display: block;
- margin: 0 auto;
- }
- .header-image a:active,
- .header-image a:focus,
- .header-image a:hover {
- opacity: 0.7;
- }
- /*--------------------------------------------------------------
- ## Footer
- --------------------------------------------------------------*/
- .site-footer {
- background: #222;
- padding: 7.5px 0;
- position: relative;
- }
- .site-info {
- color: #ccc;
- font-size: 13px;
- line-height: 1.845;
- padding: 3px 0;
- text-align: center;
- }
- .site-info a {
- color: #ccc;
- }
- .site-info a:active,
- .site-info a:focus,
- .site-info a:hover {
- color: #fff;
- }
- .site-info a:focus {
- outline-color: #555;
- }
- .site-info .sep {
- color: #444;
- font-size: 16px;
- line-height: 1.5;
- vertical-align: bottom;
- }
- .site-info .sep:hover {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- /*--------------------------------------------------------------
- ## Featured Content
- --------------------------------------------------------------*/
- .featured-content {
- border-bottom: 1px solid #ddd;
- padding: 30px 0 0;
- }
- .featured-content .hentry {
- background-color: #1f1f1f;
- background-position: 50% 50%;
- background-size: cover;
- color: #fff;
- float: left;
- overflow: hidden;
- position: relative;
- }
- .blog .featured-content .hentry {
- border-bottom: 0;
- border-top: 0;
- margin: 0 0 30px;
- height: 300px;
- width: 100%;
- }
- .blog .featured-content .hentry:first-child {
- margin-top: 0;
- }
- .featured-content .has-post-thumbnail {
- text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
- }
- .featured-content a {
- color: #fff;
- }
- .featured-content a:focus {
- outline-color: rgba(255, 255, 255, 0.7);
- }
- .featured-content .post-thumbnail {
- background-size: cover;
- margin: 0;
- opacity: 0.7;
- position: absolute;
- top: 0;
- }
- .featured-content .sticky .post-thumbnail {
- position: absolute;
- }
- .featured-content .hentry:not(.has-post-thumbnail) .post-thumbnail {
- opacity: 0;
- }
- .featured-content .post-thumbnail img {
- opacity: 0;
- visibility: hidden;
- }
- .featured-content .hentry:hover .post-thumbnail,
- .featured-content .hentry .post-thumbnail:focus {
- background-color: #000;
- opacity: 0.3;
- }
- .featured-content .hentry:not(.has-post-thumbnail):hover .post-thumbnail,
- .featured-content .hentry:not(.has-post-thumbnail) .post-thumbnail:focus {
- background: #d11415;
- opacity: 1;
- }
- .featured-content .entry-header {
- bottom: 0;
- position: absolute;
- }
- .featured-content .entry-title {
- font-size: 25px;
- line-height: 1.2;
- padding: 0 30px 30px;
- }
- .featured-content .entry-meta {
- padding-left: 30px;
- padding-right: 30px;
- width: 100%;
- }
- /*--------------------------------------------------------------
- ## Posts & Pages
- --------------------------------------------------------------*/
- /* Sticky */
- .sticky {
- display: block;
- }
- .sticky .post-thumbnail {
- position: relative;
- }
- .archive .sticky .posted-on,
- .blog .sticky .posted-on,
- .search .sticky .posted-on {
- display: none;
- }
- .archive .sticky .byline:before,
- .blog .sticky .byline:before,
- .search .sticky .byline:before {
- display: none;
- }
- .sticky-post {
- background: #d11415;
- color: #fff;
- display: block;
- height: 30px;
- position: absolute;
- right: 15px;
- text-align: center;
- top: 0;
- width: 30px;
- }
- .sticky-post .genericon {
- height: 30px;
- line-height: 30px;
- }
- /* Hentry */
- .hentry {
- margin: 0 0 30px;
- }
- .archive .hentry,
- .blog .hentry,
- .search .hentry {
- border-top: 1px solid #eee;
- padding-top: 30px;
- }
- .archive .hentry:first-of-type,
- .blog .hentry:first-of-type,
- .search .hentry:first-of-type {
- border-top: 0;
- margin-top: -30px;
- }
- .byline,
- .updated:not(.published) {
- display: none;
- }
- .group-blog .byline,
- .wpnbha .byline,
- .wpnbpc .byline {
- display: inline;
- }
- .byline img {
- border-radius: 50%;
- float: left;
- margin-right: 5px;
- }
- .entry-summary + .entry-meta > span:not(:first-of-type):before {
- content: "\002F";
- font-weight: bold;
- margin: 0 5px;
- }
- body:not(.group-blog) .entry-summary + .entry-meta > span:nth-of-type(2):before,
- body:not(.group-blog) .sticky .entry-summary + .entry-meta > span:nth-of-type(3):before {
- display: none;
- }
- .entry-summary {
- font-size: 16px;
- line-height: 1.5;
- margin: 0;
- padding: 3px 0;
- position: relative;
- word-wrap: break-word;
- }
- .entry-summary p {
- margin-bottom: 0;
- }
- .entry-summary img {
- display: none;
- }
- .entry-content,
- .page-content {
- margin: 0;
- }
- .more-link {
- white-space: nowrap;
- }
- /* Page Header */
- .page-header {
- border-bottom: 1px solid #eee;
- margin-bottom: 30px;
- padding-bottom: 0;
- }
- .page-title {
- font-size: 39px;
- line-height: 1.54;
- }
- /* Entry Header */
- .archive .hentry .entry-title,
- .blog .hentry .entry-title,
- .search .hentry .entry-title {
- font-size: 25px;
- line-height: 1.2;
- margin: 0;
- }
- .archive .hentry.type-page .entry-title,
- .blog .hentry.type-page .entry-title,
- .search .hentry.type-page .entry-title {
- margin: 0;
- }
- .page .entry-title,
- .single .entry-title {
- font-size: 39px;
- line-height: 1.54;
- margin: 0;
- }
- .page .hentry:not(.has-post-thumbnail) .entry-header,
- .single .hentry:not(.has-post-thumbnail) .entry-header,
- .single .hentry.format-quote .entry-header,
- .single .hentry.format-video .entry-header {
- margin-bottom: 30px;
- }
- .single .hentry.format-aside .entry-header {
- margin-bottom: 0;
- }
- .page .hentry.has-post-thumbnail .entry-header,
- .single .hentry.has-post-thumbnail .entry-header {
- display: none;
- }
- /* Entry Hero */
- .entry-hero {
- position: relative;
- }
- .entry-header-wrapper {
- padding: 30px 0 0;
- width: 100%;
- }
- .entry-hero .post-thumbnail {
- background: #000;
- }
- .entry-hero .post-thumbnail img {
- margin: 0 auto;
- }
- .entry-hero .entry-meta a {
- color: #777;
- }
- .entry-hero .entry-meta a:active,
- .entry-hero .entry-meta a:focus,
- .entry-hero .entry-meta a:hover {
- color: #222;
- }
- .page .hentry.has-post-thumbnail .entry-hero,
- .single .hentry.has-post-thumbnail .entry-hero {
- display: block;
- }
- /* Entry Meta */
- .entry-meta {
- font-family: Lato, sans-serif;
- font-size: 13px;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- .content-area .entry-meta,
- .content-area .entry-meta a {
- color: #777;
- }
- .content-area .entry-meta a:active,
- .content-area .entry-meta a:focus,
- .content-area .entry-meta a:hover {
- color: #222;
- }
- /* Entry Footer */
- .entry-footer {
- color: #777;
- display: block;
- float: left;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- margin-bottom: 30px;
- text-transform: uppercase;
- width: 100%;
- }
- .page .entry-footer {
- float: none;
- margin-bottom: 0;
- width: 100%;
- }
- .entry-footer a {
- color: #777;
- }
- .entry-footer a:active,
- .entry-footer a:focus,
- .entry-footer a:hover {
- color: #222;
- }
- .entry-footer .byline,
- .entry-footer .cat-links,
- .entry-footer .comments-link,
- .entry-footer .edit-link,
- .entry-footer .posted-on,
- .entry-footer .tags-links {
- border-top: 1px solid #eee;
- display: block;
- padding: 5px 0;
- }
- .entry-footer > span:last-of-type {
- border-bottom: 1px solid #eee;
- }
- .entry-footer .cat-links,
- .entry-footer .comments-link {
- float: none;
- }
- .tags-links a:before {
- content: "\0023";
- margin-right: 0.125em;
- }
- /* Post Thumbnail */
- .post-thumbnail {
- background: #000;
- display: block;
- height: 100%;
- position: relative;
- width: 100%;
- }
- .post-thumbnail img {
- display: block;
- }
- a.post-thumbnail:active,
- a.post-thumbnail:focus,
- a.post-thumbnail:hover {
- background-color: #000;
- }
- a.post-thumbnail:focus {
- outline: none;
- }
- a.post-thumbnail:active img,
- a.post-thumbnail:focus img,
- a.post-thumbnail:hover img {
- opacity: 0.7;
- }
- .content-area .format-standard a.post-thumbnail {
- height: 180px;
- margin-bottom: 15px;
- overflow: hidden;
- position: relative;
- z-index: 1;
- }
- .content-area .format-standard a.post-thumbnail img {
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .wpnbha .post-thumbnail {
- background: none;
- height: unset;
- }
- /* Page Links */
- .page-links {
- border-top: 1px solid #eee;
- clear: both;
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 2.3077;
- margin-bottom: 25px;
- padding: 30px 0 0;
- text-transform: uppercase;
- width: 100%;
- }
- .page-links a,
- .page-links > span {
- background: #eee;
- border: 1px solid #ddd;
- display: inline-block;
- margin: 0 5px 5px 0;
- width: 30px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- }
- .page-links > span {
- color: #d11415;
- }
- .page-links a {
- background: #fff;
- color: #222;
- }
- .page-links a:active,
- .page-links a:focus,
- .page-links a:hover {
- background: #eee;
- border-color: #ddd;
- color: #d11415;
- }
- .page-links a:focus {
- outline: none;
- }
- .page-links > .page-links-title {
- background: transparent;
- border: 0;
- color: #777;
- display: block;
- height: auto;
- margin: 0;
- padding-right: 5px;
- text-align: left;
- width: auto;
- }
- /* Author Info */
- .author-info .author-title {
- clear: none;
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- margin: 0;
- padding: 5px 0;
- text-transform: uppercase;
- }
- .author-info .author-name {
- clear: none;
- font-size: 25px;
- line-height: 1.2;
- margin-bottom: 30px;
- }
- .author-info .author-avatar {
- display: none;
- }
- .author-info .author-avatar img {
- border-radius: 50%;
- }
- .author-info .author-bio {
- clear: both;
- font-size: 16px;
- line-height: 1.5;
- }
- .author-info .author-link {
- display: block;
- }
- /*--------------------------------------------------------------
- ## Post Formats
- --------------------------------------------------------------*/
- /* Gallery & Image */
- body:not(.single) .content-area .format-gallery.has-post-thumbnail,
- body:not(.single) .content-area .format-image.has-post-thumbnail {
- color: #fff;
- padding: 60px 0 30px;
- position: relative;
- overflow: hidden;
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-header,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-header {
- position: relative;
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail a:focus,
- body:not(.single) .content-area .format-image.has-post-thumbnail a:focus {
- color: #fff;
- outline-color: rgba(255, 255, 255, 0.7);
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-summary,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a {
- color: #fff;
- text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .author img,
- body:not(.single) .content-area .format-image.has-post-thumbnail .author img {
- box-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:active,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:focus,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta a:hover,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a:active,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title a:hover,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:active,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:focus,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta a:hover,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:active,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:focus,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary a:hover,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a:active,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title a:hover {
- opacity: 0.7;
- }
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-meta,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-summary,
- body:not(.single) .content-area .format-gallery.has-post-thumbnail .entry-title,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-meta,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-summary,
- body:not(.single) .content-area .format-image.has-post-thumbnail .entry-title {
- padding-left: 30px;
- padding-right: 30px;
- position: relative;
- }
- body:not(.single) .content-area .format-gallery .post-thumbnail,
- body:not(.single) .content-area .format-image .post-thumbnail {
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- display: block;
- height: 100%;
- margin: 0;
- overflow: hidden;
- position: absolute;
- bottom: 0;
- width: 100%;
- }
- body:not(.single) .content-area .format-gallery .post-thumbnail img,
- body:not(.single) .content-area .format-image .post-thumbnail img {
- opacity: 0;
- }
- body:not(.single) .content-area .format-gallery .post-thumbnail:before,
- body:not(.single) .content-area .format-image .post-thumbnail:before {
- background: #000;
- content: "";
- display: block;
- height: 100%;
- left: 0;
- opacity: 0.3;
- bottom: 0;
- width: 100%;
- z-index: -1
- }
- /* Link */
- .post-link {
- background: #d11415;
- display: block;
- height: 180px;
- margin-bottom: 15px;
- position: relative;
- }
- .post-link .genericon {
- background: #fff;
- border-radius: 50%;
- color: #d11415;
- font-size: 24px;
- height: 60px;
- left: 50%;
- line-height: 60px;
- margin-left: -30px;
- margin-top: -30px;
- position: absolute;
- text-align: center;
- top: 50%;
- width: 60px;
- z-index: 1;
- }
- .post-link:active .genericon,
- .post-link:focus .genericon,
- .post-link:hover .genericon {
- opacity: 0.7;
- }
- .post-link:focus {
- outline: none;
- }
- /*--------------------------------------------------------------
- ## Comments
- --------------------------------------------------------------*/
- .comments-area {
- border-top: 1px solid #ddd;
- font-size: 16px;
- line-height: 1.5;
- padding-top: 30px;
- }
- .comment-reply-title,
- .comments-title,
- .no-comments {
- font-size: 25px;
- line-height: 1.2;
- margin-bottom: 30px;
- }
- .no-comments {
- font-family: "Playfair Display", serif;
- font-weight: bold;
- margin-bottom: 30px;
- }
- .comment-form,
- .comment-form code {
- font-size: 16px;
- line-height: 1.5;
- }
- .comment-content {
- word-wrap: break-word;
- }
- .comment-content blockquote:before {
- font-size: 16px;
- height: 24px;
- line-height: 1.5;
- width: 24px;
- }
- .comment-list {
- border-bottom: 1px solid #ddd;
- list-style: none;
- margin-bottom: 30px;
- padding-bottom: 0;
- position: relative;
- }
- .comment-list .children {
- list-style: none;
- }
- .comment-list .comment:not(:last-of-type),
- .comment-list .depth-1:not(:last-of-type) {
- border-bottom: 1px solid #eee;
- margin-bottom: 30px;
- }
- .comment-list .comment .comment:first-of-type {
- border-top: 1px solid #eee;
- padding-top: 30px;
- }
- .comment-list .comment-respond {
- border-top: 1px solid #eee;
- margin-left: 30px;
- padding-top: 30px;
- }
- .comment-list .comment-form {
- padding-bottom: 0;
- }
- .pingback .comment-body {
- padding-bottom: 30px;
- }
- .comment-author {
- font-family: "Playfair Display", serif;
- font-size: 16px;
- font-weight: bold;
- line-height: 1.875;
- }
- .comment-author a,
- .comment-author b {
- font-weight: bold;
- }
- .comment-author img {
- border-radius: 50%;
- vertical-align: middle;
- }
- .comment-meta {
- margin-bottom: 30px;
- }
- .comment-author .avatar {
- float: left;
- margin-right: 15px;
- }
- .comment-author .says {
- display: none;
- }
- .comment-metadata .edit-link:before {
- content: "\002F";
- font-weight: bold;
- margin-right: 0.2em;
- }
- .comment-list .comment-reply-title small,
- .comment-metadata,
- .comment-reply-link {
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- .comment-list .comment-reply-title small {
- float: right;
- }
- .comment-metadata a,
- .comment-list .comment-reply-title small a {
- color: #777;
- }
- .comment-list .comment-reply-title small a:active,
- .comment-list .comment-reply-title small a:focus,
- .comment-list .comment-reply-title small a:hover,
- .comment-metadata a:active,
- .comment-metadata a:focus,
- .comment-metadata a:hover,
- .comment-reply-link:active,
- .comment-reply-link:focus,
- .comment-reply-link:hover {
- color: #222;
- }
- .bypostauthor .fn {
- outline: 2px solid #ddd;
- padding: 0 0.2em;
- }
- .comment-reply-link {
- display: inline-block;
- margin-bottom: 30px;
- }
- .required {
- color: #d11415;
- font-weight: bold;
- }
- .comment-awaiting-moderation {
- margin-bottom: 0;
- }
- /*--------------------------------------------------------------
- # 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,
- .video-player,
- .wp-audio-shortcode {
- margin-bottom: 30px;
- max-width: 100%;
- }
- /*--------------------------------------------------------------
- ## Captions
- --------------------------------------------------------------*/
- .wp-caption {
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 16px;
- line-height: 1.25;
- margin-bottom: 25px;
- max-width: 100%;
- }
- .wp-caption img[class*="wp-image-"] {
- display: block;
- margin: 0 auto;
- }
- .wp-caption-text {
- text-align: center;
- }
- .wp-caption .wp-caption-text {
- margin: 0;
- padding: 5px 0;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- border: 1px solid #eee;
- margin: 0 0 30px;
- padding: 3.75px;
- }
- .gallery-item {
- display: inline-block;
- margin-bottom: 0;
- padding: 3.75px;
- position: relative;
- text-align: center;
- vertical-align: top;
- width: 100%;
- }
- .gallery-columns-2 .gallery-item {
- max-width: 50%;
- }
- .gallery-columns-3 .gallery-item {
- max-width: 33.33%;
- }
- .gallery-columns-4 .gallery-item {
- max-width: 25%;
- }
- .gallery-columns-5 .gallery-item {
- max-width: 20%;
- }
- .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%;
- }
- .gallery-caption {
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 16px;
- left: 0;
- line-height: 1.25;
- max-width: 100%;
- margin: 0;
- min-width: 100%;
- padding: 5px 0;
- }
- .gallery-icon img {
- display: block;
- margin: 0 auto;
- }
- /* Google Maps */
- .googlemaps {
- margin-bottom: 30px;
- }
- .googlemaps br {
- display: none;
- }
- .googlemaps iframe {
- margin-bottom: 0;
- }
- /*--------------------------------------------------------------
- # Jetpack
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Contact Form
- --------------------------------------------------------------*/
- .site-content .contact-form > div {
- margin-bottom: 30px;
- }
- .site-content .contact-form label {
- margin-bottom: 0;
- }
- .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 {
- margin-bottom: 0;
- width: 100%;
- max-width: 100%;
- }
- .site-content .contact-form label span {
- color: #d11415;
- }
- .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;
- margin-bottom: 4px;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form > div {
- margin-bottom: 15px;
- }
- .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: 7px;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .site .slideshow-window {
- border-radius: 0;
- border-width: 15px;
- z-index: 0;
- }
- .site .tiled-gallery {
- margin-bottom: 30px;
- }
- /*--------------------------------------------------------------
- ## Infinite Scroll
- --------------------------------------------------------------*/
- .infinite-scroll .posts-navigation,
- .infinite-scroll.neverending .site-footer {
- display: none;
- }
- .infinity-end.neverending .site-footer {
- display: block;
- }
- #infinite-handle {
- border-top: 1px solid #eee;
- clear: both;
- font-family: Lato, sans-serif;
- font-weight: bold;
- margin: 0 0 30px;
- overflow: hidden;
- padding: 30px 0 0;
- text-align: center;
- }
- #infinite-handle span {
- background: transparent;
- border-radius: 0;
- display: inline-block;
- padding: 0;
- }
- #infinite-handle span button,
- #infinite-handle span button:active,
- #infinite-handle span button:focus,
- #infinite-handle span button:hover {
- background: #fff;
- border: 2px solid #eee;
- display: inline-block;
- font-size: 16px;
- line-height: 1.875;
- padding: 5.5px 13px;
- text-transform: uppercase;
- }
- #infinite-handle span button {
- color: #d11415;
- }
- #infinite-handle span button:active,
- #infinite-handle span button:focus,
- #infinite-handle span button:hover {
- background: #d11415;
- border-color: #d11415;
- color: #fff;
- }
- .infinite-loader {
- border-top: 1px solid #eee;
- clear: both;
- margin: 0 0 30px;
- overflow: hidden;
- padding: 75px 0 0;
- position: relative;
- text-align: center;
- }
- .infinite-loader .spinner {
- position: absolute;
- top: -22.5px !important;
- left: 50% !important;
- }
- .archive .infinite-wrap .hentry:first-of-type,
- .blog .infinite-wrap .hentry:first-of-type,
- .search .infinite-wrap .hentry:first-of-type {
- border-top: 1px solid #eee;
- padding-top: 30px;
- }
- #infinite-footer {
- background: #222;
- border-top: 0;
- color: #ccc;
- font-size: 13px;
- line-height: 1.54;
- padding: 12.5px 0;
- z-index: 99999;
- }
- #infinite-footer a:active,
- #infinite-footer a:focus,
- #infinite-footer a:hover {
- text-decoration: none;
- }
- #infinite-footer .container {
- background: transparent;
- border: 0;
- padding: 0;
- width: 90% !important;
- }
- #infinite-footer .blog-info a {
- color: #ccc;
- font-size: inherit;
- }
- #infinite-footer .blog-credits a {
- color: inherit;
- }
- #infinite-footer .blog-credits a:active,
- #infinite-footer .blog-credits a:focus,
- #infinite-footer .blog-credits a:hover,
- #infinite-footer .blog-info a:active,
- #infinite-footer .blog-info a:focus,
- #infinite-footer .blog-info a:hover {
- color: #fff;
- text-decoration: none;
- }
- #infinite-footer .blog-credits a:focus,
- #infinite-footer .blog-info a:focus {
- outline-color: rgba(255, 255, 255, 0.7)
- }
- #infinite-footer .blog-credits,
- #infinite-footer .blog-info {
- color: inherit;
- font-size: inherit;
- line-height: inherit;
- }
- /*--------------------------------------------------------------
- ## PollDaddy
- --------------------------------------------------------------*/
- .PDS_Poll {
- margin-bottom: 24px;
- }
- /*--------------------------------------------------------------
- ## Recipes
- --------------------------------------------------------------*/
- .site-content .jetpack-recipe {
- margin: 0 0 30px;
- padding: 30px 30px 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 30px;
- border-bottom: 0;
- }
- .site-content .jetpack-recipe-content br {
- display: none;
- }
- .site-content .jetpack-recipe .jetpack-recipe-meta {
- color: #777;
- 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 30px;
- }
- .jetpack-video-wrapper:empty {
- display: none;
- }
- /*--------------------------------------------------------------
- ## Sharedaddy
- --------------------------------------------------------------*/
- .hentry #jp-post-flair {
- padding: 0;
- }
- .entry-summary .sharedaddy {
- display: none !important;
- }
- .sd-like.jetpack-likes-widget-wrapper,
- .sd-rating,
- .sd-sharing-enabled:not(#jp-post-flair) {
- border-bottom: 1px solid #eee;
- margin: 0;
- padding: 7.5px 0;
- }
- .sd-like.jetpack-likes-widget-wrapper iframe {
- margin-bottom: 0;
- }
- .hentry div.sd-rating h3.sd-title,
- .hentry div.sharedaddy h3.sd-title {
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.2;
- margin: 0 0 7.5px;
- }
- .hentry div.sharedaddy .sd-content ul {
- margin-bottom: 0 !important;
- }
- div#jp-relatedposts {
- border-top: 1px solid #ddd;
- margin: 0;
- padding-top: 30px;
- position: relative;
- width: 100%;
- }
- div#jp-relatedposts a:focus {
- background: transparent;
- outline: 2px solid #ddd;
- }
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline {
- font-family: "Playfair Display", serif;
- font-size: 25px;
- font-weight: bold;
- line-height: 1.2;
- margin-bottom: 30px;
- }
- .hentry div#jp-relatedposts h3.jp-relatedposts-headline em {
- font-weight: inherit;
- }
- .comment .pd-rating,
- .hentry .pd-rating,
- .hentry .sd-sharing .share-count {
- line-height: 1 !important;
- }
- .comment .pd-rating {
- margin-bottom: 30px;
- }
- .hentry .post-likes-widget {
- margin-bottom: 30px;
- position: inherit !important;
- top: auto !important;
- }
- .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#jp-relatedposts div.jp-relatedposts-items {
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items p {
- font-size: 16px;
- line-height: 1.5;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post,
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
- opacity: 1;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- padding: 0;
- margin-bottom: 30px;
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
- margin-bottom: 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items.jp-relatedposts-items-minimal .jp-relatedposts-post {
- margin: 0 0 30px;
- padding: 0;
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title {
- font-family: "PT Serif", serif;
- font-size: 16px;
- font-weight: bold;
- letter-spacing: 0;
- line-height: 1.5;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a {
- border-bottom: 0;
- font-weight: inherit;
- text-decoration: none !important;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items span.jp-relatedposts-post-title {
- font-size: inherit;
- line-height: inherit;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-post-thumbs .jp-relatedposts-post-title {
- padding: 15px 0 0;
- }
- .hentry div#jp-relatedposts .jp-relatedposts-post-a {
- border-bottom: 0;
- }
- .hentry .pd-rating {
- line-height: 1;
- }
- .hentry .rating-msg {
- display: none;
- }
- /*--------------------------------------------------------------
- ## Site Logo
- --------------------------------------------------------------*/
- .site-logo-link {
- align-items: center;
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- margin: 0 auto;
- max-height: 90px;
- max-width: 70%;
- max-width: calc(100% - 120px);
- position: relative;
- z-index: 4;
- }
- .site-logo-link:active,
- .site-logo-link:focus,
- .site-logo-link:hover {
- opacity: 0.7;
- }
- .site-logo-link:focus {
- outline: none;
- }
- .site-logo-link img {
- display: block;
- height: auto;
- max-height: 90px;
- max-width: 100%;
- }
- /*--------------------------------------------------------------
- ## Widgets
- --------------------------------------------------------------*/
- /* Contact Info */
- .widget_contact_info .contact-map {
- margin-bottom: 15px;
- }
- .widget_contact_info > div:last-of-type {
- margin-bottom: 30px;
- }
- /* 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: 20px;
- line-height: 1.5;
- margin: 0 auto 30px;
- padding: 0;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
- margin-bottom: 30px;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
- font-size: 16px;
- line-height: 1.5 !important;
- margin: 0 0 30px !important;
- }
- .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 + p {
- margin-top: -30px !important;
- }
- /* Goodreads */
- .widget_goodreads .gr_custom_widget {
- margin-bottom: 30px;
- }
- .widget_goodreads br,
- .widget_goodreads center {
- display: none;
- }
- .widget_goodreads h2[class^="gr_custom_header"] {
- font-size: 20px;
- line-height: 1.5;
- margin: 0 auto 30px;
- }
- .widget_goodreads div[class^="gr_custom_title"] a {
- color: #d11415;
- }
- .widget_goodreads div[class^="gr_custom_title"] a:active,
- .widget_goodreads div[class^="gr_custom_title"] a:focus,
- .widget_goodreads div[class^="gr_custom_title"] a:hover {
- color: #222;
- }
- .widget_goodreads div[class^="gr_custom_container"] {
- padding: 0;
- background: transparent;
- border: 0;
- color: inherit;
- border-radius: 0;
- }
- .widget_goodreads div[class^="gr_custom_each_container"] {
- padding: 15px 0;
- margin: 0;
- border-top: 1px solid #eee;
- border-bottom: 0;
- }
- .widget_goodreads div[class^="gr_custom_each_container"]:last-of-type {
- border-bottom: 1px solid #eee;
- }
- .widget_goodreads div[class^="gr_custom_title"] {
- font-weight: bold;
- }
- .widget_goodreads div[class^="gr_custom_author"] {
- color: #777;
- font-family: Lato, sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1.54;
- padding: 5px 0;
- text-transform: uppercase;
- }
- .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a {
- border-bottom: 0;
- color: inherit;
- }
- .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:active,
- .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:focus,
- .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:hover {
- color: #222;
- }
- .widget_goodreads center a {
- border-bottom: 0;
- }
- /* Gravatar Profile */
- .widget-grofile .grofile-thumbnail {
- border-radius: 50%;
- float: right;
- margin-bottom: -60px;
- max-width: 60px;
- }
- .widget-grofile h4 {
- font-size: 20px;
- line-height: 1.5;
- margin: 0 0 45px !important;
- max-width: 180px;
- }
- .widget-grofile .grofile-meta {
- clear: both;
- }
- .widget-grofile .grofile-meta + p {
- clear: both;
- margin-top: -30px;
- }
- .widget-grofile .grofile-full-link {
- display: inline-block;
- }
- /* Image */
- .widget_image .jetpack-image-container {
- margin-bottom: 30px;
- }
- .widget_image .jetpack-image-container img {
- vertical-align: middle;
- }
- .widget_image .jetpack-image-container .wp-caption {
- margin-bottom: 0;
- }
- /* RSS Links */
- .widget_rss_links ul {
- border-bottom: 1px solid #eee;
- list-style: none;
- margin-left: 0;
- }
- .widget_rss_links li {
- border-top: 1px solid #eee;
- padding-bottom: 15px;
- padding-top: 15px;
- }
- .widget_rss_links a {
- border-bottom: 0;
- }
- .widget_rss_links p {
- border-top: 1px solid #eee;
- margin-bottom: 15px;
- padding-top: 15px;
- }
- .widget_rss_links p:last-of-type {
- border-bottom: 1px solid #eee;
- margin-bottom: 30px;
- padding-bottom: 15px;
- }
- .widget_rss_links p a + a {
- margin-left: 11px;
- }
- .widget_rss_links img {
- vertical-align: middle;
- }
- /*--------------------------------------------------------------
- # Eventbrite
- --------------------------------------------------------------*/
- .eventbrite-event .entry-header span {
- padding-right: 12px;
- }
- .eventbrite-event .entry-header span:last-of-type {
- padding-right: 0;
- }
- /*--------------------------------------------------------------
- # Transitions
- --------------------------------------------------------------*/
- button,
- input,
- textarea,
- #infinite-handle button,
- .featured-content .post-thumbnail,
- .post-link .genericon,
- .post-navigation .meta-nav,
- .post-navigation .post-title,
- .hentry:not(.format-gallery):not(.format-image) .post-thumbnail,
- .post-thumbnail:before,
- .post-thumbnail img,
- .search-form:before,
- .site,
- .site-info .sep,
- .sticky-post {
- transition: all 350ms ease-in-out;
- }
- a {
- transition: color 350ms ease-in-out, background-color 350ms ease-in-out;
- }
- /*--------------------------------------------------------------
- # Responsive
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## x >= 600px
- --------------------------------------------------------------*/
- @media screen and (min-width: 600px) {
- /* Logo */
- .site-logo-link {
- max-width: 580px;
- }
- /* Primary Menu */
- .menu-toggle {
- height: 60px;
- margin-top: -30px;
- width: 60px;
- }
- .menu-toggle:before {
- font-size: 16px;
- height: 58px;
- line-height: 58px;
- width: 58%;
- }
- .main-navigation.toggled > div:before {
- right: 24px;
- }
- /* Paging Navigation */
- .comment-navigation,
- .post-navigation,
- .posts-navigation {
- margin-bottom: 60px;
- }
- .comment-navigation + .comment-respond,
- .posts-navigation {
- padding-top: 60px;
- }
- .comment-navigation .nav-next a:after,
- .comment-navigation .nav-previous a:before,
- .posts-navigation .nav-next a:after,
- .posts-navigation .nav-previous a:before {
- content: '\f429';
- font-size: 16px;
- line-height: 1.875;
- width: 20px;
- }
- .comment-navigation .nav-previous a:before,
- .posts-navigation .nav-previous a:before {
- content: '\f430';
- }
- /* Widgets */
- .sidebar-toggle {
- height: 60px;
- margin-bottom: 60px;
- margin-left: -30px;
- width: 60px;
- }
- .sidebar-toggle:before {
- height: 58px;
- line-height: 58px;
- width: 58px;
- }
- .widget {
- padding-bottom: 30px;
- }
- .footer-widget {
- padding-top: 60px;
- }
- .footer-widget-inner .widget {
- border-bottom: 0;
- margin-bottom: 0;
- }
- /* Grid */
- .author-info {
- margin: 30px 0 60px;
- }
- .site-main,
- .widget-area {
- padding-top: 60px;
- }
- .widget-area:before {
- margin-top: -60px;
- }
- /* Header */
- .site-branding {
- min-height: 60px;
- }
- .site-description,
- .site-title {
- margin: 0 90px;
- }
- .site-title {
- font-size: 31px;
- line-height: 1.452;
- }
- .search-toggle {
- height: 60px;
- width: 60px;
- }
- .search-toggle:before {
- font-size: 24px;
- height: 58px;
- line-height: 58px;
- width: 58px;
- }
- .toggled .search-toggle:before {
- font-size: 16px;
- }
- /* Posts & Pages */
- .archive .hentry,
- .blog .hentry,
- .search .hentry {
- margin-bottom: 60px;
- padding-top: 60px;
- }
- .archive .hentry:first-of-type,
- .blog .hentry:first-of-type,
- .search .hentry:first-of-type {
- margin-top: -60px;
- }
- .page .entry-footer {
- margin-bottom: 30px;
- margin-top: 30px;
- }
- .page-header {
- margin-bottom: 60px;
- padding-bottom: 30px;
- }
- .page .hentry:not(.has-post-thumbnail) .entry-header,
- .single .hentry:not(.has-post-thumbnail) .entry-header,
- .single .hentry.format-quote .entry-header,
- .single .hentry.format-video .entry-header {
- margin-bottom: 30px;
- }
- .entry-header-wrapper {
- padding-top: 60px;
- }
- .page-content {
- padding-bottom: 30px;
- }
- .content-area .format-standard a.post-thumbnail {
- height: 240px;
- }
- /* Post Formats */
- body:not(.single) .content-area .format-gallery.has-post-thumbnail,
- body:not(.single) .content-area .format-image.has-post-thumbnail {
- padding-top: 90px;
- }
- .post-link {
- height: 240px;
- }
- /* Comments */
- .comments-area {
- padding-top: 60px;
- }
- .no-comments {
- margin-bottom: 60px;
- }
- .comment-list {
- margin-bottom: 60px;
- padding-bottom: 30px;
- }
- .comment-form {
- padding-bottom: 30px;
- }
- /* Infinite Scroll */
- #infinite-handle {
- margin-bottom: 60px;
- padding-top: 60px;
- }
- .infinite-loader {
- margin-bottom: 60px;
- padding-top: 105px;
- }
- .archive .infinite-wrap .hentry:first-of-type,
- .blog .infinite-wrap .hentry:first-of-type,
- .search .infinite-wrap .hentry:first-of-type {
- padding-top: 60px;
- }
- /* Sharedaddy */
- div#jp-relatedposts {
- margin-top: 30px;
- padding-top: 61px;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
- margin-bottom: 30px;
- }
- /* Site Logo */
- .site-logo-link {
- padding: 0 90px;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 768px
- --------------------------------------------------------------*/
- @media screen and (min-width: 768px) {
- /* Typography */
- body {
- font-size: 20px;
- }
- /* Grid */
- .bottom-navigation > div,
- .bottom-social > div,
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 648px;
- }
- .footer-widget-inner .widget {
- width: 294px;
- }
- .author-info .author-heading {
- max-width: 496px;
- }
- .footer-widget-inner .widget {
- float: left;
- }
- .footer-widget-inner .widget {
- margin-left: 30px;
- margin-right: 30px;
- }
- .footer-widget-inner .widget:nth-of-type(even) {
- clear: right;
- margin-right: 0;
- }
- .footer-widget-inner .widget:nth-of-type(odd) {
- clear: left;
- margin-left: 0;
- }
- /* Header */
- .site-title {
- font-size: 49px;
- line-height: 1.225;
- }
- /* Featured Content */
- .blog .featured-content .hentry {
- height: 350px;
- width: 309px;
- }
- .blog .featured-content .hentry:first-of-type {
- height: 300px;
- width: 100%;
- }
- .blog .featured-content .hentry:nth-of-type(2),
- .blog .featured-content .hentry:nth-of-type(4) {
- margin-right: 30px;
- }
- /* Posts & Pages */
- .content-area .format-standard a.post-thumbnail {
- float: left;
- height: 100%;
- margin-bottom: 0;
- margin-right: 30px;
- overflow: visible;
- width: 196px;
- }
- .content-area .format-standard a.post-thumbnail img {
- position: inherit;
- top: auto;
- -webkit-transform: none;
- transform: none;
- }
- .content-area .format-standard.has-post-thumbnail .entry-header {
- float: right;
- width: 422px;
- }
- .content-area .format-standard.has-post-thumbnail > .entry-meta,
- .content-area .format-standard.has-post-thumbnail .entry-summary {
- clear: right;
- }
- .author-info .author-avatar {
- display: block;
- float: right;
- width: 60px;
- }
- /* Post Formats */
- .post-link {
- float: left;
- height: 174px;
- margin-bottom: 0;
- margin-right: 30px;
- width: 196px;
- }
- .archive .format-link .entry-header,
- .blog .format-link .entry-header,
- .search .format-link .entry-header {
- float: right;
- width: 422px;
- }
- .archive .format-link > .entry-meta,
- .blog .format-link > .entry-meta,
- .search .format-link > .entry-meta,
- .archive .format-link .entry-summary,
- .blog .format-link .entry-summary,
- .search .format-link .entry-summary {
- clear: right;
- }
- /* Infinite Scroll */
- #infinite-footer .container {
- width: 648px !important;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 840px
- --------------------------------------------------------------*/
- @media screen and (min-width: 840px) {
- /* Grid */
- .bottom-navigation > div,
- .bottom-social > div,
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 720px;
- }
- .footer-widget-inner .widget {
- width: 330px;
- }
- .author-info .author-heading {
- max-width: 568px;
- }
- /* Featured Content */
- .blog .featured-content .hentry {
- height: 300px;
- width: 345px;
- }
- /* Posts & Pages */
- .content-area .format-standard a.post-thumbnail {
- width: 220px;
- }
- .content-area .format-standard.has-post-thumbnail .entry-header {
- width: 470px;
- }
- /* Post Formats */
- .post-link {
- height: 195px;
- width: 220px;
- }
- .archive .format-link .entry-header,
- .blog .format-link .entry-header,
- .search .format-link .entry-header {
- width: 470px;
- }
- /* Infinite Scroll */
- #infinite-footer .container {
- width: 720px !important;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 960px
- --------------------------------------------------------------*/
- @media screen and (min-width: 960px) {
- /* Primary Menu */
- .menu-toggle {
- display: none;
- }
- .main-navigation {
- float: left;
- z-index: 99;
- }
- .main-navigation > div {
- display: block;
- margin: 0 auto;
- width: auto;
- }
- .main-navigation.toggled > div {
- background: #fff;
- border: 0;
- box-shadow: none;
- position: relative;
- top: auto;
- margin-top: 0;
- width: 100%;
- left: auto;
- padding: 0;
- z-index: 9998;
- }
- .main-navigation > div:before {
- background: #fff;
- content: "";
- display: block;
- height: 100%;
- position: absolute;
- width: 1px;
- z-index: 1;
- }
- .main-navigation > div > ul {
- border: 0;
- padding: 0;
- }
- .main-navigation > div > ul > li:last-child {
- border-bottom: 0;
- }
- .main-navigation ul {
- border-bottom: 0;
- }
- .main-navigation ul.toggled {
- border-bottom: 0;
- display: none;
- margin-bottom: 0;
- margin-top: 0;
- padding-left: 0;
- }
- .main-navigation li {
- border-top: 0;
- float: left;
- padding: 0 15px;
- }
- .main-navigation .nav-menu > li + li {
- border-left: 1px solid #eee;
- }
- .main-navigation .menu-item-has-children {
- padding-right: 38.5px;
- position: relative;
- }
- .main-navigation .page_item_has_children > a,
- .main-navigation .menu-item-has-children > a {
- padding-right: 0;
- position: static;
- }
- .main-navigation .menu-item-has-children > a:after {
- color: #d11415;
- content: "\f431";
- font-size: 16px;
- height: 16px;
- line-height: 1;
- margin-top: -8px;
- position: absolute;
- top: 50%;
- right: 15px;
- width: 16px;
- }
- .main-navigation ul ul .menu-item-has-children > a:after {
- -webkit-transform: rotate(-90deg);
- transform: rotate(-90deg);
- }
- .main-navigation ul ul {
- background: #fff;
- border: 1px solid #ddd;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
- float: left;
- padding: 15px 0;
- position: absolute;
- top: 1.875em;
- left: -999em;
- z-index: 99999;
- }
- .main-navigation ul ul ul {
- left: -999em;
- top: -16px;
- }
- .main-navigation ul ul a {
- width: 208px;
- }
- .main-navigation ul ul li {
- background: #fff;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul .focus > ul {
- display: block;
- left: auto;
- margin-left: -16px;
- }
- .main-navigation ul ul li:hover > ul,
- .main-navigation ul ul .focus > ul {
- left: 100%;
- }
- /* Social Menu */
- .bottom-social {
- display: none;
- }
- .social-navigation {
- border-bottom: 0;
- float: right;
- padding-bottom: 0;
- padding-left: 15px;
- padding-top: 0;
- }
- .social-navigation a:before {
- font-size: 16px;
- }
- /* Secondary Menu */
- .secondary-navigation {
- display: block;
- float: left;
- }
- /* Bottom Menu */
- .bottom-navigation {
- display: none;
- }
- /* Footer Menu */
- .footer-navigation ul {
- padding: 3px 0;
- }
- .footer-navigation li {
- border-top: 0;
- float: left;
- padding: 0 10px;
- }
- .footer-navigation li:first-child {
- padding-left: 0;
- }
- .footer-navigation li:last-child {
- padding-right: 0;
- }
- .footer-navigation li + li {
- border-left: 1px solid #eee;
- }
- .footer-navigation a {
- padding: 0;
- }
- /* Widgets */
- .sidebar-toggle {
- display: none;
- }
- .widget-area {
- display: block;
- }
- .widget_calendar td,
- .widget_calendar tr {
- padding-left: 0;
- padding-right: 0;
- }
- /* Grid */
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .header-image-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 840px;
- }
- .site-main {
- width: 615px;
- }
- .widget-area {
- width: 226px;
- }
- .author-info {
- width: 225px;
- }
- .footer-widget-inner .widget {
- width: 165px;
- }
- .comments-area {
- margin-right: -60px;
- padding-right: 60px;
- }
- .site-main {
- border-right: 1px solid #ddd;
- float: left;
- padding-right: 60px;
- }
- .widget-area {
- border-left: 1px solid #ddd;
- float: right;
- margin-left: -1px;
- padding-left: 60px;
- padding-top: 60px;
- }
- .widget-area:before {
- display: none;
- }
- .footer-widget-inner .widget:nth-of-type(even),
- .footer-widget-inner .widget:nth-of-type(odd) {
- clear: none;
- margin-left: 30px;
- margin-right: 30px;
- }
- .footer-widget-inner .widget:nth-of-type(4n+1) {
- clear: left;
- margin-left: 0;
- }
- .footer-widget-inner .widget:nth-of-type(4n+4) {
- clear: right;
- margin-right: 0;
- }
- /* Header */
- .no-site-branding .site-header {
- padding-top: 0;
- }
- .site-top {
- display: block;
- }
- .no-site-branding .site-top {
- margin: 0;
- }
- .site-branding {
- min-height: 0;
- }
- .site-description,
- .site-title {
- padding-left: 0;
- padding-right: 0;
- }
- .search-navigation {
- border-top: 1px solid #ddd;
- margin-bottom: -15px;
- margin-top: 30px;
- padding-top: 15px;
- position: relative;
- top: auto;
- }
- .no-site-branding .site-branding + .search-navigation {
- margin-top: 0;
- }
- .search-navigation-inner {
- align-items: center;
- -webkit-align-items: center;
- display: block;
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .search-toggle {
- height: 30px;
- width: 30px;
- z-index: 0;
- }
- .search-toggle:before {
- font-size: 16px;
- height: 28px;
- line-height: 28px;
- width: 28px;
- }
- .search-header.toggled .search-toggle:before {
- font-size: 12px;
- }
- .header-image {
- border-top: 1px solid #ddd;
- margin: 30px 0 -15px;
- padding: 30px 0 15px;
- }
- .no-site-branding .header-image {
- margin-top: 0;
- }
- /* Featured Content */
- .blog .featured-content .hentry {
- height: 350px;
- width: 345px;
- }
- .blog .featured-content .hentry:first-of-type {
- margin-right: 30px;
- height: 350px;
- width: 550px;
- }
- .blog .featured-content .hentry:nth-of-type(2) {
- margin-right: 0;
- width: 260px;
- }
- .blog .featured-content .hentry:nth-of-type(3),
- .blog .featured-content .hentry:nth-of-type(4),
- .blog .featured-content .hentry:nth-of-type(5) {
- width: 260px;
- }
- .blog .featured-content .hentry:nth-of-type(3) {
- margin-right: 30px;
- }
- /* Posts & Pages */
- .entry-header-wrapper {
- background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
- bottom: 0;
- left: 0;
- padding-bottom: 60px;
- position: absolute;
- }
- .entry-hero .entry-title {
- color: #fff;
- }
- .entry-hero .entry-meta,
- .entry-hero .entry-title {
- max-width: 930px;
- text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
- }
- .entry-hero .entry-meta,
- .entry-hero .entry-meta a {
- color: #fff;
- }
- .entry-hero .entry-meta a:active,
- .entry-hero .entry-meta a:focus,
- .entry-hero .entry-meta a:hover {
- color: #fff;
- opacity: 0.7;
- }
- .entry-hero .entry-meta a:focus {
- outline-color: rgba(255, 255, 255, 0.7);
- }
- .content-area .format-standard a.post-thumbnail {
- width: 165px;
- }
- .content-area .format-standard.has-post-thumbnail .entry-header {
- width: 359px;
- }
- .author-info {
- border-left: 0;
- border-right: 0;
- border-top: 0;
- margin: 0;
- margin-bottom: 60px;
- margin-left: -60px;
- padding: 0;
- padding-bottom: 30px;
- padding-left: 60px;
- }
- .author-info .author-avatar {
- display: none;
- }
- .author-info .author-heading {
- float: none;
- max-width: 100%;
- }
- /* Post Formats */
- .post-link {
- height: 147px;
- width: 165px;
- }
- .archive .format-link .entry-header,
- .blog .format-link .entry-header,
- .search .format-link .entry-header {
- width: 359px;
- }
- /* Comments */
- .comment-list:before,
- .comment-navigation + .comment-respond:before {
- background: #ddd;
- content: "";
- display: block;
- height: 1px;
- position: absolute;
- right: -60px;
- width: 100%;
- }
- .comment-list:before {
- bottom: -1px;
- }
- .comment-navigation + .comment-respond:before {
- top: -1px;
- }
- /* Infinite Scroll */
- #infinite-footer .container {
- width: 840px !important;
- }
- /* Sharedaddy */
- div#jp-relatedposts:before {
- background: #ddd;
- content: "";
- display: block;
- height: 1px;
- position: absolute;
- right: -60px;
- top: -1px;
- width: 100%;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- margin: 0 15px;
- width: 164.6666667px;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:first-of-type {
- margin-left: 0;
- }
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
- margin-right: 0;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 1080px
- --------------------------------------------------------------*/
- @media screen and (min-width: 1080px) {
- /* Grid */
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .header-image-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 960px;
- }
- .site-main {
- width: 705px;
- }
- .widget-area {
- width: 256px;
- }
- .author-info {
- width: 255px;
- }
- .footer-widget-inner .widget {
- width: 195px;
- }
- /* Featured Content */
- .blog .featured-content .hentry:first-of-type {
- height: 430px;
- margin-right: 0;
- width: 630px;
- }
- .blog .featured-content .hentry:nth-of-type(2),
- .blog .featured-content .hentry:nth-of-type(3) {
- height: 370px;
- margin-left: 30px;
- margin-right: 0;
- width: 300px;
- }
- .blog .featured-content .hentry:nth-of-type(4),
- .blog .featured-content .hentry:nth-of-type(5) {
- height: 310px;
- margin-right: 0;
- margin-top: -340px;
- width: 300px;
- }
- .blog .featured-content .hentry:nth-of-type(5) {
- margin-left: 330px;
- }
- /* Posts & Pages */
- .content-area .format-standard a.post-thumbnail {
- width: 195px;
- }
- .content-area .format-standard.has-post-thumbnail .entry-header {
- width: 419px;
- }
- .author-info .author-avatar {
- display: block;
- }
- .author-info .author-heading {
- float: left;
- max-width: 120px;
- }
- /* Post Formats */
- .post-link {
- height: 173px;
- width: 195px;
- }
- .archive .format-link .entry-header,
- .blog .format-link .entry-header,
- .search .format-link .entry-header {
- width: 419px;
- }
- /* Infinite Scroll */
- #infinite-footer .container {
- width: 960px !important;
- }
- /* Sharedaddy */
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- width: 194.6666667px;
- }
- }
- /*--------------------------------------------------------------
- ## x >= 1380px
- --------------------------------------------------------------*/
- @media screen and (min-width: 1380px) {
- /* Grid */
- .entry-header-inner,
- .featured-content-inner,
- .footer-navigation > div,
- .footer-widget-inner,
- .header-image-inner,
- .search-navigation-inner,
- .site-branding,
- .site-content-inner,
- .site-info,
- .site-top-inner {
- width: 1260px;
- }
- .page .comments-area,
- .site-main {
- width: 930px;
- }
- .comments-area {
- width: 600px;
- }
- div#jp-relatedposts,
- .single .entry-content {
- width: 540px;
- }
- .author-info {
- width: 330px;
- }
- .widget-area {
- width: 331px;
- }
- .entry-footer,
- .footer-widget-inner .widget {
- width: 270px;
- }
- div#jp-relatedposts,
- .comments-area,
- .single .entry-content {
- float: right;
- }
- /* Featured Content */
- .blog .featured-content .hentry:first-of-type {
- height: 500px;
- width: 830px;
- }
- .blog .featured-content .hentry:nth-of-type(2),
- .blog .featured-content .hentry:nth-of-type(3) {
- height: 375px;
- margin-left: 30px;
- width: 400px;
- }
- .blog .featured-content .hentry:nth-of-type(4),
- .blog .featured-content .hentry:nth-of-type(5) {
- height: 250px;
- margin-top: -280px;
- width: 400px;
- }
- .blog .featured-content .hentry:nth-of-type(5) {
- margin-left: 430px;
- }
- /* Posts & Pages */
- .content-area .format-standard a.post-thumbnail {
- width: 270px;
- }
- .content-area .format-standard.has-post-thumbnail .entry-header {
- width: 569px;
- }
- .author-info .author-heading {
- max-width: 180px;
- }
- /* Post Formats */
- .post-link {
- height: 240px;
- width: 270px;
- }
- .archive .format-link .entry-header,
- .blog .format-link .entry-header,
- .search .format-link .entry-header {
- width: 569px;
- }
- /* Infinite Scroll */
- #infinite-footer .container {
- width: 1260px !important;
- }
- /* Sharedaddy */
- .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
- width: 160px;
- }
- }
|