123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538 |
- /**
- * These styles should be loaded by the Block Editor only
- */
- :root, body {
- /* Globals */
- /* Font Family */
- /* Font Size */
- /* Line Height */
- /* Colors */
- /* Spacing */
- /* Elevation */
- /* Other */
- /* Elements */
- /* Blocks */
- /* Components */
- /* Vendors */
- }
- /**
- * Repsonsive Styles
- */
- /**
- * Required Variables
- */
- /**
- * Root Media Query Variables
- */
- /**
- * Extends
- */
- .default-max-width {
- max-width: 100%;
- margin-left: auto;
- margin-right: auto;
- }
- @media only screen and (min-width: 482px) {
- .default-max-width {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .default-max-width {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 652px) {
- .default-max-width {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 822px) {
- .default-max-width {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .default-max-width {
- max-width: 602px;
- }
- }
- .wide-max-width {
- max-width: 100%;
- margin-left: auto;
- margin-right: auto;
- }
- @media only screen and (min-width: 482px) {
- .wide-max-width {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .wide-max-width {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 652px) {
- .wide-max-width {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 822px) {
- .wide-max-width {
- max-width: 772px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .wide-max-width {
- max-width: 772px;
- }
- }
- @media only screen and (min-width: 482px) {
- .full-max-width {
- max-width: 100%;
- width: auto;
- margin-left: auto;
- margin-right: auto;
- }
- }
- /**
- * Output
- */
- a {
- border-bottom: 1px solid #3C8067;
- color: #000000;
- text-decoration: none;
- transition: border-color 0.1s ease-out;
- }
- a:hover, a:focus {
- border-bottom-color: transparent;
- }
- a:hover {
- color: #3C8067;
- }
- a:focus {
- color: #3C8067;
- }
- a:active {
- color: #000000;
- }
- .has-link-color a {
- border-bottom: 1px solid #000000;
- }
- .has-link-color a:hover, .has-link-color a:focus {
- border-bottom-color: transparent;
- }
- .has-background:not(.has-background-background-color) .has-link-color a {
- color: #000000;
- }
- .has-background:not(.has-background-background-color).has-link-color a {
- color: #000000;
- }
- button,
- a {
- cursor: pointer;
- }
- body {
- color: #333333;
- background-color: #FFFFFF;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 18px;
- font-weight: normal;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- }
- .editor-post-title__block {
- font-size: 18px;
- }
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- blockquote {
- margin: 0;
- padding: 0;
- }
- blockquote p {
- font-size: 24px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- blockquote cite {
- color: #444444;
- font-size: 14px;
- letter-spacing: normal;
- }
- blockquote footer {
- color: #444444;
- font-size: 14px;
- letter-spacing: normal;
- }
- blockquote > * {
- margin-top: 20px;
- margin-bottom: 20px;
- }
- blockquote > *:first-child {
- margin-top: 0;
- }
- blockquote > *:last-child {
- margin-bottom: 0;
- }
- blockquote.alignleft, blockquote.alignright {
- padding-left: inherit;
- }
- blockquote.alignleft p {
- font-size: 18px;
- max-width: inherit;
- width: inherit;
- }
- blockquote.alignright p {
- font-size: 18px;
- max-width: inherit;
- width: inherit;
- }
- blockquote.alignleft cite {
- font-size: 14px;
- letter-spacing: normal;
- }
- blockquote.alignleft footer {
- font-size: 14px;
- letter-spacing: normal;
- }
- blockquote.alignright cite {
- font-size: 14px;
- letter-spacing: normal;
- }
- blockquote.alignright footer {
- font-size: 14px;
- letter-spacing: normal;
- }
- /* Media captions */
- figcaption {
- color: #444444;
- font-size: 14px;
- line-height: 1.7;
- margin-top: 10px;
- margin-bottom: 20px;
- text-align: center;
- }
- .wp-caption {
- color: #444444;
- font-size: 14px;
- line-height: 1.7;
- margin-top: 10px;
- margin-bottom: 20px;
- text-align: center;
- }
- .wp-caption-text {
- color: #444444;
- font-size: 14px;
- line-height: 1.7;
- margin-top: 10px;
- margin-bottom: 20px;
- text-align: center;
- }
- .alignleft figcaption,
- .alignright figcaption, .alignleft
- .wp-caption,
- .alignright
- .wp-caption, .alignleft
- .wp-caption-text,
- .alignright
- .wp-caption-text {
- margin-bottom: 0;
- }
- /* WP Smiley */
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- /* Make sure embeds and iframes fit their containers. */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- .wp-block-button__link {
- color: #FFFFFF;
- font-weight: normal;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 1em;
- line-height: 1;
- background-color: #3C8067;
- border-radius: 4px;
- padding: 23px 25px;
- }
- .wp-block-button__link:hover {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-button__link:focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-button__link.has-focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-button__link.is-style-outline {
- color: #3C8067;
- background: transparent;
- border: 2px solid currentcolor;
- }
- .is-style-outline .wp-block-button__link {
- color: #3C8067;
- background: transparent;
- border: 2px solid currentcolor;
- }
- .wp-block-button__link.is-style-squared,
- .is-style-squared .wp-block-button__link {
- border-radius: 0;
- }
- div[data-type="core/button"] {
- display: block;
- }
- .wp-block-cover {
- background-color: #000000;
- min-height: 450px;
- margin-top: inherit;
- margin-bottom: inherit;
- }
- .wp-block-cover-image {
- background-color: #000000;
- min-height: 450px;
- margin-top: inherit;
- margin-bottom: inherit;
- }
- .wp-block-cover .wp-block-cover__inner-container,
- .wp-block-cover .wp-block-cover-image-text,
- .wp-block-cover .wp-block-cover-text,
- .wp-block-cover .block-editor-block-list__block,
- .wp-block-cover-image .wp-block-cover__inner-container,
- .wp-block-cover-image .wp-block-cover-image-text,
- .wp-block-cover-image .wp-block-cover-text,
- .wp-block-cover-image .block-editor-block-list__block {
- color: currentColor;
- }
- .wp-block-cover .wp-block-cover__inner-container a:not(.has-text-color),
- .wp-block-cover .wp-block-cover-image-text a:not(.has-text-color),
- .wp-block-cover .wp-block-cover-text a:not(.has-text-color),
- .wp-block-cover .block-editor-block-list__block a:not(.has-text-color),
- .wp-block-cover-image .wp-block-cover__inner-container a:not(.has-text-color),
- .wp-block-cover-image .wp-block-cover-image-text a:not(.has-text-color),
- .wp-block-cover-image .wp-block-cover-text a:not(.has-text-color),
- .wp-block-cover-image .block-editor-block-list__block a:not(.has-text-color) {
- color: currentColor;
- }
- .wp-block-cover .wp-block-cover__inner-container .has-link-color a {
- color: #000000;
- }
- .wp-block-cover .wp-block-cover-image-text .has-link-color a {
- color: #000000;
- }
- .wp-block-cover .wp-block-cover-text .has-link-color a {
- color: #000000;
- }
- .wp-block-cover .block-editor-block-list__block .has-link-color a {
- color: #000000;
- }
- .wp-block-cover-image .wp-block-cover__inner-container .has-link-color a {
- color: #000000;
- }
- .wp-block-cover-image .wp-block-cover-image-text .has-link-color a {
- color: #000000;
- }
- .wp-block-cover-image .wp-block-cover-text .has-link-color a {
- color: #000000;
- }
- .wp-block-cover-image .block-editor-block-list__block .has-link-color a {
- color: #000000;
- }
- .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container {
- color: #FAFBF6;
- }
- .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text {
- color: #FAFBF6;
- }
- .wp-block-cover:not([class*='background-color']) .wp-block-cover-text {
- color: #FAFBF6;
- }
- .wp-block-cover:not([class*='background-color']) .block-editor-block-list__block {
- color: #FAFBF6;
- }
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container {
- color: #FAFBF6;
- }
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text {
- color: #FAFBF6;
- }
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
- color: #FAFBF6;
- }
- .wp-block-cover-image:not([class*='background-color']) .block-editor-block-list__block {
- color: #FAFBF6;
- }
- .wp-block-cover h2 {
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- padding: 0;
- max-width: inherit;
- text-align: inherit;
- }
- .wp-block-cover-image h2 {
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- padding: 0;
- max-width: inherit;
- text-align: inherit;
- }
- .wp-block-cover h2.has-text-align-left,
- .wp-block-cover-image h2.has-text-align-left {
- text-align: left;
- }
- .wp-block-cover h2.has-text-align-center,
- .wp-block-cover-image h2.has-text-align-center {
- text-align: center;
- }
- .wp-block-cover h2.has-text-align-right,
- .wp-block-cover-image h2.has-text-align-right {
- text-align: right;
- }
- .wp-block-file .wp-block-file__textlink {
- border-bottom: 1px solid #3C8067;
- color: #000000;
- text-decoration: none;
- }
- .wp-block-file .wp-block-file__button {
- color: #FFFFFF;
- font-weight: normal;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 1em;
- line-height: 1;
- background-color: #3C8067;
- border-radius: 4px;
- padding: 12px 13px;
- }
- .wp-block-file .wp-block-file__button:hover {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-file .wp-block-file__button:focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-file .wp-block-file__button.has-focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-gallery figcaption {
- margin-bottom: 0;
- }
- .wp-block-group.has-background {
- padding: 30px;
- }
- .wp-block-group .wp-block-group.has-background > .block-editor-block-list__layout > [data-align="full"] {
- margin: 0;
- width: 100%;
- }
- .wp-block-heading h1 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h1 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h1 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h2 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h2 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h2 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h3 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h3 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h3 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h4 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h4 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h4 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h5 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h5 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h5 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h6 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- h6 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .h6 {
- clear: both;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- }
- .wp-block-heading h1 strong {
- font-weight: 600;
- }
- h1 strong {
- font-weight: 600;
- }
- .h1 strong {
- font-weight: 600;
- }
- .wp-block-heading h2 strong {
- font-weight: 600;
- }
- h2 strong {
- font-weight: 600;
- }
- .h2 strong {
- font-weight: 600;
- }
- .wp-block-heading h3 strong {
- font-weight: 600;
- }
- h3 strong {
- font-weight: 600;
- }
- .h3 strong {
- font-weight: 600;
- }
- .wp-block-heading h4 strong {
- font-weight: 600;
- }
- h4 strong {
- font-weight: 600;
- }
- .h4 strong {
- font-weight: 600;
- }
- .wp-block-heading h5 strong {
- font-weight: 600;
- }
- h5 strong {
- font-weight: 600;
- }
- .h5 strong {
- font-weight: 600;
- }
- .wp-block-heading h6 strong {
- font-weight: 600;
- }
- h6 strong {
- font-weight: 600;
- }
- .h6 strong {
- font-weight: 600;
- }
- .wp-block-heading h1 {
- font-size: 48px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- h1 {
- font-size: 48px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .h1 {
- font-size: 48px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .wp-block-heading h2 {
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- h2 {
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .h2 {
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .wp-block-heading h3 {
- font-size: 28px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- h3 {
- font-size: 28px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .h3 {
- font-size: 28px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .wp-block-heading h4 {
- font-size: 24px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- h4 {
- font-size: 24px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .h4 {
- font-size: 24px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .wp-block-heading h5 {
- font-size: 18px;
- letter-spacing: normal;
- line-height: undefined;
- }
- h5 {
- font-size: 18px;
- letter-spacing: normal;
- line-height: undefined;
- }
- .h5 {
- font-size: 18px;
- letter-spacing: normal;
- line-height: undefined;
- }
- .wp-block-heading h6 {
- font-size: 1em;
- letter-spacing: normal;
- line-height: undefined;
- }
- h6 {
- font-size: 1em;
- letter-spacing: normal;
- line-height: undefined;
- }
- .h6 {
- font-size: 1em;
- letter-spacing: normal;
- line-height: undefined;
- }
- .wp-block-heading h1[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h1[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h1[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .wp-block-heading h2[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h2[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h2[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .wp-block-heading h3[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h3[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h3[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .wp-block-heading h4[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h4[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h4[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .wp-block-heading h5[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h5[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h5[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .wp-block-heading h6[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- h6[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- .h6[style*="--wp--typography--line-height"] {
- line-height: undefined;
- }
- /* Center image block by default in the editor */
- .wp-block-image > div {
- text-align: center;
- }
- [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
- margin: 0 auto;
- }
- .wp-block-latest-comments {
- margin-left: 0;
- }
- .wp-block-latest-posts {
- padding-left: 0;
- }
- .wp-block-latest-posts:not(.is-grid) > li {
- margin-top: 30px;
- margin-bottom: 30px;
- }
- .wp-block-latest-posts:not(.is-grid) > li:first-child {
- margin-top: 0;
- }
- .wp-block-latest-posts:not(.is-grid) > li:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-posts.is-grid > li {
- margin-bottom: 30px;
- }
- .wp-block-latest-posts.is-grid > li:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-posts > li > * {
- margin-top: 15px;
- margin-bottom: 15px;
- }
- .wp-block-latest-posts > li > *:first-child {
- margin-top: 0;
- }
- .wp-block-latest-posts > li > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-posts > li > a {
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-size: 28px;
- font-weight: normal;
- line-height: 1.3;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: #444444;
- font-size: 14px;
- line-height: 1.7;
- }
- [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
- .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: currentColor;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 16px;
- line-height: 1.7;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 16px;
- line-height: 1.7;
- }
- @media only screen and (min-width: 592px) {
- .wp-block-latest-posts.is-style-seedlet-alternating-grid {
- overflow: hidden;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid > li {
- width: calc(50% - 13px);
- max-width: calc(50% - 13px);
- text-align: right;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid > li:nth-child(2n + 1) {
- float: right;
- text-align: left;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid.is-grid {
- display: inherit;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid.is-grid > li {
- margin-top: 30px;
- margin-right: 0;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid.is-grid > li:first-child {
- margin-top: 0;
- }
- .wp-block-latest-posts.is-style-seedlet-alternating-grid.is-grid > li:last-child {
- margin-bottom: 0;
- }
- }
- .gallery-item {
- display: inline-block;
- 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 {
- display: block;
- }
- ul {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- margin: 30px 0;
- padding-left: 50px;
- }
- ol {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- margin: 30px 0;
- padding-left: 50px;
- }
- ul.aligncenter,
- ol.aligncenter {
- list-style-position: inside;
- padding: 0;
- }
- ul.alignright,
- ol.alignright {
- list-style-position: inside;
- text-align: right;
- padding: 0;
- }
- li > ul,
- li > ol {
- margin: 0;
- }
- dt {
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: bold;
- }
- .wp-block-media-text .block-editor-inner-blocks {
- padding-right: 25px;
- padding-left: 25px;
- }
- .wp-block-navigation .wp-block-navigation__container {
- background: #FFFFFF;
- padding: 0;
- }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content {
- padding: 13px;
- }
- .wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__label {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 16px;
- font-weight: normal;
- }
- .wp-block-navigation .has-child .wp-block-navigation__container {
- box-shadow: 1px 1px 3px 0px rgba( 0, 0, 0, 0.2 );
- }
- .wp-block-navigation:not(.has-text-color) .wp-block-navigation-link > a:hover {
- color: #3C8067;
- }
- .wp-block-navigation:not(.has-text-color) .wp-block-navigation-link > a:focus {
- color: #3C8067;
- }
- .wp-block-navigation:not(.has-text-color) .wp-block-navigation-link__content {
- color: currentColor;
- }
- p {
- line-height: --global--line-height-body;
- }
- p.has-background {
- padding: 20px;
- }
- .a8c-posts-list {
- padding-left: 0;
- }
- .wp-block-pullquote {
- padding: 40px 0;
- margin-left: 0;
- margin-right: 0;
- text-align: left;
- border-top-color: transparent;
- border-top-width: 0;
- border-bottom-color: transparent;
- border-bottom-width: 0;
- color: #333333;
- }
- .wp-block-pullquote p {
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-size: 32px;
- font-style: italic;
- letter-spacing: normal;
- line-height: 1.3;
- margin: 0;
- }
- .wp-block-pullquote a {
- color: currentColor;
- }
- .wp-block-pullquote .wp-block-pullquote__citation {
- color: #444444;
- font-size: 14px;
- }
- .wp-block-pullquote cite {
- color: #444444;
- font-size: 14px;
- }
- .wp-block-pullquote footer {
- color: #444444;
- font-size: 14px;
- }
- .wp-block-pullquote:not(.is-style-solid-color) {
- background: none;
- }
- .wp-block-pullquote.is-style-solid-color {
- background-color: #333333;
- color: #FFFFFF;
- padding: 40px;
- }
- .wp-block-pullquote.is-style-solid-color.alignleft blockquote {
- padding-left: 20px;
- padding-right: 20px;
- max-width: inherit;
- }
- .wp-block-pullquote.is-style-solid-color.alignright blockquote {
- padding-left: 20px;
- padding-right: 20px;
- max-width: inherit;
- }
- .wp-block-pullquote.is-style-solid-color blockquote {
- margin: 0;
- text-align: left;
- max-width: 100%;
- }
- .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
- .wp-block-pullquote.is-style-solid-color cite,
- .wp-block-pullquote.is-style-solid-color footer {
- color: currentColor;
- }
- .wp-block[data-align="full"] .wp-block-pullquote:not(.is-style-solid-color) blockquote {
- padding: 0 40px;
- }
- .wp-block-quote {
- border-left-color: #3C8067;
- border-left-width: 1px;
- margin: 30px 0;
- padding-left: 25px;
- }
- .wp-block-quote p {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 18px;
- font-style: normal;
- line-height: 1.7;
- }
- .wp-block-quote.is-large {
- border-left: 1px solid #3C8067;
- padding-left: 25px;
- /* Resetting margins to match _block-container.scss */
- margin-top: 30px;
- margin-bottom: 30px;
- }
- .wp-block-quote.is-style-large {
- border-left: 1px solid #3C8067;
- padding-left: 25px;
- /* Resetting margins to match _block-container.scss */
- margin-top: 30px;
- margin-bottom: 30px;
- }
- .wp-block-quote.is-large p {
- font-size: 24px;
- font-style: normal;
- line-height: 1.5;
- }
- .wp-block-quote.is-style-large p {
- font-size: 24px;
- font-style: normal;
- line-height: 1.5;
- }
- .wp-block-quote.is-large.has-text-align-right {
- border-left: none;
- border-right: 1px solid #3C8067;
- }
- .wp-block-quote.is-style-large.has-text-align-right {
- border-left: none;
- border-right: 1px solid #3C8067;
- }
- .wp-block-quote.has-text-align-right {
- border-right: 1px solid #3C8067;
- }
- .wp-block-quote.has-text-align-center {
- border: none;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
- .wp-block-cover[style*="background-image"] .wp-block-quote {
- border-color: currentColor;
- }
- .wp-block-quote .wp-block-quote__citation {
- color: #444444;
- font-size: 14px;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
- color: currentColor;
- }
- .wp-block-search {
- display: flex;
- max-width: 100%;
- }
- @media only screen and (min-width: 482px) {
- .wp-block-search {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .wp-block-search {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 652px) {
- .wp-block-search {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 822px) {
- .wp-block-search {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .wp-block-search {
- max-width: 602px;
- }
- }
- .wp-block-search .wp-block-search__label {
- font-weight: normal;
- }
- .wp-block-search .wp-block-search__input {
- border: 2px solid #EFEFEF;
- border-radius: 0;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 18px;
- line-height: 1.7;
- max-width: inherit;
- margin-right: 17px;
- padding: 10px;
- }
- .wp-block-search .wp-block-search__input:focus {
- border-color: #EFEFEF;
- }
- .wp-block-separator {
- border-bottom: 2px solid #EFEFEF;
- clear: both;
- }
- hr {
- border-bottom: 2px solid #EFEFEF;
- clear: both;
- }
- .wp-block-separator[style*="text-align:right"] {
- border-right-color: #EFEFEF;
- }
- .wp-block-separator[style*="text-align: right"] {
- border-right-color: #EFEFEF;
- }
- hr[style*="text-align:right"] {
- border-right-color: #EFEFEF;
- }
- hr[style*="text-align: right"] {
- border-right-color: #EFEFEF;
- }
- .wp-block-separator.is-style-wide {
- border-bottom-width: 2px;
- }
- hr.is-style-wide {
- border-bottom-width: 2px;
- }
- .wp-block-separator.is-style-dots,
- hr.is-style-dots {
- border-bottom: none;
- }
- .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
- hr.is-style-dots.has-background,
- hr.is-style-dots.has-text-color {
- background-color: transparent !important;
- }
- .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
- hr.is-style-dots.has-background:before,
- hr.is-style-dots.has-text-color:before {
- color: currentColor !important;
- }
- .wp-block-separator.is-style-dots:before {
- color: #EFEFEF;
- }
- hr.is-style-dots:before {
- color: #EFEFEF;
- }
- .has-background:not(.has-background-background-color) .wp-block-separator,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
- .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
- hr,
- [class*="background-color"]:not(.has-background-background-color)
- hr,
- [style*="background-color"]:not(.has-background-background-color)
- hr,
- .wp-block-cover[style*="background-image"]
- hr {
- border-color: currentColor;
- }
- table th {
- font-family: 'Playfair Display', Georgia, Times, serif;
- }
- .wp-block-table th {
- font-family: 'Playfair Display', Georgia, Times, serif;
- }
- table td {
- padding: 10px;
- }
- table th {
- padding: 10px;
- }
- .wp-block-table td {
- padding: 10px;
- }
- .wp-block-table th {
- padding: 10px;
- }
- pre.wp-block-verse {
- padding: 0;
- }
- /**
- * Editor Post Title
- * - Needs a special styles
- */
- .editor-post-title__block .editor-post-title__input {
- color: #333333;
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-weight: normal;
- font-size: 32px;
- letter-spacing: normal;
- line-height: 1.3;
- }
- .wp-block.block-editor-default-block-appender > textarea {
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 18px;
- }
- .has-primary-color[class] {
- color: #000000;
- }
- .has-secondary-color[class] {
- color: #3C8067;
- }
- .has-foreground-color[class] {
- color: #333333;
- }
- .has-foreground-light-color[class] {
- color: #444444;
- }
- .has-foreground-dark-color[class] {
- color: #000000;
- }
- .has-tertiary-color[class] {
- color: #FAFBF6;
- }
- .has-background-dark-color[class] {
- color: #DDDDDD;
- }
- .has-background-color[class] {
- color: #FFFFFF;
- }
- .has-background:not(.has-background-background-color) a,
- .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
- color: currentColor;
- }
- .has-primary-background-color[class] {
- background-color: #000000;
- color: #FFFFFF;
- }
- .has-primary-background-color[class] {
- background-color: #000000;
- color: #FFFFFF;
- }
- .has-secondary-background-color[class] {
- background-color: #3C8067;
- color: #FFFFFF;
- }
- .has-foreground-background-color[class] {
- background-color: #333333;
- color: #FFFFFF;
- }
- .has-foreground-light-background-color[class] {
- background-color: #444444;
- color: #FFFFFF;
- }
- .has-foreground-dark-background-color[class] {
- background-color: #000000;
- color: #FFFFFF;
- }
- .has-tertiary-background-color[class] {
- background-color: #FAFBF6;
- color: #333333;
- }
- .has-background-dark-background-color[class] {
- background-color: #DDDDDD;
- color: #333333;
- }
- .has-background-background-color[class] {
- background-color: #FFFFFF;
- color: #333333;
- }
- .has-white-background-color[class] {
- background-color: white;
- color: #3C8067;
- }
- .has-black-background-color[class] {
- background-color: black;
- color: #000000;
- }
- .is-tiny-text {
- font-size: 14px;
- }
- .has-tiny-font-size {
- font-size: 14px;
- }
- .is-small-text {
- font-size: 16px;
- }
- .has-small-font-size {
- font-size: 16px;
- }
- .is-regular-text {
- font-size: 18px;
- }
- .has-regular-font-size {
- font-size: 18px;
- }
- .has-normal-font-size {
- font-size: 18px;
- }
- .has-medium-font-size {
- font-size: 18px;
- }
- .is-large-text {
- font-size: 24px;
- line-height: 1.3;
- }
- .has-large-font-size {
- font-size: 24px;
- line-height: 1.3;
- }
- .is-larger-text {
- font-size: 28px;
- line-height: 1.3;
- }
- .has-larger-font-size {
- font-size: 28px;
- line-height: 1.3;
- }
- .has-huge-font-size {
- font-size: 28px;
- line-height: 1.3;
- }
- .has-drop-cap:not(:focus)::first-letter {
- font-family: 'Playfair Display', Georgia, Times, serif;
- font-size: 96px;
- font-weight: normal;
- }
- /**
- * Spacing Overrides
- */
- /*
- * Margins
- */
- .margin-top-none {
- margin-top: 0 !important;
- }
- .margin-top-half {
- margin-top: 15px !important;
- }
- .margin-top-default {
- margin-top: 30px !important;
- }
- .margin-right-none {
- /*rtl:ignore*/
- margin-right: 0 !important;
- }
- .margin-right-half {
- /*rtl:ignore*/
- margin-right: 15px !important;
- }
- .margin-right-default {
- /*rtl:ignore*/
- margin-right: 30px !important;
- }
- .margin-bottom-none {
- margin-bottom: 0 !important;
- }
- .margin-bottom-half {
- margin-bottom: 15px !important;
- }
- .margin-bottom-default {
- margin-bottom: 30px !important;
- }
- .margin-left-none {
- /*rtl:ignore*/
- margin-left: 0 !important;
- }
- .margin-left-half {
- /*rtl:ignore*/
- margin-left: 15px !important;
- }
- .margin-left-default {
- /*rtl:ignore*/
- margin-left: 30px !important;
- }
- /*
- * Padding
- */
- .padding-top-none {
- padding-top: 0 !important;
- }
- .padding-top-half {
- padding-top: 15px !important;
- }
- .padding-top-default {
- padding-top: 30px !important;
- }
- .padding-right-none {
- /*rtl:ignore*/
- padding-right: 0 !important;
- }
- .padding-right-half {
- /*rtl:ignore*/
- padding-right: 15px !important;
- }
- .padding-right-default {
- /*rtl:ignore*/
- padding-right: 30px !important;
- }
- .padding-bottom-none {
- padding-bottom: 0 !important;
- }
- .padding-bottom-half {
- padding-bottom: 15px !important;
- }
- .padding-bottom-default {
- padding-bottom: 30px !important;
- }
- .padding-left-none {
- /*rtl:ignore*/
- padding-left: 0 !important;
- }
- .padding-left-half {
- /*rtl:ignore*/
- padding-left: 15px !important;
- }
- .padding-left-default {
- /*rtl:ignore*/
- padding-left: 30px !important;
- }
- [data-block] {
- margin-top: 30px;
- margin-bottom: 30px;
- }
- [data-block] [data-block]:first-child {
- margin-top: 0;
- }
- [data-block] [data-block]:nth-last-child(2) {
- margin-bottom: 0;
- }
- /*
- * Custom gradients
- */
- .has-hard-diagonal-gradient-background {
- background: linear-gradient(to bottom right, #3C8067 49.9%, #FAFBF6 50%);
- }
- .has-hard-diagonal-inverted-gradient-background {
- background: linear-gradient(to top left, #3C8067 49.9%, #FAFBF6 50%);
- }
- .has-diagonal-gradient-background {
- background: linear-gradient(to bottom right, #3C8067, #FAFBF6);
- }
- .has-diagonal-inverted-gradient-background {
- background: linear-gradient(to top left, #3C8067, #FAFBF6);
- }
- .has-hard-horizontal-gradient-background {
- background: linear-gradient(to bottom, #3C8067 50%, #FAFBF6 50%);
- }
- .has-hard-horizontal-inverted-gradient-background {
- background: linear-gradient(to top, #3C8067 50%, #FAFBF6 50%);
- }
- .has-horizontal-gradient-background {
- background: linear-gradient(to bottom, #3C8067, #FAFBF6);
- }
- .has-horizontal-inverted-gradient-background {
- background: linear-gradient(to top, #3C8067, #FAFBF6);
- }
- .has-stripe-gradient-background {
- background: linear-gradient(to bottom, transparent 20%, #3C8067 20%, #3C8067 80%, transparent 80%);
- }
- /* Block Alignments */
- .wp-block {
- max-width: 100%;
- }
- @media only screen and (min-width: 482px) {
- .wp-block {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .wp-block {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 652px) {
- .wp-block {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 822px) {
- .wp-block {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .wp-block {
- max-width: 602px;
- }
- }
- .wp-block[data-align="wide"] {
- max-width: 100%;
- }
- @media only screen and (min-width: 482px) {
- .wp-block[data-align="wide"] {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .wp-block[data-align="wide"] {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 652px) {
- .wp-block[data-align="wide"] {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 822px) {
- .wp-block[data-align="wide"] {
- max-width: 772px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .wp-block[data-align="wide"] {
- max-width: 772px;
- }
- }
- .wp-block.alignwide {
- max-width: 100%;
- }
- @media only screen and (min-width: 482px) {
- .wp-block.alignwide {
- max-width: 432px;
- }
- }
- @media only screen and (min-width: 592px) {
- .wp-block.alignwide {
- max-width: 542px;
- }
- }
- @media only screen and (min-width: 652px) {
- .wp-block.alignwide {
- max-width: 602px;
- }
- }
- @media only screen and (min-width: 822px) {
- .wp-block.alignwide {
- max-width: 772px;
- }
- }
- @media only screen and (min-width: 1024px) {
- .wp-block.alignwide {
- max-width: 772px;
- }
- }
- .wp-block[data-align="full"], .wp-block.alignfull {
- max-width: none;
- }
- .block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block[data-align="full"] > [data-block], .block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block.alignfull > [data-block] {
- margin-top: 0;
- margin-bottom: 0;
- }
- .alignleft {
- margin: 0;
- margin-right: 25px;
- }
- .alignright {
- margin: 0;
- margin-left: 25px;
- }
- /**
- * Jetpack editor styles
- */
- /**
- * Jetpack Block editor styles
- */
- .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
- margin-bottom: 15px;
- }
- .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
- margin-right: 30px;
- }
- .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
- margin-left: 30px;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
- padding: 30px;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
- color: white;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .article-section-title {
- font-size: 24px;
- letter-spacing: normal;
- line-height: 1.3;
- margin-top: 0;
- margin-bottom: 15px;
- }
- .wp-block-a8c-blog-posts article {
- margin-bottom: 90px;
- }
- .wp-block-a8c-blog-posts .post-thumbnail img {
- vertical-align: middle;
- width: auto;
- }
- .wp-block-a8c-blog-posts .entry-wrapper > * {
- /* Vertical margins logic between post details */
- margin-top: 20px;
- margin-bottom: 20px;
- }
- .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
- margin-top: 0;
- }
- .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
- margin-bottom: 0;
- }
- .wp-block-a8c-blog-posts .entry-title a {
- color: #000000;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .entry-title a:hover {
- color: #3C8067;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .more-link {
- display: block;
- margin-top: 20px;
- }
- .wp-block-a8c-blog-posts .more-link:after {
- content: "\02192";
- display: inline-block;
- margin-left: 0.5em;
- }
- .wp-block-a8c-blog-posts .more-link:hover {
- color: #3C8067;
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .more-link:active {
- color: #3C8067;
- text-decoration: none;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
- [style*="background-color"] .wp-block-a8c-blog-posts .more-link:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
- [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .entry-meta {
- color: #444444;
- font-size: 16px;
- }
- .wp-block-a8c-blog-posts .cat-links {
- color: #444444;
- font-size: 16px;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links,
- [style*="background-color"]
- .wp-block-a8c-blog-posts .cat-links {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child) {
- margin-right: 20px;
- }
- .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
- margin-right: 20px;
- }
- .wp-block-a8c-blog-posts .entry-meta .published + .updated,
- .wp-block-a8c-blog-posts .cat-links .published + .updated {
- display: none;
- }
- .wp-block-a8c-blog-posts .entry-meta a,
- .wp-block-a8c-blog-posts .cat-links a {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .entry-meta a:hover {
- color: #3C8067;
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .entry-meta a:active {
- color: #3C8067;
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .cat-links a:hover {
- color: #3C8067;
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .cat-links a:active {
- color: #3C8067;
- text-decoration: none;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links a:hover,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links a:hover,
- [style*="background-color"]
- .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links a:active,
- [class*="background-color"]:not(.has-background-background-color)
- .wp-block-a8c-blog-posts .cat-links a:active,
- [style*="background-color"]
- .wp-block-a8c-blog-posts .cat-links a:active {
- color: currentColor;
- }
- @media only screen and (min-width: 592px) {
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid {
- overflow: hidden;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid .article-section-title {
- margin-left: calc(50% + 13px);
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid article {
- width: calc(50% - 13px);
- max-width: calc(50% - 13px);
- margin-top: 0;
- margin-bottom: 30px;
- text-align: right;
- clear: both;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid article .entry-meta {
- justify-content: flex-end;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid article:nth-of-type(2n + 1) {
- float: right;
- text-align: left;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid article:nth-of-type(2n + 1) .entry-meta {
- justify-content: flex-start;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid article .more-link {
- display: inline-block;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid.wpnbha.is-grid > div {
- display: inherit;
- }
- .wp-block-a8c-blog-posts.is-style-seedlet-alternating-grid + .wpnbha__wp-block-button__wrapper {
- text-align: center;
- }
- }
- .wp-block-search .wp-block-search__button {
- line-height: 1;
- color: #FFFFFF;
- cursor: pointer;
- font-weight: normal;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 1em;
- background-color: #3C8067;
- border-radius: 4px;
- border-width: 0;
- text-decoration: none;
- padding: 23px 25px;
- }
- .wp-block-a8c-blog-posts + .button {
- line-height: 1;
- color: #FFFFFF;
- cursor: pointer;
- font-weight: normal;
- font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
- font-size: 1em;
- background-color: #3C8067;
- border-radius: 4px;
- border-width: 0;
- text-decoration: none;
- padding: 23px 25px;
- }
- .wp-block-search .wp-block-search__button:before, .wp-block-a8c-blog-posts + .button:before, .wp-block-search .wp-block-search__button:after, .wp-block-a8c-blog-posts + .button:after {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- .wp-block-search .wp-block-search__button:before {
- margin-bottom: -calc(1em + 0);
- }
- .wp-block-a8c-blog-posts + .button:before {
- margin-bottom: -calc(1em + 0);
- }
- .wp-block-search .wp-block-search__button:after {
- margin-top: -calc(1em + 0);
- }
- .wp-block-a8c-blog-posts + .button:after {
- margin-top: -calc(1em + 0);
- }
- .wp-block-search .wp-block-search__button:active {
- color: #FFFFFF;
- background-color: #000000;
- }
- .wp-block-a8c-blog-posts + .button:active {
- color: #FFFFFF;
- background-color: #000000;
- }
- .wp-block-search .wp-block-search__button:hover {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-a8c-blog-posts + .button:hover {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-search .wp-block-search__button:focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-a8c-blog-posts + .button:focus {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-search .has-focus.wp-block-search__button {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-a8c-blog-posts + .has-focus.button {
- color: #FFFFFF;
- background-color: #336D58;
- }
- .wp-block-a8c-blog-posts + .button {
- display: inline-block;
- font-size: 18px;
- }
- .wp-block-a8c-blog-posts + .button:hover {
- cursor: default;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button {
- background-color: transparent;
- border: 2px solid currentColor;
- color: currentColor;
- }
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button {
- background-color: transparent;
- border: 2px solid currentColor;
- color: currentColor;
- }
- [style*="background-color"] .wp-block-a8c-blog-posts + .button {
- background-color: transparent;
- border: 2px solid currentColor;
- color: currentColor;
- }
- /* Gutter Options */
- .wp-block-jetpack-layout-grid {
- grid-gap: 40px;
- }
- .wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
- grid-gap: 0px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 0px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
- grid-gap: 10px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 10px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
- grid-gap: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large {
- grid-gap: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
- grid-gap: 60px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge > .block-editor-inner-blocks > .block-editor-block-list__layout {
- grid-gap: 60px;
- }
- /* No Gutters Options */
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
- padding-left: 0px;
- padding-right: 0px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
- padding-left: 10px;
- padding-right: 10px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
- padding-left: 20px;
- padding-right: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large {
- padding-left: 40px;
- padding-right: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
- padding-left: 60px;
- padding-right: 60px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- /* Padding Options */
- .wp-block-jetpack-layout-grid {
- padding-left: 40px;
- padding-right: 40px;
- /* Individual Column Options */
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
- margin-left: -20px;
- margin-right: -20px;
- padding-left: 20px;
- padding-right: 20px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column[style^="background-color"] {
- margin-left: -20px;
- margin-right: -20px;
- padding-left: 20px;
- padding-right: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
- padding-left: 0;
- padding-right: 0;
- }
- /* Additional, user-set paddings. */
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
- padding: 0px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
- padding-top: 0px;
- padding-right: 20px;
- padding-bottom: 0px;
- padding-left: 20px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none[style^="background-color"] {
- padding-top: 0px;
- padding-right: 20px;
- padding-bottom: 0px;
- padding-left: 20px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
- padding: 10px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
- padding-top: 10px;
- padding-right: 30px;
- padding-bottom: 10px;
- padding-left: 30px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small[style^="background-color"] {
- padding-top: 10px;
- padding-right: 30px;
- padding-bottom: 10px;
- padding-left: 30px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
- padding: 20px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
- padding-top: 20px;
- padding-right: 40px;
- padding-bottom: 20px;
- padding-left: 40px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium[style^="background-color"] {
- padding-top: 20px;
- padding-right: 40px;
- padding-bottom: 20px;
- padding-left: 40px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
- padding: 40px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
- padding-top: 40px;
- padding-right: 60px;
- padding-bottom: 40px;
- padding-left: 60px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large[style^="background-color"] {
- padding-top: 40px;
- padding-right: 60px;
- padding-bottom: 40px;
- padding-left: 60px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
- padding: 60px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
- padding-top: 60px;
- padding-right: 80px;
- padding-bottom: 60px;
- padding-left: 80px;
- }
- .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge[style^="background-color"] {
- padding-top: 60px;
- padding-right: 80px;
- padding-bottom: 60px;
- padding-left: 80px;
- }
- /* Overlay styles and margin reset */
- .wp-block-jetpack-layout-grid {
- /* wpcom-overlay-grid is the classname targeting the grid overlay visual aid displayed in the editor */
- /* Override default block margin rules */
- }
- .wp-block-jetpack-layout-grid .wpcom-overlay-grid {
- grid-gap: 40px;
- padding-left: 40px;
- padding-right: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid [data-type="jetpack/layout-grid-column"] {
- margin-top: 0;
- margin-bottom: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none .wpcom-overlay-grid {
- grid-gap: 0px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none .wpcom-overlay-grid {
- padding-left: 0px;
- padding-right: 0px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small .wpcom-overlay-grid {
- grid-gap: 10px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small .wpcom-overlay-grid {
- padding-left: 10px;
- padding-right: 10px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium .wpcom-overlay-grid {
- grid-gap: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium .wpcom-overlay-grid {
- padding-left: 20px;
- padding-right: 20px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large .wpcom-overlay-grid {
- grid-gap: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large .wpcom-overlay-grid {
- padding-left: 40px;
- padding-right: 40px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__large.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge .wpcom-overlay-grid {
- grid-gap: 60px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge .wpcom-overlay-grid {
- padding-left: 60px;
- padding-right: 60px;
- }
- .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge.wp-block-jetpack-layout-gutter__nowrap .wpcom-overlay-grid {
- padding-left: 0;
- padding-right: 0;
- }
- /*# sourceMappingURL=ie-editor.css.map */
|