123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890 |
- @charset "UTF-8";
- /**
- * These styles should be loaded by the Block Editor only
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /* Sass Functions go here */
- /**
- * Map deep get
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {Arglist} $keys - Key chain
- * @return {*} - Desired value
- *
- * Example:
- * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
- */
- /**
- * Deep set function to set a value in nested maps
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {List} $keys - Key chaine
- * @param {*} $value - Value to assign
- * @return {Map}
- *
- * Example:
- * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
- */
- /**
- * jQuery-style extend function
- * - Child themes can use this function to `reset` the values in
- * config maps without editing the `master` Sass files.
- * - src: https://www.sitepoint.com/extra-map-functions-sass/
- * - About `map-merge()`:
- * - - only takes 2 arguments
- * - - is not recursive
- * @param {Map} $map - first map
- * @param {ArgList} $maps - other maps
- * @param {Bool} $deep - recursive mode
- * @return {Map}
- *
- * Examples:
- $grid-configuration-default: (
- 'columns': 12,
- 'layouts': (
- 'small': 800px,
- 'medium': 1000px,
- 'large': 1200px,
- ),
- );
- $grid-configuration-custom: (
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- $grid-configuration-user: (
- 'direction': 'ltr',
- 'columns': 16,
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- // $deep: false
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
- // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
- // $deep: true
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
- // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Responsive breakpoints
- * - breakpoints values are defined in _config-global.scss
- */
- /**
- * Align wide widths
- * - Sets .alignwide widths
- */
- /**
- * Crop Text Boundry
- * - Sets a fixed-width on content within alignwide and alignfull blocks
- */
- /**
- * Add font-family using CSS variables.
- * It also adds the proper fallback for browsers without support.
- */
- /**
- * Child Theme Name
- */
- /**
- * Redefine Sass map values for child theme output.
- * - See: style-child-theme.scss
- */
- /**
- * Global
- */
- /**
- * Elements
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Header
- */
- /**
- * Footer
- */
- /**
- * Base
- * - Reset the browser
- */
- body {
- color: #394d55;
- background-color: #ffffff;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-size: 16px;
- font-weight: normal;
- line-height: 1.6;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- }
- .editor-post-title__block {
- font-size: 16px;
- }
- p {
- font-size: 1.25em;
- line-height: 1.6;
- }
- a {
- color: #3E7D98;
- }
- a:hover {
- color: #2f5f74;
- }
- .has-primary-background-color a:not(.has-text-color) {
- color: #ffffff;
- }
- button,
- a {
- cursor: pointer;
- }
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: inherit;
- font-size: 100%;
- line-height: 1.15;
- margin: 0;
- }
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- blockquote {
- padding-left: 16px;
- }
- blockquote p {
- font-size: 1.8rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- blockquote cite,
- blockquote footer {
- font-size: 1.04167rem;
- letter-spacing: normal;
- }
- blockquote > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- blockquote > *:first-child {
- margin-top: 0;
- }
- blockquote > *:last-child {
- margin-bottom: 0;
- }
- blockquote.alignleft, blockquote.alignright {
- padding-left: inherit;
- }
- blockquote.alignleft p, blockquote.alignright p {
- font-size: 1.5rem;
- max-width: inherit;
- width: inherit;
- }
- blockquote.alignleft cite,
- blockquote.alignleft footer, blockquote.alignright cite,
- blockquote.alignright footer {
- font-size: 0.86806rem;
- letter-spacing: normal;
- }
- figcaption {
- color: #4d6974;
- font-size: 0.86806rem;
- margin-top: calc(0.5 * 16px);
- margin-bottom: 16px;
- text-align: center;
- }
- .alignleft figcaption,
- .alignright figcaption {
- 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%;
- }
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides
- */
- /**
- * Block Styles for the Editor
- *
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides in the Block Editor
- * - In the future the Block styles may get compiled to individual .css
- * files and conditionally loaded
- */
- .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
- margin-bottom: 16px;
- }
- .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
- margin-right: 32px;
- }
- .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
- margin-left: 32px;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
- padding: 32px;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
- color: #fff;
- }
- .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .article-section-title {
- font-size: 1.25em;
- margin-top: 0;
- margin-bottom: 16px;
- }
- .wp-block-a8c-blog-posts article {
- margin-bottom: 64px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-a8c-blog-posts article {
- margin-bottom: 96px;
- }
- }
- .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: 16px;
- margin-bottom: 16px;
- }
- .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: #3E7D98;
- }
- .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: #2f5f74;
- text-decoration: underline;
- }
- .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;
- color: inherit;
- margin-top: 16px;
- }
- .wp-block-a8c-blog-posts .more-link:after {
- content: "→" /*rtl:"←"*/;
- display: inline-block;
- margin-left: 0.5em;
- }
- .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
- color: #2f5f74;
- 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,
- .wp-block-a8c-blog-posts .cat-links {
- color: #4d6974;
- font-size: 1.04167em;
- }
- .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),
- .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
- margin-right: 16px;
- }
- .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;
- text-decoration: underline;
- }
- .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
- .wp-block-a8c-blog-posts .cat-links a:hover,
- .wp-block-a8c-blog-posts .cat-links a:active {
- color: #2f5f74;
- 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;
- }
- /**
- * Button Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- .wp-block-a8c-blog-posts + .button, .wp-block-button__link,
- .wp-block-file__button, .wp-block-search .wp-block-search__button, .fse-template-part .main-navigation .button {
- line-height: 1;
- color: #ffffff;
- cursor: pointer;
- font-weight: bold;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-size: 1.04167rem;
- background-color: #3E7D98;
- border-radius: 160px;
- border-width: 0;
- text-decoration: none;
- padding: 16px 48px;
- }
- .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
- .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before, .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
- .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
- .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
- margin-bottom: -0.12em;
- }
- .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
- .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
- margin-top: -0.11em;
- }
- .wp-block-a8c-blog-posts + .button:not(.has-background):hover, .wp-block-button__link:not(.has-background):hover,
- .wp-block-file__button:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-button__link:focus,
- .wp-block-file__button:focus, .wp-block-search .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .wp-block-a8c-blog-posts + .has-focus.button, .has-focus.wp-block-button__link,
- .has-focus.wp-block-file__button, .wp-block-search .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
- color: #ffffff;
- background-color: #2f5f74;
- }
- /**
- * Onsale Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- .wp-block-a8c-blog-posts + .button {
- display: inline-block;
- font-size: 1.5em;
- }
- .wp-block-a8c-blog-posts + .button:hover {
- cursor: default;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
- [style*="background-color"] .wp-block-a8c-blog-posts + .button {
- background-color: transparent;
- border: 2px solid currentColor;
- color: currentColor;
- }
- /**
- * Button
- */
- /* Default Style */
- .wp-block-button__link {
- color: #ffffff;
- font-weight: bold;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-size: 1.04167em;
- line-height: 1;
- background-color: #3E7D98;
- border-radius: 160px;
- padding: 16px 48px;
- /* Outline Style */
- /* Squared Style */
- }
- .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
- color: #ffffff;
- background-color: #2f5f74;
- }
- .wp-block-button__link.is-style-outline,
- .is-style-outline .wp-block-button__link {
- border: 2px solid currentcolor;
- }
- .wp-block-button__link.is-style-outline:not(.has-text-color),
- .is-style-outline .wp-block-button__link:not(.has-text-color) {
- color: #3E7D98;
- }
- .wp-block-button__link.is-style-outline:hover, .wp-block-button__link.is-style-outline:focus, .wp-block-button__link.is-style-outline.has-focus,
- .is-style-outline .wp-block-button__link:hover,
- .is-style-outline .wp-block-button__link:focus,
- .is-style-outline .wp-block-button__link.has-focus {
- color: #2f5f74;
- background: transparent;
- }
- .has-primary-background-color .wp-block-button__link.is-style-outline:not(.has-text-color), .has-primary-background-color
- .is-style-outline .wp-block-button__link:not(.has-text-color) {
- color: #ffffff;
- }
- .wp-block-button__link.is-style-squared,
- .is-style-squared .wp-block-button__link {
- border-radius: 0;
- }
- /* Default Style */
- .button {
- color: #ffffff;
- font-weight: bold;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-size: 1.04167em;
- line-height: 1;
- background-color: #3E7D98;
- border-radius: 160px;
- padding: 16px 48px;
- }
- .button:hover, .button:focus, .button.has-focus {
- color: #ffffff;
- background-color: #2f5f74;
- }
- .wp-block-columns .wp-block[data-align=full],
- .wp-block-columns .alignfull {
- margin-left: inherit;
- margin-right: inherit;
- }
- .wp-block-cover,
- .wp-block-cover-image {
- background-color: black;
- color: white;
- min-height: calc( 17 * 32px);
- margin-top: inherit;
- margin-bottom: inherit;
- /* Treating H2 separately to account for legacy /core styles */
- }
- .wp-block-cover.has-background-dim,
- .wp-block-cover-image.has-background-dim {
- background-color: black;
- color: white;
- }
- .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 h2,
- .wp-block-cover-image h2 {
- font-size: 2.592em;
- letter-spacing: normal;
- line-height: 1.125;
- 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-heading h1, h1, .h1,
- .wp-block-heading h2, h2, .h2,
- .wp-block-heading h3, h3, .h3,
- .wp-block-heading h4, h4, .h4,
- .wp-block-heading h5, h5, .h5,
- .wp-block-heading h6, h6, .h6 {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-weight: normal;
- clear: both;
- }
- .wp-block-heading h1, h1, .h1 {
- font-size: 3.1104em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h2, h2, .h2 {
- font-size: 2.592em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h3, h3, .h3 {
- font-size: 2.16em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h4, h4, .h4 {
- font-size: 1.8em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h5, h5, .h5 {
- font-size: 1.5em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h6, h6, .h6 {
- font-size: 1.25em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- /* 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-gallery figcaption {
- margin-bottom: 0;
- }
- .wp-block-group.has-background {
- padding: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-group.has-background {
- padding: 32px;
- }
- }
- .wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
- margin: 0;
- width: 100%;
- }
- .wp-block-latest-comments {
- margin-left: 0;
- }
- .wp-block-latest-posts {
- padding-left: 0;
- }
- .wp-block-latest-posts > li > a {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-size: 1.8rem;
- font-weight: normal;
- line-height: 1.125;
- }
- .wp-block-latest-posts:not(.is-grid) > li {
- /* Vertical margins logic */
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .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 .wp-block-latest-posts__post-date {
- color: #4d6974;
- font-size: 1.04167rem;
- line-height: 1.6;
- }
- [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,
- .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
- font-size: 1.04167rem;
- line-height: 1.6;
- margin: 0;
- }
- ul,
- ol {
- margin: 32px 0;
- padding-left: 32px;
- }
- 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;
- }
- .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
- color: currentColor;
- }
- .a8c-posts-list {
- padding-left: 0;
- }
- p.has-background {
- padding: 16px 16px;
- }
- p.has-background:not(.has-background-background-color) a {
- color: currentColor;
- }
- .wp-block-pullquote {
- border-top-color: #3E7D98;
- border-top-width: 4px;
- border-bottom-color: #3E7D98;
- border-bottom-width: 4px;
- color: #394d55;
- }
- .wp-block-pullquote blockquote p {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-size: 1.8rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-pullquote.is-style-solid-color blockquote p {
- font-size: 1.8rem;
- }
- .wp-block-pullquote a {
- color: currentColor;
- }
- .wp-block-pullquote .wp-block-pullquote__citation,
- .wp-block-pullquote cite,
- .wp-block-pullquote footer {
- color: #4d6974;
- font-size: 1.04167rem;
- letter-spacing: normal;
- }
- .wp-block-pullquote blockquote {
- padding-left: 0;
- }
- .wp-block-pullquote.is-style-solid-color {
- color: #ffffff;
- }
- .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-pullquote.is-style-solid-color:not(.has-background) {
- background-color: #3E7D98;
- }
- .wp-block-quote {
- border-left-color: #3E7D98;
- padding-left: 16px;
- }
- .wp-block-quote p {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-size: 1.8em;
- letter-spacing: normal;
- }
- .wp-block-quote.is-large, .wp-block-quote.is-style-large {
- border: none;
- padding: 0;
- }
- .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-size: 2.16em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .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: #4d6974;
- font-size: 1.04167em;
- letter-spacing: normal;
- }
- .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 {
- flex-wrap: wrap;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
- background: white;
- color: black;
- border: 1px solid #3E7D98;
- border-radius: 3px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
- padding: 16px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
- padding: 16px 48px;
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
- padding: 0;
- }
- .wp-block-search .wp-block-search__label {
- font-weight: normal;
- }
- .wp-block-search .wp-block-search__input {
- color: black;
- border: 1px solid #3E7D98;
- border-radius: 3px;
- padding: 16px;
- font-size: 1.25rem;
- line-height: 1.25rem;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- max-width: inherit;
- margin-right: calc( .66 * 48px);
- background: white;
- }
- .wp-block-search .wp-block-search__input:focus {
- color: black;
- border-color: #3E7D98;
- }
- .wp-block-search .wp-block-search__button {
- border: none;
- box-shadow: none;
- }
- .wp-block-search .wp-block-search__button.has-icon {
- transform: scaleX(-1);
- padding: 0;
- min-width: calc(2* 16px + 1.25rem + 4px);
- min-height: calc(2* 16px + 1.25rem + 4px);
- }
- .wp-block-search .wp-block-search__button.has-icon svg {
- fill: currentColor;
- width: 29px;
- height: 29px;
- }
- .wp-block-separator,
- hr {
- border-bottom: 2px solid #3E7D98;
- clear: both;
- }
- .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
- hr[style*="text-align:right"],
- hr[style*="text-align: right"] {
- border-right-color: #3E7D98;
- }
- .wp-block-separator.is-style-wide,
- 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,
- hr.is-style-dots:before {
- color: #3E7D98;
- }
- .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,
- .wp-block-table th {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- }
- table td,
- table th,
- .wp-block-table td,
- .wp-block-table th {
- padding: calc( 0.5 * 16px);
- }
- table.is-style-stripes tbody tr:nth-child(odd),
- .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
- background-color: #fcfbf9;
- color: #394d55;
- }
- pre.wp-block-verse {
- font-family: monospace, monospace;
- color: #394d55;
- }
- /**
- * Editor Post Title
- * - Needs a special styles
- */
- .editor-post-title__block .editor-post-title__input {
- color: #394d55;
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-weight: normal;
- font-size: 2.592em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block .has-primary-color,
- .has-primary-color {
- color: #3E7D98;
- }
- .wp-block .has-secondary-color,
- .has-secondary-color {
- color: #9B6A36;
- }
- .wp-block .has-foreground-color,
- .has-foreground-color {
- color: #394d55;
- }
- .wp-block .has-foreground-light-color,
- .has-foreground-light-color {
- color: #4d6974;
- }
- .wp-block .has-foreground-dark-color,
- .has-foreground-dark-color {
- color: #253136;
- }
- .wp-block .has-background-light-color,
- .has-background-light-color {
- color: #fafafa;
- }
- .wp-block .has-background-dark-color,
- .has-background-dark-color {
- color: #d9d9d9;
- }
- .wp-block .has-background-color,
- .has-background-color {
- color: #ffffff;
- }
- .has-background p:not(.has-text-color),
- .has-background h1:not(.has-text-color),
- .has-background h2:not(.has-text-color),
- .has-background h3:not(.has-text-color),
- .has-background h4:not(.has-text-color),
- .has-background h5:not(.has-text-color),
- .has-background h6:not(.has-text-color) {
- color: currentColor;
- }
- .has-primary-background-color,
- .has-primary-background-color.has-background-dim {
- background-color: #3E7D98;
- color: #ffffff;
- }
- .has-primary-background-color:not(.has-text-color),
- .has-primary-background-color.has-background-dim:not(.has-text-color) {
- color: #ffffff;
- }
- .has-secondary-background-color,
- .has-secondary-background-color.has-background-dim {
- background-color: #9B6A36;
- }
- .has-secondary-background-color:not(.has-text-color),
- .has-secondary-background-color.has-background-dim:not(.has-text-color) {
- color: #ffffff;
- }
- .has-background-dim,
- .has-foreground-background-color,
- .has-foreground-background-color.has-background-dim {
- background-color: #394d55;
- }
- .has-background-dim,
- .has-foreground-background-color,
- .has-foreground-background-color.has-background-dim {
- color: #ffffff;
- }
- .has-foreground-light-background-color,
- .has-foreground-light-background-color.has-background-dim {
- background-color: #4d6974;
- }
- .has-foreground-light-background-color:not(.has-text-color),
- .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
- color: #ffffff;
- }
- .has-foreground-dark-background-color,
- .has-foreground-dark-background-color.has-background-dim {
- background-color: #253136;
- }
- .has-foreground-dark-background-color:not(.has-text-color),
- .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
- color: #ffffff;
- }
- .has-background-light-background-color,
- .has-background-light-background-color.has-background-dim {
- background-color: #fafafa;
- }
- .has-background-light-background-color:not(.has-text-color),
- .has-background-light-background-color.has-background-dim:not(.has-text-color) {
- color: #394d55;
- }
- .has-background-dark-background-color,
- .has-background-dark-background-color.has-background-dim {
- background-color: #d9d9d9;
- }
- .has-background-dark-background-color:not(.has-text-color),
- .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
- color: #394d55;
- }
- .has-background-background-color,
- .has-background-background-color.has-background-dim {
- background-color: #ffffff;
- color: #394d55;
- }
- .has-background-background-color:not(.has-text-color),
- .has-background-background-color.has-background-dim:not(.has-text-color) {
- color: #394d55;
- }
- .is-small-text,
- .has-small-font-size {
- font-size: 1.04167em;
- }
- .is-regular-text,
- .has-regular-font-size,
- .has-normal-font-size,
- .has-medium-font-size {
- font-size: 1.5em;
- }
- .is-large-text,
- .has-large-font-size {
- font-size: 1.8em;
- line-height: 1.125;
- }
- .is-larger-text,
- .has-larger-font-size,
- .has-huge-font-size {
- font-size: 2.16em;
- line-height: 1.125;
- }
- .has-drop-cap:not(:focus)::first-letter {
- font-family: "Lora", Georgia, sans-serif;
- font-family: var(--font-headings, "Lora", Georgia, sans-serif);
- font-size: calc(2 * 3.1104em);
- font-weight: normal;
- }
- /**
- * Spacing Overrides
- */
- [data-block] {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- [data-block] {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- /*
- * Margins
- */
- .margin-top-none {
- margin-top: 0 !important;
- }
- .margin-top-half {
- margin-top: 16px !important;
- }
- .margin-top-default {
- margin-top: 32px !important;
- }
- .margin-right-none {
- /*rtl:ignore*/
- margin-right: 0 !important;
- }
- .margin-right-half {
- /*rtl:ignore*/
- margin-right: 16px !important;
- }
- .margin-right-default {
- /*rtl:ignore*/
- margin-right: 32px !important;
- }
- .margin-bottom-none {
- margin-bottom: 0 !important;
- }
- .margin-bottom-half {
- margin-bottom: 16px !important;
- }
- .margin-bottom-default {
- margin-bottom: 32px !important;
- }
- .margin-left-none {
- /*rtl:ignore*/
- margin-left: 0 !important;
- }
- .margin-left-half {
- /*rtl:ignore*/
- margin-left: 16px !important;
- }
- .margin-left-default {
- /*rtl:ignore*/
- margin-left: 32px !important;
- }
- /*
- * Padding
- */
- .padding-top-none {
- padding-top: 0 !important;
- }
- .padding-top-half {
- padding-top: 16px !important;
- }
- .padding-top-default {
- padding-top: 32px !important;
- }
- .padding-right-none {
- /*rtl:ignore*/
- padding-right: 0 !important;
- }
- .padding-right-half {
- /*rtl:ignore*/
- padding-right: 16px !important;
- }
- .padding-right-default {
- /*rtl:ignore*/
- padding-right: 32px !important;
- }
- .padding-bottom-none {
- padding-bottom: 0 !important;
- }
- .padding-bottom-half {
- padding-bottom: 16px !important;
- }
- .padding-bottom-default {
- padding-bottom: 32px !important;
- }
- .padding-left-none {
- /*rtl:ignore*/
- padding-left: 0 !important;
- }
- .padding-left-half {
- /*rtl:ignore*/
- padding-left: 16px !important;
- }
- .padding-left-default {
- /*rtl:ignore*/
- padding-left: 32px !important;
- }
- /**
- * Vendors
- * - Styles for 3rd party plugins and WP extensions
- */
- /**
- * Vendors
- * - 3rd-party compatibility styles
- */
- /**
- * Set Jetpack form text color
- */
- .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
- color: black;
- }
- /**
- * Extras
- */
- .editor-post-title__input {
- text-align: center;
- }
- /**
- * 1. General Styles
- */
- a {
- text-decoration: none;
- }
- .wp-block-group a,
- .wp-block-cover a,
- .wp-block-cover-image a,
- .wp-block-media-text a,
- p:not(.site-title) a {
- text-decoration: underline;
- }
- .wp-block-group a.wp-block-button__link, .wp-block-group a:hover,
- .wp-block-cover a.wp-block-button__link,
- .wp-block-cover a:hover,
- .wp-block-cover-image a.wp-block-button__link,
- .wp-block-cover-image a:hover,
- .wp-block-media-text a.wp-block-button__link,
- .wp-block-media-text a:hover,
- p:not(.site-title) a.wp-block-button__link,
- p:not(.site-title) a:hover {
- text-decoration: none;
- }
- .has-background a {
- color: currentColor;
- }
- .wp-block-a8c-blog-posts .entry-title a:active, .wp-block-a8c-blog-posts .entry-title a:focus, .wp-block-a8c-blog-posts .entry-title a:hover {
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .cat-links a,
- .wp-block-a8c-blog-posts .more-link,
- .wp-block-a8c-blog-posts .entry-meta a {
- text-decoration: none;
- }
- .wp-block-a8c-blog-posts .cat-links a:active, .wp-block-a8c-blog-posts .cat-links a:focus, .wp-block-a8c-blog-posts .cat-links a:hover,
- .wp-block-a8c-blog-posts .more-link:active,
- .wp-block-a8c-blog-posts .more-link:focus,
- .wp-block-a8c-blog-posts .more-link:hover,
- .wp-block-a8c-blog-posts .entry-meta a:active,
- .wp-block-a8c-blog-posts .entry-meta a:focus,
- .wp-block-a8c-blog-posts .entry-meta a:hover {
- text-decoration: underline;
- }
- .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:active, .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:focus, .wp-block-a8c-blog-posts.image-alignbehind article .entry-title a:hover {
- text-decoration: underline;
- }
- .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 {
- text-decoration: none;
- }
- .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
- [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
- text-decoration: underline;
- }
- .wp-block-a8c-blog-posts + .button {
- font-size: 1.04167em;
- }
- /**
- * Full Site Editing
- * - Full Site Editing overrides
- */
- @media (min-width: 600px) {
- .a8c-template-editor .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] {
- margin-left: 0;
- margin-right: 0;
- }
- }
- .a8c-template-editor .block-editor-block-list__block-edit [data-block] {
- margin: 12px 0 0 0;
- }
- .template-block .fse-template-part {
- padding: 16px;
- }
- @media only screen and (min-width: 560px) {
- .template-block .fse-template-part {
- padding: 32px 0;
- }
- }
- .template-block .fse-template-part figure.fse-site-logo {
- width: auto;
- }
- .template-block .fse-template-part .block-list-appender {
- display: none;
- }
- .template-block .fse-template-part .wp-block-column .block-editor-block-list__layout [data-type='a8c/site-title']:first-child .site-title {
- margin-top: 0;
- }
- .fse-template-part .wp-block-cover .site-title,
- .fse-template-part .wp-block-cover .site-description,
- .fse-template-part .wp-block-cover-image .site-title,
- .fse-template-part .wp-block-cover-image .site-description {
- background: transparent;
- color: inherit;
- }
- .fse-template-part .block-editor-block-list__layout .block-editor-block-list__block[data-align='full'] > .block-editor-block-list__block-edit figure.fse-site-logo {
- width: auto;
- }
- .fse-template-part .wp-block-column {
- width: 100%;
- }
- .fse-template-part .wp-block-columns .wp-block-column > * {
- margin: 0 0 5px 0;
- }
- .fse-template-part .main-navigation {
- color: #394d55;
- }
- .fse-template-part .main-navigation > div {
- display: none;
- }
- .fse-template-part .main-navigation #toggle-menu {
- display: inline-block;
- margin: 0;
- }
- .fse-template-part .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
- display: block;
- }
- .fse-template-part .main-navigation #toggle:focus + #toggle-menu {
- background-color: #2f5f74;
- outline: inherit;
- text-decoration: underline;
- }
- .fse-template-part .main-navigation .dropdown-icon.close {
- display: none;
- }
- .fse-template-part .main-navigation #toggle:checked + #toggle-menu .open {
- display: none;
- }
- .fse-template-part .main-navigation #toggle:checked + #toggle-menu .close {
- display: inline;
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation > div {
- display: inline-block;
- }
- .fse-template-part .main-navigation #toggle-menu {
- display: none;
- }
- .fse-template-part .main-navigation > div > ul > li > ul {
- display: none;
- }
- }
- .fse-template-part .main-navigation > div > ul {
- display: flex;
- flex-wrap: wrap;
- list-style: none;
- margin: 0;
- max-width: none;
- padding-left: 0;
- position: relative;
- /* Sub-menus Flyout */
- }
- .fse-template-part .main-navigation > div > ul ul {
- padding-left: 0;
- }
- .fse-template-part .main-navigation > div > ul li {
- display: block;
- position: relative;
- width: 100%;
- z-index: 1;
- }
- .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li[focus-within] {
- cursor: pointer;
- z-index: 99999;
- }
- .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li:focus-within {
- cursor: pointer;
- z-index: 99999;
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation > div > ul li {
- display: inherit;
- width: inherit;
- /* Submenu display */
- }
- .fse-template-part .main-navigation > div > ul li:hover > ul,
- .fse-template-part .main-navigation > div > ul li[focus-within] > ul,
- .fse-template-part .main-navigation > div > ul li ul:hover,
- .fse-template-part .main-navigation > div > ul li ul:focus {
- visibility: visible;
- opacity: 1;
- display: block;
- }
- .fse-template-part .main-navigation > div > ul li:hover > ul,
- .fse-template-part .main-navigation > div > ul li:focus-within > ul,
- .fse-template-part .main-navigation > div > ul li ul:hover,
- .fse-template-part .main-navigation > div > ul li ul:focus {
- visibility: visible;
- opacity: 1;
- display: block;
- }
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation > div > ul > li > a {
- line-height: 1;
- }
- .fse-template-part .main-navigation > div > ul > li > a:before, .fse-template-part .main-navigation > div > ul > li > a:after {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- .fse-template-part .main-navigation > div > ul > li > a:before {
- margin-bottom: -0.12em;
- }
- .fse-template-part .main-navigation > div > ul > li > a:after {
- margin-top: -0.11em;
- }
- .fse-template-part .main-navigation > div > ul > li:first-of-type > a {
- padding-left: 0;
- }
- .fse-template-part .main-navigation > div > ul > li:last-of-type > a {
- padding-right: 0;
- }
- }
- .fse-template-part .main-navigation > div > ul > li > .sub-menu {
- margin: 0;
- position: relative;
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation > div > ul > li > .sub-menu {
- background: #ffffff;
- box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
- left: 0;
- top: 100%;
- min-width: max-content;
- opacity: 0;
- position: absolute;
- transition: all 0.5s ease;
- visibility: hidden;
- }
- }
- .fse-template-part .main-navigation > div > ul > li > .sub-menu .sub-menu {
- width: 100%;
- }
- .fse-template-part .main-navigation a {
- color: #394d55;
- display: block;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-weight: bold;
- padding: 8px 0;
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation a {
- padding: 16px;
- }
- }
- .fse-template-part .main-navigation a:link, .fse-template-part .main-navigation a:visited {
- color: #394d55;
- }
- .fse-template-part .main-navigation a:hover {
- color: #2f5f74;
- }
- .fse-template-part .main-navigation .sub-menu {
- list-style: none;
- margin-left: 0;
- /* Reset the counter for each UL */
- counter-reset: nested-list;
- }
- .fse-template-part .main-navigation .sub-menu .menu-item a {
- padding-top: 8px;
- padding-bottom: 8px;
- }
- .fse-template-part .main-navigation .sub-menu .menu-item a::before {
- /* Increment the dashes */
- counter-increment: nested-list;
- /* Insert dashes with spaces in between */
- content: "– " counters(nested-list, "– ", none);
- }
- @media only screen and (min-width: 560px) {
- .fse-template-part .main-navigation > div > ul > .menu-item-has-children > a::after {
- content: "\00a0\25BC";
- display: inline-block;
- font-size: 0.86806rem;
- height: inherit;
- width: inherit;
- }
- }
- .fse-template-part .main-navigation .hide-visually {
- position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
- padding: 0 !important;
- border: 0 !important;
- height: 1px !important;
- width: 1px !important;
- overflow: hidden;
- }
- .fse-template-part body:not(.fse-enabled) .main-navigation a {
- font-size: 1.04167rem;
- }
- .fse-template-part .main-navigation {
- text-align: center;
- /**
- * Button Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- /**
- * Onsale Placeholder style
- * - Since buttons appear in various blocks,
- * let’s use a placeholder to keep them all
- * in-sync
- */
- }
- .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
- width: 100%;
- }
- .fse-template-part .main-navigation .wp-block-button__link,
- .fse-template-part .main-navigation .wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button, .fse-template-part .main-navigation .button {
- line-height: 1;
- color: #ffffff;
- cursor: pointer;
- font-weight: bold;
- font-family: "Karla", Arial, sans-serif;
- font-family: var(--font-base, "Karla", Arial, sans-serif);
- font-size: 1.04167rem;
- background-color: #3E7D98;
- border-radius: 160px;
- border-width: 0;
- text-decoration: none;
- padding: 16px 48px;
- }
- .fse-template-part .main-navigation .wp-block-button__link:before,
- .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before, .fse-template-part .main-navigation .wp-block-button__link:after,
- .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
- content: '';
- display: block;
- height: 0;
- width: 0;
- }
- .fse-template-part .main-navigation .wp-block-button__link:before,
- .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
- margin-bottom: -0.12em;
- }
- .fse-template-part .main-navigation .wp-block-button__link:after,
- .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
- margin-top: -0.11em;
- }
- .fse-template-part .main-navigation .wp-block-button__link:not(.has-background):hover,
- .fse-template-part .main-navigation .wp-block-file__button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:not(.has-background):hover, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-button__link:focus,
- .fse-template-part .main-navigation .wp-block-file__button:focus, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:focus, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .fse-template-part .main-navigation .has-focus.wp-block-button__link,
- .fse-template-part .main-navigation .has-focus.wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .has-focus.wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
- color: #ffffff;
- background-color: #2f5f74;
- }
- .fse-template-part .main-navigation .main-menu.footer-menu li a {
- font-size: inherit;
- }
- .fse-template-part .main-navigation .main-menu.footer-menu li.menu-item-has-children > a::after {
- font-size: 0.6em;
- vertical-align: middle;
- }
- .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
- color: inherit;
- }
- .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
- justify-content: flex-start;
- }
- .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
- justify-content: center;
- }
- .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
- justify-content: flex-end;
- }
- .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
- padding: 16px;
- }
- @media only screen and (min-width: 560px) {
- .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block.is-selected:first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
- margin-top: 14px;
- }
- .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block:not(.is-selected):first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
- margin-top: 0;
- }
- }
- .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
- margin-top: -16px;
- }
- @media only screen and (min-width: 560px) {
- .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
- margin-top: -32px;
- }
- }
- .post-content__block {
- margin-bottom: 160px;
- margin-top: 36px;
- z-index: 20;
- }
- .fse-template-part .has-normal-font-size {
- font-size: 1.5rem;
- }
- .fse-template-part .site-title {
- font-weight: bold;
- }
- .fse-template-part .main-navigation a {
- text-decoration: none;
- }
- .fse-template-part .wp-block-cover .has-background,
- .fse-template-part .wp-block-cover-image .has-background {
- text-shadow: none;
- }
- .post-content__block {
- margin-top: -36px;
- }
|