style-editor.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. @charset "UTF-8";
  2. /**
  3. * These styles should be loaded by the Block Editor only
  4. */
  5. /**
  6. * Abstracts
  7. * - Mixins, variables and functions
  8. */
  9. /**
  10. * Abstracts
  11. * - Mixins, variables and functions
  12. */
  13. /* Sass Functions go here */
  14. /**
  15. * Map deep get
  16. * @author Hugo Giraudel
  17. * @access public
  18. * @param {Map} $map - Map
  19. * @param {Arglist} $keys - Key chain
  20. * @return {*} - Desired value
  21. *
  22. * Example:
  23. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  24. */
  25. /**
  26. * Deep set function to set a value in nested maps
  27. * @author Hugo Giraudel
  28. * @access public
  29. * @param {Map} $map - Map
  30. * @param {List} $keys - Key chaine
  31. * @param {*} $value - Value to assign
  32. * @return {Map}
  33. *
  34. * Example:
  35. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  36. */
  37. /**
  38. * jQuery-style extend function
  39. * - Child themes can use this function to `reset` the values in
  40. * config maps without editing the `master` Sass files.
  41. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  42. * - About `map-merge()`:
  43. * - - only takes 2 arguments
  44. * - - is not recursive
  45. * @param {Map} $map - first map
  46. * @param {ArgList} $maps - other maps
  47. * @param {Bool} $deep - recursive mode
  48. * @return {Map}
  49. *
  50. * Examples:
  51. $grid-configuration-default: (
  52. 'columns': 12,
  53. 'layouts': (
  54. 'small': 800px,
  55. 'medium': 1000px,
  56. 'large': 1200px,
  57. ),
  58. );
  59. $grid-configuration-custom: (
  60. 'layouts': (
  61. 'large': 1300px,
  62. 'huge': 1500px
  63. ),
  64. );
  65. $grid-configuration-user: (
  66. 'direction': 'ltr',
  67. 'columns': 16,
  68. 'layouts': (
  69. 'large': 1300px,
  70. 'huge': 1500px
  71. ),
  72. );
  73. // $deep: false
  74. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  75. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  76. // $deep: true
  77. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  78. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  79. */
  80. /**
  81. * Button
  82. */
  83. /**
  84. * Cover
  85. */
  86. /**
  87. * Heading
  88. */
  89. /**
  90. * List
  91. */
  92. /**
  93. * Pullquote
  94. */
  95. /**
  96. * Quote
  97. */
  98. /**
  99. * Separator
  100. */
  101. /**
  102. * Responsive breakpoints
  103. * - breakpoints values are defined in _config-global.scss
  104. */
  105. /**
  106. * Align wide widths
  107. * - Sets .alignwide widths
  108. */
  109. /**
  110. * Crop Text Boundry
  111. * - Sets a fixed-width on content within alignwide and alignfull blocks
  112. */
  113. /**
  114. * Add font-family using CSS variables.
  115. * It also adds the proper fallback for browsers without support.
  116. */
  117. /**
  118. * Child Theme Name
  119. */
  120. /**
  121. * Redefine Sass map values for child theme output.
  122. * - See: style-child-theme.scss
  123. */
  124. /**
  125. * Global
  126. */
  127. /**
  128. * Elements
  129. */
  130. /**
  131. * Button
  132. */
  133. /**
  134. * Cover
  135. */
  136. /**
  137. * Heading
  138. */
  139. /**
  140. * List
  141. */
  142. /**
  143. * Pullquote
  144. */
  145. /**
  146. * Quote
  147. */
  148. /**
  149. * Separator
  150. */
  151. /**
  152. * Header
  153. */
  154. /**
  155. * Footer
  156. */
  157. /**
  158. * Base
  159. * - Reset the browser
  160. */
  161. body {
  162. color: #394d55;
  163. background-color: #ffffff;
  164. font-family: "Karla", Arial, sans-serif;
  165. font-family: var(--font-base, "Karla", Arial, sans-serif);
  166. font-size: 16px;
  167. font-weight: normal;
  168. line-height: 1.6;
  169. -moz-osx-font-smoothing: grayscale;
  170. -webkit-font-smoothing: antialiased;
  171. }
  172. .editor-post-title__block {
  173. font-size: 16px;
  174. }
  175. p {
  176. font-size: 1.25em;
  177. line-height: 1.6;
  178. }
  179. a {
  180. color: #3E7D98;
  181. }
  182. a:hover {
  183. color: #2f5f74;
  184. }
  185. .has-primary-background-color a:not(.has-text-color) {
  186. color: #ffffff;
  187. }
  188. button,
  189. a {
  190. cursor: pointer;
  191. }
  192. button,
  193. input,
  194. optgroup,
  195. select,
  196. textarea {
  197. font-family: inherit;
  198. font-size: 100%;
  199. line-height: 1.15;
  200. margin: 0;
  201. }
  202. /**
  203. * Elements
  204. * - Styles for basic HTML elemants
  205. */
  206. /**
  207. * Elements
  208. * - Styles for basic HTML elemants
  209. */
  210. blockquote {
  211. padding-left: 16px;
  212. }
  213. blockquote p {
  214. font-size: 1.8rem;
  215. letter-spacing: normal;
  216. line-height: 1.125;
  217. }
  218. blockquote cite,
  219. blockquote footer {
  220. font-size: 1.04167rem;
  221. letter-spacing: normal;
  222. }
  223. blockquote > * {
  224. margin-top: 16px;
  225. margin-bottom: 16px;
  226. }
  227. blockquote > *:first-child {
  228. margin-top: 0;
  229. }
  230. blockquote > *:last-child {
  231. margin-bottom: 0;
  232. }
  233. blockquote.alignleft, blockquote.alignright {
  234. padding-left: inherit;
  235. }
  236. blockquote.alignleft p, blockquote.alignright p {
  237. font-size: 1.5rem;
  238. max-width: inherit;
  239. width: inherit;
  240. }
  241. blockquote.alignleft cite,
  242. blockquote.alignleft footer, blockquote.alignright cite,
  243. blockquote.alignright footer {
  244. font-size: 0.86806rem;
  245. letter-spacing: normal;
  246. }
  247. figcaption {
  248. color: #4d6974;
  249. font-size: 0.86806rem;
  250. margin-top: calc(0.5 * 16px);
  251. margin-bottom: 16px;
  252. text-align: center;
  253. }
  254. .alignleft figcaption,
  255. .alignright figcaption {
  256. margin-bottom: 0;
  257. }
  258. /* WP Smiley */
  259. .page-content .wp-smiley,
  260. .entry-content .wp-smiley,
  261. .comment-content .wp-smiley {
  262. border: none;
  263. margin-bottom: 0;
  264. margin-top: 0;
  265. padding: 0;
  266. }
  267. /* Make sure embeds and iframes fit their containers. */
  268. embed,
  269. iframe,
  270. object {
  271. max-width: 100%;
  272. }
  273. /**
  274. * Blocks
  275. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  276. * spacing with CSS-variables overrides
  277. */
  278. /**
  279. * Block Styles for the Editor
  280. *
  281. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  282. * spacing with CSS-variables overrides in the Block Editor
  283. * - In the future the Block styles may get compiled to individual .css
  284. * files and conditionally loaded
  285. */
  286. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  287. margin-bottom: 16px;
  288. }
  289. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  290. margin-right: 32px;
  291. }
  292. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  293. margin-left: 32px;
  294. }
  295. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  296. padding: 32px;
  297. }
  298. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  299. color: #fff;
  300. }
  301. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  302. color: currentColor;
  303. }
  304. .wp-block-a8c-blog-posts .article-section-title {
  305. font-size: 1.25em;
  306. margin-top: 0;
  307. margin-bottom: 16px;
  308. }
  309. .wp-block-a8c-blog-posts article {
  310. margin-bottom: 64px;
  311. }
  312. @media only screen and (min-width: 560px) {
  313. .wp-block-a8c-blog-posts article {
  314. margin-bottom: 96px;
  315. }
  316. }
  317. .wp-block-a8c-blog-posts .post-thumbnail img {
  318. vertical-align: middle;
  319. width: auto;
  320. }
  321. .wp-block-a8c-blog-posts .entry-wrapper > * {
  322. /* Vertical margins logic between post details */
  323. margin-top: 16px;
  324. margin-bottom: 16px;
  325. }
  326. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  327. margin-top: 0;
  328. }
  329. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  330. margin-bottom: 0;
  331. }
  332. .wp-block-a8c-blog-posts .entry-title a {
  333. color: #3E7D98;
  334. }
  335. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  336. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  337. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  338. color: currentColor;
  339. }
  340. .wp-block-a8c-blog-posts .entry-title a:hover {
  341. color: #2f5f74;
  342. text-decoration: underline;
  343. }
  344. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  345. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  346. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  347. color: currentColor;
  348. }
  349. .wp-block-a8c-blog-posts .more-link {
  350. display: block;
  351. color: inherit;
  352. margin-top: 16px;
  353. }
  354. .wp-block-a8c-blog-posts .more-link:after {
  355. content: "→" /*rtl:"←"*/;
  356. display: inline-block;
  357. margin-left: 0.5em;
  358. }
  359. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  360. color: #2f5f74;
  361. text-decoration: none;
  362. }
  363. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  364. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  365. [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,
  366. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  367. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  368. color: currentColor;
  369. }
  370. .wp-block-a8c-blog-posts .entry-meta,
  371. .wp-block-a8c-blog-posts .cat-links {
  372. color: #4d6974;
  373. font-size: 1.04167em;
  374. }
  375. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  376. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  377. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  378. .wp-block-a8c-blog-posts .cat-links,
  379. [class*="background-color"]:not(.has-background-background-color)
  380. .wp-block-a8c-blog-posts .cat-links,
  381. [style*="background-color"]
  382. .wp-block-a8c-blog-posts .cat-links {
  383. color: currentColor;
  384. }
  385. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  386. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  387. margin-right: 16px;
  388. }
  389. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  390. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  391. display: none;
  392. }
  393. .wp-block-a8c-blog-posts .entry-meta a,
  394. .wp-block-a8c-blog-posts .cat-links a {
  395. color: currentColor;
  396. text-decoration: underline;
  397. }
  398. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  399. .wp-block-a8c-blog-posts .cat-links a:hover,
  400. .wp-block-a8c-blog-posts .cat-links a:active {
  401. color: #2f5f74;
  402. text-decoration: none;
  403. }
  404. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  405. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  406. [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,
  407. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  408. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  409. .wp-block-a8c-blog-posts .cat-links a:hover,
  410. [class*="background-color"]:not(.has-background-background-color)
  411. .wp-block-a8c-blog-posts .cat-links a:hover,
  412. [style*="background-color"]
  413. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  414. .wp-block-a8c-blog-posts .cat-links a:active,
  415. [class*="background-color"]:not(.has-background-background-color)
  416. .wp-block-a8c-blog-posts .cat-links a:active,
  417. [style*="background-color"]
  418. .wp-block-a8c-blog-posts .cat-links a:active {
  419. color: currentColor;
  420. }
  421. /**
  422. * Button Placeholder style
  423. * - Since buttons appear in various blocks,
  424. * let’s use a placeholder to keep them all
  425. * in-sync
  426. */
  427. .wp-block-a8c-blog-posts + .button, .wp-block-button__link,
  428. .wp-block-file__button, .wp-block-search .wp-block-search__button, .fse-template-part .main-navigation .button {
  429. line-height: 1;
  430. color: #ffffff;
  431. cursor: pointer;
  432. font-weight: bold;
  433. font-family: "Karla", Arial, sans-serif;
  434. font-family: var(--font-base, "Karla", Arial, sans-serif);
  435. font-size: 1.04167rem;
  436. background-color: #3E7D98;
  437. border-radius: 160px;
  438. border-width: 0;
  439. text-decoration: none;
  440. padding: 16px 48px;
  441. }
  442. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  443. .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,
  444. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  445. content: '';
  446. display: block;
  447. height: 0;
  448. width: 0;
  449. }
  450. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  451. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
  452. margin-bottom: -0.12em;
  453. }
  454. .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  455. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  456. margin-top: -0.11em;
  457. }
  458. .wp-block-a8c-blog-posts + .button:not(.has-background):hover, .wp-block-button__link:not(.has-background):hover,
  459. .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,
  460. .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,
  461. .has-focus.wp-block-file__button, .wp-block-search .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
  462. color: #ffffff;
  463. background-color: #2f5f74;
  464. }
  465. /**
  466. * Onsale Placeholder style
  467. * - Since buttons appear in various blocks,
  468. * let’s use a placeholder to keep them all
  469. * in-sync
  470. */
  471. .wp-block-a8c-blog-posts + .button {
  472. display: inline-block;
  473. font-size: 1.5em;
  474. }
  475. .wp-block-a8c-blog-posts + .button:hover {
  476. cursor: default;
  477. }
  478. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  479. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  480. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  481. background-color: transparent;
  482. border: 2px solid currentColor;
  483. color: currentColor;
  484. }
  485. /**
  486. * Button
  487. */
  488. /* Default Style */
  489. .wp-block-button__link {
  490. color: #ffffff;
  491. font-weight: bold;
  492. font-family: "Karla", Arial, sans-serif;
  493. font-family: var(--font-base, "Karla", Arial, sans-serif);
  494. font-size: 1.04167em;
  495. line-height: 1;
  496. background-color: #3E7D98;
  497. border-radius: 160px;
  498. padding: 16px 48px;
  499. /* Outline Style */
  500. /* Squared Style */
  501. }
  502. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  503. color: #ffffff;
  504. background-color: #2f5f74;
  505. }
  506. .wp-block-button__link.is-style-outline,
  507. .is-style-outline .wp-block-button__link {
  508. border: 2px solid currentcolor;
  509. }
  510. .wp-block-button__link.is-style-outline:not(.has-text-color),
  511. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  512. color: #3E7D98;
  513. }
  514. .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,
  515. .is-style-outline .wp-block-button__link:hover,
  516. .is-style-outline .wp-block-button__link:focus,
  517. .is-style-outline .wp-block-button__link.has-focus {
  518. color: #2f5f74;
  519. background: transparent;
  520. }
  521. .has-primary-background-color .wp-block-button__link.is-style-outline:not(.has-text-color), .has-primary-background-color
  522. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  523. color: #ffffff;
  524. }
  525. .wp-block-button__link.is-style-squared,
  526. .is-style-squared .wp-block-button__link {
  527. border-radius: 0;
  528. }
  529. /* Default Style */
  530. .button {
  531. color: #ffffff;
  532. font-weight: bold;
  533. font-family: "Karla", Arial, sans-serif;
  534. font-family: var(--font-base, "Karla", Arial, sans-serif);
  535. font-size: 1.04167em;
  536. line-height: 1;
  537. background-color: #3E7D98;
  538. border-radius: 160px;
  539. padding: 16px 48px;
  540. }
  541. .button:hover, .button:focus, .button.has-focus {
  542. color: #ffffff;
  543. background-color: #2f5f74;
  544. }
  545. .wp-block-columns .wp-block[data-align=full],
  546. .wp-block-columns .alignfull {
  547. margin-left: inherit;
  548. margin-right: inherit;
  549. }
  550. .wp-block-cover,
  551. .wp-block-cover-image {
  552. background-color: black;
  553. color: white;
  554. min-height: calc( 17 * 32px);
  555. margin-top: inherit;
  556. margin-bottom: inherit;
  557. /* Treating H2 separately to account for legacy /core styles */
  558. }
  559. .wp-block-cover.has-background-dim,
  560. .wp-block-cover-image.has-background-dim {
  561. background-color: black;
  562. color: white;
  563. }
  564. .wp-block-cover .wp-block-cover__inner-container,
  565. .wp-block-cover .wp-block-cover-image-text,
  566. .wp-block-cover .wp-block-cover-text,
  567. .wp-block-cover .block-editor-block-list__block,
  568. .wp-block-cover-image .wp-block-cover__inner-container,
  569. .wp-block-cover-image .wp-block-cover-image-text,
  570. .wp-block-cover-image .wp-block-cover-text,
  571. .wp-block-cover-image .block-editor-block-list__block {
  572. color: currentColor;
  573. }
  574. .wp-block-cover h2,
  575. .wp-block-cover-image h2 {
  576. font-size: 2.592em;
  577. letter-spacing: normal;
  578. line-height: 1.125;
  579. padding: 0;
  580. max-width: inherit;
  581. text-align: inherit;
  582. }
  583. .wp-block-cover h2.has-text-align-left,
  584. .wp-block-cover-image h2.has-text-align-left {
  585. text-align: left;
  586. }
  587. .wp-block-cover h2.has-text-align-center,
  588. .wp-block-cover-image h2.has-text-align-center {
  589. text-align: center;
  590. }
  591. .wp-block-cover h2.has-text-align-right,
  592. .wp-block-cover-image h2.has-text-align-right {
  593. text-align: right;
  594. }
  595. .wp-block-heading h1, h1, .h1,
  596. .wp-block-heading h2, h2, .h2,
  597. .wp-block-heading h3, h3, .h3,
  598. .wp-block-heading h4, h4, .h4,
  599. .wp-block-heading h5, h5, .h5,
  600. .wp-block-heading h6, h6, .h6 {
  601. font-family: "Lora", Georgia, sans-serif;
  602. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  603. font-weight: normal;
  604. clear: both;
  605. }
  606. .wp-block-heading h1, h1, .h1 {
  607. font-size: 3.1104em;
  608. letter-spacing: normal;
  609. line-height: 1.125;
  610. }
  611. .wp-block-heading h2, h2, .h2 {
  612. font-size: 2.592em;
  613. letter-spacing: normal;
  614. line-height: 1.125;
  615. }
  616. .wp-block-heading h3, h3, .h3 {
  617. font-size: 2.16em;
  618. letter-spacing: normal;
  619. line-height: 1.125;
  620. }
  621. .wp-block-heading h4, h4, .h4 {
  622. font-size: 1.8em;
  623. letter-spacing: normal;
  624. line-height: 1.125;
  625. }
  626. .wp-block-heading h5, h5, .h5 {
  627. font-size: 1.5em;
  628. letter-spacing: normal;
  629. line-height: 1.125;
  630. }
  631. .wp-block-heading h6, h6, .h6 {
  632. font-size: 1.25em;
  633. letter-spacing: normal;
  634. line-height: 1.125;
  635. }
  636. /* Center image block by default in the editor */
  637. .wp-block-image > div {
  638. text-align: center;
  639. }
  640. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  641. margin: 0 auto;
  642. }
  643. .wp-block-gallery figcaption {
  644. margin-bottom: 0;
  645. }
  646. .wp-block-group.has-background {
  647. padding: 21.312px;
  648. }
  649. @media only screen and (min-width: 560px) {
  650. .wp-block-group.has-background {
  651. padding: 32px;
  652. }
  653. }
  654. .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] {
  655. margin: 0;
  656. width: 100%;
  657. }
  658. .wp-block-latest-comments {
  659. margin-left: 0;
  660. }
  661. .wp-block-latest-posts {
  662. padding-left: 0;
  663. }
  664. .wp-block-latest-posts > li > a {
  665. font-family: "Lora", Georgia, sans-serif;
  666. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  667. font-size: 1.8rem;
  668. font-weight: normal;
  669. line-height: 1.125;
  670. }
  671. .wp-block-latest-posts:not(.is-grid) > li {
  672. /* Vertical margins logic */
  673. margin-top: 32px;
  674. margin-bottom: 32px;
  675. }
  676. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  677. margin-top: 0;
  678. }
  679. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  680. margin-bottom: 0;
  681. }
  682. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  683. color: #4d6974;
  684. font-size: 1.04167rem;
  685. line-height: 1.6;
  686. }
  687. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  688. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  689. color: currentColor;
  690. }
  691. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  692. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  693. font-size: 1.04167rem;
  694. line-height: 1.6;
  695. margin: 0;
  696. }
  697. ul,
  698. ol {
  699. margin: 32px 0;
  700. padding-left: 32px;
  701. }
  702. ul.aligncenter,
  703. ol.aligncenter {
  704. list-style-position: inside;
  705. padding: 0;
  706. }
  707. ul.alignright,
  708. ol.alignright {
  709. list-style-position: inside;
  710. text-align: right;
  711. padding: 0;
  712. }
  713. li > ul,
  714. li > ol {
  715. margin: 0;
  716. }
  717. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  718. color: currentColor;
  719. }
  720. .a8c-posts-list {
  721. padding-left: 0;
  722. }
  723. p.has-background {
  724. padding: 16px 16px;
  725. }
  726. p.has-background:not(.has-background-background-color) a {
  727. color: currentColor;
  728. }
  729. .wp-block-pullquote {
  730. border-top-color: #3E7D98;
  731. border-top-width: 4px;
  732. border-bottom-color: #3E7D98;
  733. border-bottom-width: 4px;
  734. color: #394d55;
  735. }
  736. .wp-block-pullquote blockquote p {
  737. font-family: "Lora", Georgia, sans-serif;
  738. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  739. font-size: 1.8rem;
  740. letter-spacing: normal;
  741. line-height: 1.125;
  742. }
  743. .wp-block-pullquote.is-style-solid-color blockquote p {
  744. font-size: 1.8rem;
  745. }
  746. .wp-block-pullquote a {
  747. color: currentColor;
  748. }
  749. .wp-block-pullquote .wp-block-pullquote__citation,
  750. .wp-block-pullquote cite,
  751. .wp-block-pullquote footer {
  752. color: #4d6974;
  753. font-size: 1.04167rem;
  754. letter-spacing: normal;
  755. }
  756. .wp-block-pullquote blockquote {
  757. padding-left: 0;
  758. }
  759. .wp-block-pullquote.is-style-solid-color {
  760. color: #ffffff;
  761. }
  762. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  763. .wp-block-pullquote.is-style-solid-color cite,
  764. .wp-block-pullquote.is-style-solid-color footer {
  765. color: currentColor;
  766. }
  767. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  768. background-color: #3E7D98;
  769. }
  770. .wp-block-quote {
  771. border-left-color: #3E7D98;
  772. padding-left: 16px;
  773. }
  774. .wp-block-quote p {
  775. font-family: "Lora", Georgia, sans-serif;
  776. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  777. font-size: 1.8em;
  778. letter-spacing: normal;
  779. }
  780. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  781. border: none;
  782. padding: 0;
  783. }
  784. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  785. font-family: "Lora", Georgia, sans-serif;
  786. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  787. font-size: 2.16em;
  788. letter-spacing: normal;
  789. line-height: 1.125;
  790. }
  791. .has-background:not(.has-background-background-color) .wp-block-quote,
  792. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  793. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  794. .wp-block-cover[style*="background-image"] .wp-block-quote {
  795. border-color: currentColor;
  796. }
  797. .wp-block-quote .wp-block-quote__citation {
  798. color: #4d6974;
  799. font-size: 1.04167em;
  800. letter-spacing: normal;
  801. }
  802. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  803. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  804. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  805. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  806. color: currentColor;
  807. }
  808. .wp-block-search {
  809. flex-wrap: wrap;
  810. }
  811. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  812. background: white;
  813. color: black;
  814. border: 1px solid #3E7D98;
  815. border-radius: 3px;
  816. }
  817. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  818. padding: 16px;
  819. }
  820. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  821. padding: 16px 48px;
  822. }
  823. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  824. padding: 0;
  825. }
  826. .wp-block-search .wp-block-search__label {
  827. font-weight: normal;
  828. }
  829. .wp-block-search .wp-block-search__input {
  830. color: black;
  831. border: 1px solid #3E7D98;
  832. border-radius: 3px;
  833. padding: 16px;
  834. font-size: 1.25rem;
  835. line-height: 1.25rem;
  836. font-family: "Karla", Arial, sans-serif;
  837. font-family: var(--font-base, "Karla", Arial, sans-serif);
  838. max-width: inherit;
  839. margin-right: calc( .66 * 48px);
  840. background: white;
  841. }
  842. .wp-block-search .wp-block-search__input:focus {
  843. color: black;
  844. border-color: #3E7D98;
  845. }
  846. .wp-block-search .wp-block-search__button {
  847. border: none;
  848. box-shadow: none;
  849. }
  850. .wp-block-search .wp-block-search__button.has-icon {
  851. transform: scaleX(-1);
  852. padding: 0;
  853. min-width: calc(2* 16px + 1.25rem + 4px);
  854. min-height: calc(2* 16px + 1.25rem + 4px);
  855. }
  856. .wp-block-search .wp-block-search__button.has-icon svg {
  857. fill: currentColor;
  858. width: 29px;
  859. height: 29px;
  860. }
  861. .wp-block-separator,
  862. hr {
  863. border-bottom: 2px solid #3E7D98;
  864. clear: both;
  865. }
  866. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  867. hr[style*="text-align:right"],
  868. hr[style*="text-align: right"] {
  869. border-right-color: #3E7D98;
  870. }
  871. .wp-block-separator.is-style-wide,
  872. hr.is-style-wide {
  873. border-bottom-width: 2px;
  874. }
  875. .wp-block-separator.is-style-dots,
  876. hr.is-style-dots {
  877. border-bottom: none;
  878. }
  879. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  880. hr.is-style-dots.has-background,
  881. hr.is-style-dots.has-text-color {
  882. background-color: transparent !important;
  883. }
  884. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  885. hr.is-style-dots.has-background:before,
  886. hr.is-style-dots.has-text-color:before {
  887. color: currentColor !important;
  888. }
  889. .wp-block-separator.is-style-dots:before,
  890. hr.is-style-dots:before {
  891. color: #3E7D98;
  892. }
  893. .has-background:not(.has-background-background-color) .wp-block-separator,
  894. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  895. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  896. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  897. hr,
  898. [class*="background-color"]:not(.has-background-background-color)
  899. hr,
  900. [style*="background-color"]:not(.has-background-background-color)
  901. hr,
  902. .wp-block-cover[style*="background-image"]
  903. hr {
  904. border-color: currentColor;
  905. }
  906. table th,
  907. .wp-block-table th {
  908. font-family: "Lora", Georgia, sans-serif;
  909. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  910. }
  911. table td,
  912. table th,
  913. .wp-block-table td,
  914. .wp-block-table th {
  915. padding: calc( 0.5 * 16px);
  916. }
  917. table.is-style-stripes tbody tr:nth-child(odd),
  918. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  919. background-color: #fcfbf9;
  920. color: #394d55;
  921. }
  922. pre.wp-block-verse {
  923. font-family: monospace, monospace;
  924. color: #394d55;
  925. }
  926. /**
  927. * Editor Post Title
  928. * - Needs a special styles
  929. */
  930. .editor-post-title__block .editor-post-title__input {
  931. color: #394d55;
  932. font-family: "Lora", Georgia, sans-serif;
  933. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  934. font-weight: normal;
  935. font-size: 2.592em;
  936. letter-spacing: normal;
  937. line-height: 1.125;
  938. }
  939. .wp-block .has-primary-color,
  940. .has-primary-color {
  941. color: #3E7D98;
  942. }
  943. .wp-block .has-secondary-color,
  944. .has-secondary-color {
  945. color: #9B6A36;
  946. }
  947. .wp-block .has-foreground-color,
  948. .has-foreground-color {
  949. color: #394d55;
  950. }
  951. .wp-block .has-foreground-light-color,
  952. .has-foreground-light-color {
  953. color: #4d6974;
  954. }
  955. .wp-block .has-foreground-dark-color,
  956. .has-foreground-dark-color {
  957. color: #253136;
  958. }
  959. .wp-block .has-background-light-color,
  960. .has-background-light-color {
  961. color: #fafafa;
  962. }
  963. .wp-block .has-background-dark-color,
  964. .has-background-dark-color {
  965. color: #d9d9d9;
  966. }
  967. .wp-block .has-background-color,
  968. .has-background-color {
  969. color: #ffffff;
  970. }
  971. .has-background p:not(.has-text-color),
  972. .has-background h1:not(.has-text-color),
  973. .has-background h2:not(.has-text-color),
  974. .has-background h3:not(.has-text-color),
  975. .has-background h4:not(.has-text-color),
  976. .has-background h5:not(.has-text-color),
  977. .has-background h6:not(.has-text-color) {
  978. color: currentColor;
  979. }
  980. .has-primary-background-color,
  981. .has-primary-background-color.has-background-dim {
  982. background-color: #3E7D98;
  983. color: #ffffff;
  984. }
  985. .has-primary-background-color:not(.has-text-color),
  986. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  987. color: #ffffff;
  988. }
  989. .has-secondary-background-color,
  990. .has-secondary-background-color.has-background-dim {
  991. background-color: #9B6A36;
  992. }
  993. .has-secondary-background-color:not(.has-text-color),
  994. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  995. color: #ffffff;
  996. }
  997. .has-background-dim,
  998. .has-foreground-background-color,
  999. .has-foreground-background-color.has-background-dim {
  1000. background-color: #394d55;
  1001. }
  1002. .has-background-dim,
  1003. .has-foreground-background-color,
  1004. .has-foreground-background-color.has-background-dim {
  1005. color: #ffffff;
  1006. }
  1007. .has-foreground-light-background-color,
  1008. .has-foreground-light-background-color.has-background-dim {
  1009. background-color: #4d6974;
  1010. }
  1011. .has-foreground-light-background-color:not(.has-text-color),
  1012. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  1013. color: #ffffff;
  1014. }
  1015. .has-foreground-dark-background-color,
  1016. .has-foreground-dark-background-color.has-background-dim {
  1017. background-color: #253136;
  1018. }
  1019. .has-foreground-dark-background-color:not(.has-text-color),
  1020. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  1021. color: #ffffff;
  1022. }
  1023. .has-background-light-background-color,
  1024. .has-background-light-background-color.has-background-dim {
  1025. background-color: #fafafa;
  1026. }
  1027. .has-background-light-background-color:not(.has-text-color),
  1028. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  1029. color: #394d55;
  1030. }
  1031. .has-background-dark-background-color,
  1032. .has-background-dark-background-color.has-background-dim {
  1033. background-color: #d9d9d9;
  1034. }
  1035. .has-background-dark-background-color:not(.has-text-color),
  1036. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  1037. color: #394d55;
  1038. }
  1039. .has-background-background-color,
  1040. .has-background-background-color.has-background-dim {
  1041. background-color: #ffffff;
  1042. color: #394d55;
  1043. }
  1044. .has-background-background-color:not(.has-text-color),
  1045. .has-background-background-color.has-background-dim:not(.has-text-color) {
  1046. color: #394d55;
  1047. }
  1048. .is-small-text,
  1049. .has-small-font-size {
  1050. font-size: 1.04167em;
  1051. }
  1052. .is-regular-text,
  1053. .has-regular-font-size,
  1054. .has-normal-font-size,
  1055. .has-medium-font-size {
  1056. font-size: 1.5em;
  1057. }
  1058. .is-large-text,
  1059. .has-large-font-size {
  1060. font-size: 1.8em;
  1061. line-height: 1.125;
  1062. }
  1063. .is-larger-text,
  1064. .has-larger-font-size,
  1065. .has-huge-font-size {
  1066. font-size: 2.16em;
  1067. line-height: 1.125;
  1068. }
  1069. .has-drop-cap:not(:focus)::first-letter {
  1070. font-family: "Lora", Georgia, sans-serif;
  1071. font-family: var(--font-headings, "Lora", Georgia, sans-serif);
  1072. font-size: calc(2 * 3.1104em);
  1073. font-weight: normal;
  1074. }
  1075. /**
  1076. * Spacing Overrides
  1077. */
  1078. [data-block] {
  1079. margin-top: 21.312px;
  1080. margin-bottom: 21.312px;
  1081. }
  1082. @media only screen and (min-width: 560px) {
  1083. [data-block] {
  1084. margin-top: 32px;
  1085. margin-bottom: 32px;
  1086. }
  1087. }
  1088. /*
  1089. * Margins
  1090. */
  1091. .margin-top-none {
  1092. margin-top: 0 !important;
  1093. }
  1094. .margin-top-half {
  1095. margin-top: 16px !important;
  1096. }
  1097. .margin-top-default {
  1098. margin-top: 32px !important;
  1099. }
  1100. .margin-right-none {
  1101. /*rtl:ignore*/
  1102. margin-right: 0 !important;
  1103. }
  1104. .margin-right-half {
  1105. /*rtl:ignore*/
  1106. margin-right: 16px !important;
  1107. }
  1108. .margin-right-default {
  1109. /*rtl:ignore*/
  1110. margin-right: 32px !important;
  1111. }
  1112. .margin-bottom-none {
  1113. margin-bottom: 0 !important;
  1114. }
  1115. .margin-bottom-half {
  1116. margin-bottom: 16px !important;
  1117. }
  1118. .margin-bottom-default {
  1119. margin-bottom: 32px !important;
  1120. }
  1121. .margin-left-none {
  1122. /*rtl:ignore*/
  1123. margin-left: 0 !important;
  1124. }
  1125. .margin-left-half {
  1126. /*rtl:ignore*/
  1127. margin-left: 16px !important;
  1128. }
  1129. .margin-left-default {
  1130. /*rtl:ignore*/
  1131. margin-left: 32px !important;
  1132. }
  1133. /*
  1134. * Padding
  1135. */
  1136. .padding-top-none {
  1137. padding-top: 0 !important;
  1138. }
  1139. .padding-top-half {
  1140. padding-top: 16px !important;
  1141. }
  1142. .padding-top-default {
  1143. padding-top: 32px !important;
  1144. }
  1145. .padding-right-none {
  1146. /*rtl:ignore*/
  1147. padding-right: 0 !important;
  1148. }
  1149. .padding-right-half {
  1150. /*rtl:ignore*/
  1151. padding-right: 16px !important;
  1152. }
  1153. .padding-right-default {
  1154. /*rtl:ignore*/
  1155. padding-right: 32px !important;
  1156. }
  1157. .padding-bottom-none {
  1158. padding-bottom: 0 !important;
  1159. }
  1160. .padding-bottom-half {
  1161. padding-bottom: 16px !important;
  1162. }
  1163. .padding-bottom-default {
  1164. padding-bottom: 32px !important;
  1165. }
  1166. .padding-left-none {
  1167. /*rtl:ignore*/
  1168. padding-left: 0 !important;
  1169. }
  1170. .padding-left-half {
  1171. /*rtl:ignore*/
  1172. padding-left: 16px !important;
  1173. }
  1174. .padding-left-default {
  1175. /*rtl:ignore*/
  1176. padding-left: 32px !important;
  1177. }
  1178. /**
  1179. * Vendors
  1180. * - Styles for 3rd party plugins and WP extensions
  1181. */
  1182. /**
  1183. * Vendors
  1184. * - 3rd-party compatibility styles
  1185. */
  1186. /**
  1187. * Set Jetpack form text color
  1188. */
  1189. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1190. color: black;
  1191. }
  1192. /**
  1193. * Extras
  1194. */
  1195. .editor-post-title__input {
  1196. text-align: center;
  1197. }
  1198. /**
  1199. * 1. General Styles
  1200. */
  1201. a {
  1202. text-decoration: none;
  1203. }
  1204. .wp-block-group a,
  1205. .wp-block-cover a,
  1206. .wp-block-cover-image a,
  1207. .wp-block-media-text a,
  1208. p:not(.site-title) a {
  1209. text-decoration: underline;
  1210. }
  1211. .wp-block-group a.wp-block-button__link, .wp-block-group a:hover,
  1212. .wp-block-cover a.wp-block-button__link,
  1213. .wp-block-cover a:hover,
  1214. .wp-block-cover-image a.wp-block-button__link,
  1215. .wp-block-cover-image a:hover,
  1216. .wp-block-media-text a.wp-block-button__link,
  1217. .wp-block-media-text a:hover,
  1218. p:not(.site-title) a.wp-block-button__link,
  1219. p:not(.site-title) a:hover {
  1220. text-decoration: none;
  1221. }
  1222. .has-background a {
  1223. color: currentColor;
  1224. }
  1225. .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 {
  1226. text-decoration: none;
  1227. }
  1228. .wp-block-a8c-blog-posts .cat-links a,
  1229. .wp-block-a8c-blog-posts .more-link,
  1230. .wp-block-a8c-blog-posts .entry-meta a {
  1231. text-decoration: none;
  1232. }
  1233. .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,
  1234. .wp-block-a8c-blog-posts .more-link:active,
  1235. .wp-block-a8c-blog-posts .more-link:focus,
  1236. .wp-block-a8c-blog-posts .more-link:hover,
  1237. .wp-block-a8c-blog-posts .entry-meta a:active,
  1238. .wp-block-a8c-blog-posts .entry-meta a:focus,
  1239. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1240. text-decoration: underline;
  1241. }
  1242. .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 {
  1243. text-decoration: underline;
  1244. }
  1245. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  1246. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  1247. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  1248. text-decoration: none;
  1249. }
  1250. .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,
  1251. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
  1252. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
  1253. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1254. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
  1255. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
  1256. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
  1257. text-decoration: underline;
  1258. }
  1259. .wp-block-a8c-blog-posts + .button {
  1260. font-size: 1.04167em;
  1261. }
  1262. /**
  1263. * Full Site Editing
  1264. * - Full Site Editing overrides
  1265. */
  1266. @media (min-width: 600px) {
  1267. .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"] {
  1268. margin-left: 0;
  1269. margin-right: 0;
  1270. }
  1271. }
  1272. .a8c-template-editor .block-editor-block-list__block-edit [data-block] {
  1273. margin: 12px 0 0 0;
  1274. }
  1275. .template-block .fse-template-part {
  1276. padding: 16px;
  1277. }
  1278. @media only screen and (min-width: 560px) {
  1279. .template-block .fse-template-part {
  1280. padding: 32px 0;
  1281. }
  1282. }
  1283. .template-block .fse-template-part figure.fse-site-logo {
  1284. width: auto;
  1285. }
  1286. .template-block .fse-template-part .block-list-appender {
  1287. display: none;
  1288. }
  1289. .template-block .fse-template-part .wp-block-column .block-editor-block-list__layout [data-type='a8c/site-title']:first-child .site-title {
  1290. margin-top: 0;
  1291. }
  1292. .fse-template-part .wp-block-cover .site-title,
  1293. .fse-template-part .wp-block-cover .site-description,
  1294. .fse-template-part .wp-block-cover-image .site-title,
  1295. .fse-template-part .wp-block-cover-image .site-description {
  1296. background: transparent;
  1297. color: inherit;
  1298. }
  1299. .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 {
  1300. width: auto;
  1301. }
  1302. .fse-template-part .wp-block-column {
  1303. width: 100%;
  1304. }
  1305. .fse-template-part .wp-block-columns .wp-block-column > * {
  1306. margin: 0 0 5px 0;
  1307. }
  1308. .fse-template-part .main-navigation {
  1309. color: #394d55;
  1310. }
  1311. .fse-template-part .main-navigation > div {
  1312. display: none;
  1313. }
  1314. .fse-template-part .main-navigation #toggle-menu {
  1315. display: inline-block;
  1316. margin: 0;
  1317. }
  1318. .fse-template-part .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  1319. display: block;
  1320. }
  1321. .fse-template-part .main-navigation #toggle:focus + #toggle-menu {
  1322. background-color: #2f5f74;
  1323. outline: inherit;
  1324. text-decoration: underline;
  1325. }
  1326. .fse-template-part .main-navigation .dropdown-icon.close {
  1327. display: none;
  1328. }
  1329. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .open {
  1330. display: none;
  1331. }
  1332. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .close {
  1333. display: inline;
  1334. }
  1335. @media only screen and (min-width: 560px) {
  1336. .fse-template-part .main-navigation > div {
  1337. display: inline-block;
  1338. }
  1339. .fse-template-part .main-navigation #toggle-menu {
  1340. display: none;
  1341. }
  1342. .fse-template-part .main-navigation > div > ul > li > ul {
  1343. display: none;
  1344. }
  1345. }
  1346. .fse-template-part .main-navigation > div > ul {
  1347. display: flex;
  1348. flex-wrap: wrap;
  1349. list-style: none;
  1350. margin: 0;
  1351. max-width: none;
  1352. padding-left: 0;
  1353. position: relative;
  1354. /* Sub-menus Flyout */
  1355. }
  1356. .fse-template-part .main-navigation > div > ul ul {
  1357. padding-left: 0;
  1358. }
  1359. .fse-template-part .main-navigation > div > ul li {
  1360. display: block;
  1361. position: relative;
  1362. width: 100%;
  1363. z-index: 1;
  1364. }
  1365. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li[focus-within] {
  1366. cursor: pointer;
  1367. z-index: 99999;
  1368. }
  1369. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li:focus-within {
  1370. cursor: pointer;
  1371. z-index: 99999;
  1372. }
  1373. @media only screen and (min-width: 560px) {
  1374. .fse-template-part .main-navigation > div > ul li {
  1375. display: inherit;
  1376. width: inherit;
  1377. /* Submenu display */
  1378. }
  1379. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1380. .fse-template-part .main-navigation > div > ul li[focus-within] > ul,
  1381. .fse-template-part .main-navigation > div > ul li ul:hover,
  1382. .fse-template-part .main-navigation > div > ul li ul:focus {
  1383. visibility: visible;
  1384. opacity: 1;
  1385. display: block;
  1386. }
  1387. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1388. .fse-template-part .main-navigation > div > ul li:focus-within > ul,
  1389. .fse-template-part .main-navigation > div > ul li ul:hover,
  1390. .fse-template-part .main-navigation > div > ul li ul:focus {
  1391. visibility: visible;
  1392. opacity: 1;
  1393. display: block;
  1394. }
  1395. }
  1396. @media only screen and (min-width: 560px) {
  1397. .fse-template-part .main-navigation > div > ul > li > a {
  1398. line-height: 1;
  1399. }
  1400. .fse-template-part .main-navigation > div > ul > li > a:before, .fse-template-part .main-navigation > div > ul > li > a:after {
  1401. content: '';
  1402. display: block;
  1403. height: 0;
  1404. width: 0;
  1405. }
  1406. .fse-template-part .main-navigation > div > ul > li > a:before {
  1407. margin-bottom: -0.12em;
  1408. }
  1409. .fse-template-part .main-navigation > div > ul > li > a:after {
  1410. margin-top: -0.11em;
  1411. }
  1412. .fse-template-part .main-navigation > div > ul > li:first-of-type > a {
  1413. padding-left: 0;
  1414. }
  1415. .fse-template-part .main-navigation > div > ul > li:last-of-type > a {
  1416. padding-right: 0;
  1417. }
  1418. }
  1419. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1420. margin: 0;
  1421. position: relative;
  1422. }
  1423. @media only screen and (min-width: 560px) {
  1424. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1425. background: #ffffff;
  1426. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  1427. left: 0;
  1428. top: 100%;
  1429. min-width: max-content;
  1430. opacity: 0;
  1431. position: absolute;
  1432. transition: all 0.5s ease;
  1433. visibility: hidden;
  1434. }
  1435. }
  1436. .fse-template-part .main-navigation > div > ul > li > .sub-menu .sub-menu {
  1437. width: 100%;
  1438. }
  1439. .fse-template-part .main-navigation a {
  1440. color: #394d55;
  1441. display: block;
  1442. font-family: "Karla", Arial, sans-serif;
  1443. font-family: var(--font-base, "Karla", Arial, sans-serif);
  1444. font-weight: bold;
  1445. padding: 8px 0;
  1446. }
  1447. @media only screen and (min-width: 560px) {
  1448. .fse-template-part .main-navigation a {
  1449. padding: 16px;
  1450. }
  1451. }
  1452. .fse-template-part .main-navigation a:link, .fse-template-part .main-navigation a:visited {
  1453. color: #394d55;
  1454. }
  1455. .fse-template-part .main-navigation a:hover {
  1456. color: #2f5f74;
  1457. }
  1458. .fse-template-part .main-navigation .sub-menu {
  1459. list-style: none;
  1460. margin-left: 0;
  1461. /* Reset the counter for each UL */
  1462. counter-reset: nested-list;
  1463. }
  1464. .fse-template-part .main-navigation .sub-menu .menu-item a {
  1465. padding-top: 8px;
  1466. padding-bottom: 8px;
  1467. }
  1468. .fse-template-part .main-navigation .sub-menu .menu-item a::before {
  1469. /* Increment the dashes */
  1470. counter-increment: nested-list;
  1471. /* Insert dashes with spaces in between */
  1472. content: "– " counters(nested-list, "– ", none);
  1473. }
  1474. @media only screen and (min-width: 560px) {
  1475. .fse-template-part .main-navigation > div > ul > .menu-item-has-children > a::after {
  1476. content: "\00a0\25BC";
  1477. display: inline-block;
  1478. font-size: 0.86806rem;
  1479. height: inherit;
  1480. width: inherit;
  1481. }
  1482. }
  1483. .fse-template-part .main-navigation .hide-visually {
  1484. position: absolute !important;
  1485. clip: rect(1px, 1px, 1px, 1px);
  1486. padding: 0 !important;
  1487. border: 0 !important;
  1488. height: 1px !important;
  1489. width: 1px !important;
  1490. overflow: hidden;
  1491. }
  1492. .fse-template-part body:not(.fse-enabled) .main-navigation a {
  1493. font-size: 1.04167rem;
  1494. }
  1495. .fse-template-part .main-navigation {
  1496. text-align: center;
  1497. /**
  1498. * Button Placeholder style
  1499. * - Since buttons appear in various blocks,
  1500. * let’s use a placeholder to keep them all
  1501. * in-sync
  1502. */
  1503. /**
  1504. * Onsale Placeholder style
  1505. * - Since buttons appear in various blocks,
  1506. * let’s use a placeholder to keep them all
  1507. * in-sync
  1508. */
  1509. }
  1510. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  1511. width: 100%;
  1512. }
  1513. .fse-template-part .main-navigation .wp-block-button__link,
  1514. .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 {
  1515. line-height: 1;
  1516. color: #ffffff;
  1517. cursor: pointer;
  1518. font-weight: bold;
  1519. font-family: "Karla", Arial, sans-serif;
  1520. font-family: var(--font-base, "Karla", Arial, sans-serif);
  1521. font-size: 1.04167rem;
  1522. background-color: #3E7D98;
  1523. border-radius: 160px;
  1524. border-width: 0;
  1525. text-decoration: none;
  1526. padding: 16px 48px;
  1527. }
  1528. .fse-template-part .main-navigation .wp-block-button__link:before,
  1529. .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,
  1530. .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 {
  1531. content: '';
  1532. display: block;
  1533. height: 0;
  1534. width: 0;
  1535. }
  1536. .fse-template-part .main-navigation .wp-block-button__link:before,
  1537. .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 {
  1538. margin-bottom: -0.12em;
  1539. }
  1540. .fse-template-part .main-navigation .wp-block-button__link:after,
  1541. .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 {
  1542. margin-top: -0.11em;
  1543. }
  1544. .fse-template-part .main-navigation .wp-block-button__link:not(.has-background):hover,
  1545. .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,
  1546. .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,
  1547. .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 {
  1548. color: #ffffff;
  1549. background-color: #2f5f74;
  1550. }
  1551. .fse-template-part .main-navigation .main-menu.footer-menu li a {
  1552. font-size: inherit;
  1553. }
  1554. .fse-template-part .main-navigation .main-menu.footer-menu li.menu-item-has-children > a::after {
  1555. font-size: 0.6em;
  1556. vertical-align: middle;
  1557. }
  1558. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  1559. color: inherit;
  1560. }
  1561. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  1562. justify-content: flex-start;
  1563. }
  1564. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  1565. justify-content: center;
  1566. }
  1567. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  1568. justify-content: flex-end;
  1569. }
  1570. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  1571. padding: 16px;
  1572. }
  1573. @media only screen and (min-width: 560px) {
  1574. .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] {
  1575. margin-top: 14px;
  1576. }
  1577. .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] {
  1578. margin-top: 0;
  1579. }
  1580. }
  1581. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1582. margin-top: -16px;
  1583. }
  1584. @media only screen and (min-width: 560px) {
  1585. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1586. margin-top: -32px;
  1587. }
  1588. }
  1589. .post-content__block {
  1590. margin-bottom: 160px;
  1591. margin-top: 36px;
  1592. z-index: 20;
  1593. }
  1594. .fse-template-part .has-normal-font-size {
  1595. font-size: 1.5rem;
  1596. }
  1597. .fse-template-part .site-title {
  1598. font-weight: bold;
  1599. }
  1600. .fse-template-part .main-navigation a {
  1601. text-decoration: none;
  1602. }
  1603. .fse-template-part .wp-block-cover .has-background,
  1604. .fse-template-part .wp-block-cover-image .has-background {
  1605. text-shadow: none;
  1606. }
  1607. .post-content__block {
  1608. margin-top: -36px;
  1609. }