style-editor.css 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438
  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: #3C2323;
  163. background-color: #FFFDF6;
  164. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  165. font-family: var(--font-base, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  166. font-size: 20px;
  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: 20px;
  174. }
  175. p {
  176. font-size: 1em;
  177. line-height: 1.6;
  178. }
  179. a {
  180. color: #20603C;
  181. }
  182. a:hover {
  183. color: #133a24;
  184. }
  185. .has-primary-background-color a:not(.has-text-color) {
  186. color: #FFFDF6;
  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.64303rem;
  215. letter-spacing: normal;
  216. line-height: 1.15;
  217. }
  218. blockquote cite,
  219. blockquote footer {
  220. font-size: 0.84746rem;
  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.3924rem;
  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.71818rem;
  245. letter-spacing: normal;
  246. }
  247. figcaption {
  248. color: #844d4d;
  249. font-size: 0.71818rem;
  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. /* Center-align getty image embeds */
  274. .getty.embed.image {
  275. display: block !important;
  276. }
  277. /**
  278. * Blocks
  279. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  280. * spacing with CSS-variables overrides
  281. */
  282. /**
  283. * Block Styles for the Editor
  284. *
  285. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  286. * spacing with CSS-variables overrides in the Block Editor
  287. * - In the future the Block styles may get compiled to individual .css
  288. * files and conditionally loaded
  289. */
  290. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  291. margin-bottom: 16px;
  292. }
  293. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  294. margin-right: 32px;
  295. }
  296. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  297. margin-left: 32px;
  298. }
  299. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  300. padding: 32px;
  301. }
  302. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  303. color: #fff;
  304. }
  305. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  306. color: currentColor;
  307. }
  308. .wp-block-a8c-blog-posts .article-section-title {
  309. font-size: 1em;
  310. margin-top: 0;
  311. margin-bottom: 16px;
  312. }
  313. .wp-block-a8c-blog-posts article {
  314. margin-bottom: 64px;
  315. }
  316. @media only screen and (min-width: 560px) {
  317. .wp-block-a8c-blog-posts article {
  318. margin-bottom: 96px;
  319. }
  320. }
  321. .wp-block-a8c-blog-posts .post-thumbnail img {
  322. vertical-align: middle;
  323. width: auto;
  324. }
  325. .wp-block-a8c-blog-posts .entry-wrapper > * {
  326. /* Vertical margins logic between post details */
  327. margin-top: 16px;
  328. margin-bottom: 16px;
  329. }
  330. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  331. margin-top: 0;
  332. }
  333. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  334. margin-bottom: 0;
  335. }
  336. .wp-block-a8c-blog-posts .entry-title a {
  337. color: #20603C;
  338. }
  339. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  340. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  341. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  342. color: currentColor;
  343. }
  344. .wp-block-a8c-blog-posts .entry-title a:hover {
  345. color: #133a24;
  346. text-decoration: underline;
  347. }
  348. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  349. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  350. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  351. color: currentColor;
  352. }
  353. .wp-block-a8c-blog-posts .more-link {
  354. display: block;
  355. color: inherit;
  356. margin-top: 16px;
  357. }
  358. .wp-block-a8c-blog-posts .more-link:after {
  359. content: "→" /*rtl:"←"*/;
  360. display: inline-block;
  361. margin-left: 0.5em;
  362. }
  363. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  364. color: #133a24;
  365. text-decoration: none;
  366. }
  367. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  368. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  369. [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,
  370. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  371. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  372. color: currentColor;
  373. }
  374. .wp-block-a8c-blog-posts .entry-meta,
  375. .wp-block-a8c-blog-posts .cat-links {
  376. color: #844d4d;
  377. font-size: 0.84746em;
  378. }
  379. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  380. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  381. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  382. .wp-block-a8c-blog-posts .cat-links,
  383. [class*="background-color"]:not(.has-background-background-color)
  384. .wp-block-a8c-blog-posts .cat-links,
  385. [style*="background-color"]
  386. .wp-block-a8c-blog-posts .cat-links {
  387. color: currentColor;
  388. }
  389. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  390. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  391. margin-right: 16px;
  392. }
  393. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  394. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  395. display: none;
  396. }
  397. .wp-block-a8c-blog-posts .entry-meta a,
  398. .wp-block-a8c-blog-posts .cat-links a {
  399. color: currentColor;
  400. text-decoration: underline;
  401. }
  402. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  403. .wp-block-a8c-blog-posts .cat-links a:hover,
  404. .wp-block-a8c-blog-posts .cat-links a:active {
  405. color: #133a24;
  406. text-decoration: none;
  407. }
  408. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  409. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  410. [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,
  411. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  412. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  413. .wp-block-a8c-blog-posts .cat-links a:hover,
  414. [class*="background-color"]:not(.has-background-background-color)
  415. .wp-block-a8c-blog-posts .cat-links a:hover,
  416. [style*="background-color"]
  417. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  418. .wp-block-a8c-blog-posts .cat-links a:active,
  419. [class*="background-color"]:not(.has-background-background-color)
  420. .wp-block-a8c-blog-posts .cat-links a:active,
  421. [style*="background-color"]
  422. .wp-block-a8c-blog-posts .cat-links a:active {
  423. color: currentColor;
  424. }
  425. /**
  426. * Button Placeholder style
  427. * - Since buttons appear in various blocks,
  428. * let’s use a placeholder to keep them all
  429. * in-sync
  430. */
  431. .wp-block-a8c-blog-posts + .button, .wp-block-button__link,
  432. .wp-block-file__button, .wp-block-search .wp-block-search__button {
  433. line-height: 1;
  434. color: #FFFDF6;
  435. cursor: pointer;
  436. font-weight: bold;
  437. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  438. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  439. font-size: 1rem;
  440. background-color: #20603C;
  441. border-radius: 5px;
  442. border-width: 0;
  443. text-decoration: none;
  444. padding: 18px 18px;
  445. }
  446. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  447. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  448. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after {
  449. content: '';
  450. display: block;
  451. height: 0;
  452. width: 0;
  453. }
  454. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  455. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before {
  456. margin-bottom: -0.12em;
  457. }
  458. .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  459. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after {
  460. margin-top: -0.11em;
  461. }
  462. .wp-block-a8c-blog-posts + .button:not(.has-background):hover, .wp-block-button__link:not(.has-background):hover,
  463. .wp-block-file__button:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-button__link:focus,
  464. .wp-block-file__button:focus, .wp-block-search .wp-block-search__button:focus, .wp-block-a8c-blog-posts + .has-focus.button, .has-focus.wp-block-button__link,
  465. .has-focus.wp-block-file__button, .wp-block-search .has-focus.wp-block-search__button {
  466. color: ("default": #FFFDF6, "light": #FDF9EC, "dark": #DDDDDD);
  467. background-color: #133a24;
  468. }
  469. /**
  470. * Onsale Placeholder style
  471. * - Since buttons appear in various blocks,
  472. * let’s use a placeholder to keep them all
  473. * in-sync
  474. */
  475. .wp-block-a8c-blog-posts + .button {
  476. display: inline-block;
  477. font-size: 1.18em;
  478. }
  479. .wp-block-a8c-blog-posts + .button:hover {
  480. cursor: default;
  481. }
  482. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  483. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  484. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  485. background-color: transparent;
  486. border: 2px solid currentColor;
  487. color: currentColor;
  488. }
  489. /**
  490. * Button
  491. */
  492. /* Default Style */
  493. .wp-block-button__link {
  494. color: #FFFDF6;
  495. font-weight: bold;
  496. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  497. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  498. font-size: 1em;
  499. line-height: 1;
  500. background-color: #20603C;
  501. border-radius: 5px;
  502. padding: 18px 18px;
  503. /* Outline Style */
  504. /* Squared Style */
  505. }
  506. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  507. color: ("default": #FFFDF6, "light": #FDF9EC, "dark": #DDDDDD);
  508. background-color: #133a24;
  509. }
  510. .wp-block-button__link.is-style-outline,
  511. .is-style-outline .wp-block-button__link {
  512. border: 2px solid currentcolor;
  513. }
  514. .wp-block-button__link.is-style-outline:not(.has-text-color),
  515. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  516. color: #20603C;
  517. }
  518. .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,
  519. .is-style-outline .wp-block-button__link:hover,
  520. .is-style-outline .wp-block-button__link:focus,
  521. .is-style-outline .wp-block-button__link.has-focus {
  522. color: #133a24;
  523. background: transparent;
  524. }
  525. .has-primary-background-color .wp-block-button__link.is-style-outline:not(.has-text-color), .has-primary-background-color
  526. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  527. color: #FFFDF6;
  528. }
  529. .wp-block-button__link.is-style-squared,
  530. .is-style-squared .wp-block-button__link {
  531. border-radius: 0;
  532. }
  533. /* Default Style */
  534. .button {
  535. color: #FFFDF6;
  536. font-weight: bold;
  537. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  538. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  539. font-size: 1em;
  540. line-height: 1;
  541. background-color: #20603C;
  542. border-radius: 5px;
  543. padding: 18px 18px;
  544. }
  545. .button:hover, .button:focus, .button.has-focus {
  546. color: ("default": #FFFDF6, "light": #FDF9EC, "dark": #DDDDDD);
  547. background-color: #133a24;
  548. }
  549. .wp-block-columns .wp-block[data-align=full],
  550. .wp-block-columns .alignfull {
  551. margin-left: inherit;
  552. margin-right: inherit;
  553. }
  554. .wp-block-cover,
  555. .wp-block-cover-image {
  556. background-color: #0D1B24;
  557. color: #FDF9EC;
  558. min-height: calc( 15 * 32px);
  559. margin-top: inherit;
  560. margin-bottom: inherit;
  561. /* Treating H2 separately to account for legacy /core styles */
  562. }
  563. .wp-block-cover.has-background-dim,
  564. .wp-block-cover-image.has-background-dim {
  565. background-color: #0D1B24;
  566. color: #FDF9EC;
  567. }
  568. .wp-block-cover .wp-block-cover-image-text,
  569. .wp-block-cover .wp-block-cover-text,
  570. .wp-block-cover .block-editor-block-list__block,
  571. .wp-block-cover-image .wp-block-cover-image-text,
  572. .wp-block-cover-image .wp-block-cover-text,
  573. .wp-block-cover-image .block-editor-block-list__block {
  574. color: currentColor;
  575. }
  576. .wp-block-cover h2,
  577. .wp-block-cover-image h2 {
  578. font-size: 2.28776;
  579. letter-spacing: normal;
  580. line-height: 1.15;
  581. padding: 0;
  582. max-width: inherit;
  583. text-align: inherit;
  584. }
  585. .wp-block-cover h2.has-text-align-left,
  586. .wp-block-cover-image h2.has-text-align-left {
  587. text-align: left;
  588. }
  589. .wp-block-cover h2.has-text-align-center,
  590. .wp-block-cover-image h2.has-text-align-center {
  591. text-align: center;
  592. }
  593. .wp-block-cover h2.has-text-align-right,
  594. .wp-block-cover-image h2.has-text-align-right {
  595. text-align: right;
  596. }
  597. .wp-block-heading h1, h1, .h1,
  598. .wp-block-heading h2, h2, .h2,
  599. .wp-block-heading h3, h3, .h3,
  600. .wp-block-heading h4, h4, .h4,
  601. .wp-block-heading h5, h5, .h5,
  602. .wp-block-heading h6, h6, .h6 {
  603. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  604. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  605. font-weight: bold;
  606. clear: both;
  607. }
  608. .wp-block-heading h1, h1, .h1 {
  609. font-size: 2.69955em;
  610. letter-spacing: normal;
  611. line-height: 1.15;
  612. }
  613. .wp-block-heading h2, h2, .h2 {
  614. font-size: 2.28776em;
  615. letter-spacing: normal;
  616. line-height: 1.15;
  617. }
  618. .wp-block-heading h3, h3, .h3 {
  619. font-size: 1.93878em;
  620. letter-spacing: normal;
  621. line-height: 1.15;
  622. }
  623. .wp-block-heading h4, h4, .h4 {
  624. font-size: 1.64303em;
  625. letter-spacing: normal;
  626. line-height: 1.15;
  627. }
  628. .wp-block-heading h5, h5, .h5 {
  629. font-size: 1.3924em;
  630. letter-spacing: normal;
  631. line-height: 1.15;
  632. }
  633. .wp-block-heading h6, h6, .h6 {
  634. font-size: 1.18em;
  635. letter-spacing: normal;
  636. line-height: 1.15;
  637. }
  638. /* Center image block by default in the editor */
  639. .wp-block-image > div {
  640. text-align: center;
  641. }
  642. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  643. margin: 0 auto;
  644. }
  645. .wp-block-gallery figcaption {
  646. margin-bottom: 0;
  647. }
  648. .wp-block-group.has-background {
  649. padding: 21.312px;
  650. }
  651. @media only screen and (min-width: 560px) {
  652. .wp-block-group.has-background {
  653. padding: 32px;
  654. }
  655. }
  656. .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] {
  657. margin: 0;
  658. width: 100%;
  659. }
  660. .wp-block-latest-comments {
  661. margin-left: 0;
  662. }
  663. .wp-block-latest-posts {
  664. padding-left: 0;
  665. }
  666. .wp-block-latest-posts > li > a {
  667. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  668. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  669. font-size: 1.64303rem;
  670. font-weight: bold;
  671. line-height: 1.15;
  672. }
  673. .wp-block-latest-posts:not(.is-grid) > li {
  674. /* Vertical margins logic */
  675. margin-top: 32px;
  676. margin-bottom: 32px;
  677. }
  678. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  679. margin-top: 0;
  680. }
  681. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  682. margin-bottom: 0;
  683. }
  684. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  685. color: #844d4d;
  686. font-size: 0.84746rem;
  687. line-height: 1.6;
  688. }
  689. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  690. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  691. color: currentColor;
  692. }
  693. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  694. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  695. font-size: 0.84746rem;
  696. line-height: 1.6;
  697. margin: 0;
  698. }
  699. ul,
  700. ol {
  701. margin: 32px 0;
  702. padding-left: 32px;
  703. }
  704. ul.aligncenter,
  705. ol.aligncenter {
  706. list-style-position: inside;
  707. padding: 0;
  708. }
  709. ul.alignright,
  710. ol.alignright {
  711. list-style-position: inside;
  712. text-align: right;
  713. padding: 0;
  714. }
  715. li > ul,
  716. li > ol {
  717. margin: 0;
  718. }
  719. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  720. color: currentColor;
  721. }
  722. .a8c-posts-list {
  723. padding-left: 0;
  724. }
  725. p.has-background {
  726. padding: 16px 16px;
  727. }
  728. p.has-background:not(.has-background-background-color) a {
  729. color: currentColor;
  730. }
  731. .wp-block-pullquote {
  732. border-top-color: #3C2323;
  733. border-top-width: 4px;
  734. border-bottom-color: #3C2323;
  735. border-bottom-width: 4px;
  736. color: #3C2323;
  737. }
  738. .wp-block-pullquote blockquote p {
  739. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  740. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  741. font-size: 1.64303rem;
  742. letter-spacing: normal;
  743. line-height: 1.15;
  744. }
  745. .wp-block-pullquote.is-style-solid-color blockquote p {
  746. font-size: 1.64303rem;
  747. }
  748. .wp-block-pullquote a {
  749. color: currentColor;
  750. }
  751. .wp-block-pullquote .wp-block-pullquote__citation,
  752. .wp-block-pullquote cite,
  753. .wp-block-pullquote footer {
  754. color: #844d4d;
  755. font-size: 0.84746rem;
  756. letter-spacing: normal;
  757. }
  758. .wp-block-pullquote blockquote {
  759. padding-left: 0;
  760. }
  761. .wp-block-pullquote.is-style-solid-color {
  762. color: #FFFDF6;
  763. }
  764. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  765. .wp-block-pullquote.is-style-solid-color cite,
  766. .wp-block-pullquote.is-style-solid-color footer {
  767. color: currentColor;
  768. }
  769. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  770. background-color: #20603C;
  771. }
  772. .wp-block-quote {
  773. border-left-color: #20603C;
  774. padding-left: 16px;
  775. }
  776. .wp-block-quote p {
  777. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  778. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  779. font-size: 1.64303em;
  780. letter-spacing: normal;
  781. }
  782. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  783. border: none;
  784. padding: 0;
  785. }
  786. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  787. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  788. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  789. font-size: 1.93878em;
  790. letter-spacing: normal;
  791. line-height: 1.15;
  792. }
  793. .has-background:not(.has-background-background-color) .wp-block-quote,
  794. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  795. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  796. .wp-block-cover[style*="background-image"] .wp-block-quote {
  797. border-color: currentColor;
  798. }
  799. .wp-block-quote .wp-block-quote__citation {
  800. color: #844d4d;
  801. font-size: 0.84746em;
  802. letter-spacing: normal;
  803. }
  804. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  805. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  806. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  807. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  808. color: currentColor;
  809. }
  810. .wp-block-search {
  811. flex-wrap: wrap;
  812. }
  813. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  814. background: white;
  815. color: black;
  816. border: 1px solid #AAAAAA;
  817. border-radius: 3px;
  818. }
  819. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  820. padding: 16px;
  821. }
  822. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  823. padding: 18px 18px;
  824. }
  825. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  826. padding: 0;
  827. }
  828. .wp-block-search .wp-block-search__label {
  829. font-weight: normal;
  830. }
  831. .wp-block-search .wp-block-search__input {
  832. color: black;
  833. border: 1px solid #AAAAAA;
  834. border-radius: 3px;
  835. padding: 16px;
  836. font-size: 1rem;
  837. line-height: 1rem;
  838. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  839. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  840. max-width: inherit;
  841. margin-right: calc( .66 * 18px);
  842. background: white;
  843. }
  844. .wp-block-search .wp-block-search__input:focus {
  845. color: black;
  846. border-color: #AAAAAA;
  847. }
  848. .wp-block-search .wp-block-search__button {
  849. border: none;
  850. box-shadow: none;
  851. }
  852. .wp-block-search .wp-block-search__button.has-icon {
  853. transform: scaleX(-1);
  854. padding: 0;
  855. min-width: calc(2* 18px + 1rem + 4px);
  856. min-height: calc(2* 18px + 1rem + 4px);
  857. }
  858. .wp-block-search .wp-block-search__button.has-icon svg {
  859. fill: currentColor;
  860. width: 29px;
  861. height: 29px;
  862. }
  863. .wp-block-separator,
  864. hr {
  865. border-bottom: 2.64px solid #3C2323;
  866. clear: both;
  867. }
  868. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  869. hr[style*="text-align:right"],
  870. hr[style*="text-align: right"] {
  871. border-right-color: #3C2323;
  872. }
  873. .wp-block-separator.is-style-wide,
  874. hr.is-style-wide {
  875. border-bottom-width: 2.64px;
  876. }
  877. .wp-block-separator.is-style-dots,
  878. hr.is-style-dots {
  879. border-bottom: none;
  880. }
  881. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  882. hr.is-style-dots.has-background,
  883. hr.is-style-dots.has-text-color {
  884. background-color: transparent !important;
  885. }
  886. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  887. hr.is-style-dots.has-background:before,
  888. hr.is-style-dots.has-text-color:before {
  889. color: currentColor !important;
  890. }
  891. .wp-block-separator.is-style-dots:before,
  892. hr.is-style-dots:before {
  893. color: #3C2323;
  894. }
  895. .has-background:not(.has-background-background-color) .wp-block-separator,
  896. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  897. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  898. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  899. hr,
  900. [class*="background-color"]:not(.has-background-background-color)
  901. hr,
  902. [style*="background-color"]:not(.has-background-background-color)
  903. hr,
  904. .wp-block-cover[style*="background-image"]
  905. hr {
  906. border-color: currentColor;
  907. }
  908. table th,
  909. .wp-block-table th {
  910. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  911. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  912. }
  913. table td,
  914. table th,
  915. .wp-block-table td,
  916. .wp-block-table th {
  917. padding: calc( 0.5 * 16px);
  918. }
  919. table.is-style-stripes tbody tr:nth-child(odd),
  920. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  921. background-color: #FAFAFA;
  922. color: #3C2323;
  923. }
  924. pre.wp-block-verse {
  925. font-family: monospace, monospace;
  926. color: #3C2323;
  927. }
  928. /**
  929. * Editor Post Title
  930. * - Needs a special styles
  931. */
  932. .editor-post-title__block .editor-post-title__input {
  933. color: #3C2323;
  934. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  935. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  936. font-weight: bold;
  937. font-size: 2.28776;
  938. letter-spacing: normal;
  939. line-height: 1.15;
  940. }
  941. .wp-block .has-primary-color,
  942. .has-primary-color {
  943. color: #20603C;
  944. }
  945. .wp-block .has-secondary-color,
  946. .has-secondary-color {
  947. color: #655441;
  948. }
  949. .wp-block .has-foreground-color,
  950. .has-foreground-color {
  951. color: #3C2323;
  952. }
  953. .wp-block .has-foreground-light-color,
  954. .has-foreground-light-color {
  955. color: #844d4d;
  956. }
  957. .wp-block .has-foreground-dark-color,
  958. .has-foreground-dark-color {
  959. color: #0D1B24;
  960. }
  961. .wp-block .has-background-light-color,
  962. .has-background-light-color {
  963. color: #FDF9EC;
  964. }
  965. .wp-block .has-background-dark-color,
  966. .has-background-dark-color {
  967. color: #DDDDDD;
  968. }
  969. .wp-block .has-background-color,
  970. .has-background-color {
  971. color: #FFFDF6;
  972. }
  973. .has-background p:not(.has-text-color),
  974. .has-background h1:not(.has-text-color),
  975. .has-background h2:not(.has-text-color),
  976. .has-background h3:not(.has-text-color),
  977. .has-background h4:not(.has-text-color),
  978. .has-background h5:not(.has-text-color),
  979. .has-background h6:not(.has-text-color) {
  980. color: currentColor;
  981. }
  982. .has-primary-background-color,
  983. .has-primary-background-color.has-background-dim {
  984. background-color: #20603C;
  985. color: #FFFDF6;
  986. }
  987. .has-primary-background-color:not(.has-text-color),
  988. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  989. color: #FFFDF6;
  990. }
  991. .has-secondary-background-color,
  992. .has-secondary-background-color.has-background-dim {
  993. background-color: #655441;
  994. }
  995. .has-secondary-background-color:not(.has-text-color),
  996. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  997. color: #FFFDF6;
  998. }
  999. .has-background-dim,
  1000. .has-foreground-background-color,
  1001. .has-foreground-background-color.has-background-dim {
  1002. background-color: #3C2323;
  1003. }
  1004. .has-background-dim,
  1005. .has-foreground-background-color,
  1006. .has-foreground-background-color.has-background-dim {
  1007. color: #FFFDF6;
  1008. }
  1009. .has-foreground-light-background-color,
  1010. .has-foreground-light-background-color.has-background-dim {
  1011. background-color: #844d4d;
  1012. }
  1013. .has-foreground-light-background-color:not(.has-text-color),
  1014. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  1015. color: #FFFDF6;
  1016. }
  1017. .has-foreground-dark-background-color,
  1018. .has-foreground-dark-background-color.has-background-dim {
  1019. background-color: #0D1B24;
  1020. }
  1021. .has-foreground-dark-background-color:not(.has-text-color),
  1022. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  1023. color: #FFFDF6;
  1024. }
  1025. .has-background-light-background-color,
  1026. .has-background-light-background-color.has-background-dim {
  1027. background-color: #FDF9EC;
  1028. }
  1029. .has-background-light-background-color:not(.has-text-color),
  1030. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  1031. color: #3C2323;
  1032. }
  1033. .has-background-dark-background-color,
  1034. .has-background-dark-background-color.has-background-dim {
  1035. background-color: #DDDDDD;
  1036. }
  1037. .has-background-dark-background-color:not(.has-text-color),
  1038. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  1039. color: #3C2323;
  1040. }
  1041. .has-background-background-color,
  1042. .has-background-background-color.has-background-dim {
  1043. background-color: #FFFDF6;
  1044. color: #3C2323;
  1045. }
  1046. .has-background-background-color:not(.has-text-color),
  1047. .has-background-background-color.has-background-dim:not(.has-text-color) {
  1048. color: #3C2323;
  1049. }
  1050. .is-small-text,
  1051. .has-small-font-size {
  1052. font-size: 0.84746;
  1053. }
  1054. .is-regular-text,
  1055. .has-regular-font-size,
  1056. .has-normal-font-size,
  1057. .has-medium-font-size {
  1058. font-size: 1.18;
  1059. }
  1060. .is-large-text,
  1061. .has-large-font-size {
  1062. font-size: 1.3924;
  1063. line-height: 1.15;
  1064. }
  1065. .is-larger-text,
  1066. .has-larger-font-size,
  1067. .has-huge-font-size {
  1068. font-size: 1.64303;
  1069. line-height: 1.15;
  1070. }
  1071. .has-drop-cap:not(:focus)::first-letter {
  1072. font-family: "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  1073. font-family: var(--font-headings, "Rubik", Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif);
  1074. font-size: calc(2 * 2.69955em);
  1075. font-weight: bold;
  1076. }
  1077. /**
  1078. * Spacing Overrides
  1079. */
  1080. [data-block] {
  1081. margin-top: 21.312px;
  1082. margin-bottom: 21.312px;
  1083. }
  1084. @media only screen and (min-width: 560px) {
  1085. [data-block] {
  1086. margin-top: 32px;
  1087. margin-bottom: 32px;
  1088. }
  1089. }
  1090. /*
  1091. * Margins
  1092. */
  1093. .margin-top-none {
  1094. margin-top: 0 !important;
  1095. }
  1096. .margin-top-half {
  1097. margin-top: 16px !important;
  1098. }
  1099. .margin-top-default {
  1100. margin-top: 32px !important;
  1101. }
  1102. .margin-right-none {
  1103. /*rtl:ignore*/
  1104. margin-right: 0 !important;
  1105. }
  1106. .margin-right-half {
  1107. /*rtl:ignore*/
  1108. margin-right: 16px !important;
  1109. }
  1110. .margin-right-default {
  1111. /*rtl:ignore*/
  1112. margin-right: 32px !important;
  1113. }
  1114. .margin-bottom-none {
  1115. margin-bottom: 0 !important;
  1116. }
  1117. .margin-bottom-half {
  1118. margin-bottom: 16px !important;
  1119. }
  1120. .margin-bottom-default {
  1121. margin-bottom: 32px !important;
  1122. }
  1123. .margin-left-none {
  1124. /*rtl:ignore*/
  1125. margin-left: 0 !important;
  1126. }
  1127. .margin-left-half {
  1128. /*rtl:ignore*/
  1129. margin-left: 16px !important;
  1130. }
  1131. .margin-left-default {
  1132. /*rtl:ignore*/
  1133. margin-left: 32px !important;
  1134. }
  1135. /*
  1136. * Padding
  1137. */
  1138. .padding-top-none {
  1139. padding-top: 0 !important;
  1140. }
  1141. .padding-top-half {
  1142. padding-top: 16px !important;
  1143. }
  1144. .padding-top-default {
  1145. padding-top: 32px !important;
  1146. }
  1147. .padding-right-none {
  1148. /*rtl:ignore*/
  1149. padding-right: 0 !important;
  1150. }
  1151. .padding-right-half {
  1152. /*rtl:ignore*/
  1153. padding-right: 16px !important;
  1154. }
  1155. .padding-right-default {
  1156. /*rtl:ignore*/
  1157. padding-right: 32px !important;
  1158. }
  1159. .padding-bottom-none {
  1160. padding-bottom: 0 !important;
  1161. }
  1162. .padding-bottom-half {
  1163. padding-bottom: 16px !important;
  1164. }
  1165. .padding-bottom-default {
  1166. padding-bottom: 32px !important;
  1167. }
  1168. .padding-left-none {
  1169. /*rtl:ignore*/
  1170. padding-left: 0 !important;
  1171. }
  1172. .padding-left-half {
  1173. /*rtl:ignore*/
  1174. padding-left: 16px !important;
  1175. }
  1176. .padding-left-default {
  1177. /*rtl:ignore*/
  1178. padding-left: 32px !important;
  1179. }
  1180. /**
  1181. * Vendors
  1182. * - Styles for 3rd party plugins and WP extensions
  1183. */
  1184. /**
  1185. * Vendors
  1186. * - 3rd-party compatibility styles
  1187. */
  1188. /**
  1189. * Set Jetpack form text color
  1190. */
  1191. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1192. color: black;
  1193. }
  1194. .wp-block-cover .wp-block-separator,
  1195. .wp-block-cover-image .wp-block-separator,
  1196. .has-background .wp-block-separator {
  1197. border-color: currentColor;
  1198. }
  1199. .wp-block-latest-posts > li > a {
  1200. color: #3C2323;
  1201. display: inline-block;
  1202. text-decoration: none;
  1203. }
  1204. .wp-block-latest-posts > li > a:hover, .wp-block-latest-posts > li > a:focus, .wp-block-latest-posts > li > a:active {
  1205. color: #20603C;
  1206. }
  1207. .has-background:not(.has-background-background-color) .wp-block-latest-posts > li > a:hover, .has-background:not(.has-background-background-color) .wp-block-latest-posts > li > a:focus, .has-background:not(.has-background-background-color) .wp-block-latest-posts > li > a:active {
  1208. color: currentColor;
  1209. text-decoration: underline;
  1210. }
  1211. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1212. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1213. margin-top: 16px;
  1214. }
  1215. .wp-block-a8c-blog-posts .entry-title a {
  1216. color: inherit;
  1217. }
  1218. .wp-block-a8c-blog-posts .entry-title a:hover, .wp-block-a8c-blog-posts .entry-title a:focus, .wp-block-a8c-blog-posts .entry-title a:active {
  1219. color: #20603C;
  1220. }
  1221. .wp-block-a8c-blog-posts + .button {
  1222. font-size: 1em;
  1223. }