style-editor.css 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414
  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: #252E36;
  163. background-color: #E8E4DD;
  164. font-family: Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
  165. font-family: var(--font-base, Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif);
  166. font-size: 20px;
  167. font-weight: normal;
  168. line-height: 1.78;
  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.78;
  178. }
  179. a {
  180. color: #C04239;
  181. }
  182. a:hover {
  183. color: #252E36;
  184. }
  185. .has-primary-background-color a:not(.has-text-color) {
  186. color: #E8E4DD;
  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.728rem;
  215. letter-spacing: normal;
  216. line-height: 1.125;
  217. }
  218. blockquote cite,
  219. blockquote footer {
  220. font-size: 0.83333rem;
  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.44rem;
  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.69444rem;
  245. letter-spacing: normal;
  246. }
  247. figcaption {
  248. color: #666666;
  249. font-size: 0.69444rem;
  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: 1em;
  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: #C04239;
  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: #252E36;
  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: #252E36;
  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: #666666;
  373. font-size: 0.83333em;
  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: #252E36;
  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 {
  429. line-height: 1;
  430. color: #E8E4DD;
  431. cursor: pointer;
  432. font-weight: 900;
  433. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  434. font-family: var(--font-base, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  435. font-size: 1rem;
  436. background-color: #252E36;
  437. border-radius: 4px;
  438. border-width: 0;
  439. text-decoration: none;
  440. padding: 16px 16px;
  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, .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 {
  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 {
  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 {
  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, .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, .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 {
  462. color: #E8E4DD;
  463. background-color: #C04239;
  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.2em;
  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: #E8E4DD;
  491. font-weight: 900;
  492. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  493. font-family: var(--font-base, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  494. font-size: 1em;
  495. line-height: 1;
  496. background-color: #252E36;
  497. border-radius: 4px;
  498. padding: 16px 16px;
  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: #E8E4DD;
  504. background-color: #C04239;
  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: #252E36;
  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: #252E36;
  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: #E8E4DD;
  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: #E8E4DD;
  532. font-weight: 900;
  533. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  534. font-family: var(--font-base, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  535. font-size: 1em;
  536. line-height: 1;
  537. background-color: #252E36;
  538. border-radius: 4px;
  539. padding: 16px 16px;
  540. }
  541. .button:hover, .button:focus, .button.has-focus {
  542. color: #E8E4DD;
  543. background-color: #C04239;
  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: #252E36;
  553. color: #E8E4DD;
  554. min-height: 576px;
  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: #252E36;
  562. color: #E8E4DD;
  563. }
  564. .wp-block-cover .wp-block-cover-image-text,
  565. .wp-block-cover .wp-block-cover-text,
  566. .wp-block-cover .block-editor-block-list__block,
  567. .wp-block-cover-image .wp-block-cover-image-text,
  568. .wp-block-cover-image .wp-block-cover-text,
  569. .wp-block-cover-image .block-editor-block-list__block {
  570. color: currentColor;
  571. }
  572. .wp-block-cover h2,
  573. .wp-block-cover-image h2 {
  574. font-size: 2.48832;
  575. letter-spacing: normal;
  576. line-height: 1.125;
  577. padding: 0;
  578. max-width: inherit;
  579. text-align: inherit;
  580. }
  581. .wp-block-cover h2.has-text-align-left,
  582. .wp-block-cover-image h2.has-text-align-left {
  583. text-align: left;
  584. }
  585. .wp-block-cover h2.has-text-align-center,
  586. .wp-block-cover-image h2.has-text-align-center {
  587. text-align: center;
  588. }
  589. .wp-block-cover h2.has-text-align-right,
  590. .wp-block-cover-image h2.has-text-align-right {
  591. text-align: right;
  592. }
  593. .wp-block-heading h1, h1, .h1,
  594. .wp-block-heading h2, h2, .h2,
  595. .wp-block-heading h3, h3, .h3,
  596. .wp-block-heading h4, h4, .h4,
  597. .wp-block-heading h5, h5, .h5,
  598. .wp-block-heading h6, h6, .h6 {
  599. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  600. font-family: var(--font-headings, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  601. font-weight: 900;
  602. clear: both;
  603. }
  604. .wp-block-heading h1, h1, .h1 {
  605. font-size: 2.98598em;
  606. letter-spacing: normal;
  607. line-height: 1.125;
  608. }
  609. .wp-block-heading h2, h2, .h2 {
  610. font-size: 2.48832em;
  611. letter-spacing: normal;
  612. line-height: 1.125;
  613. }
  614. .wp-block-heading h3, h3, .h3 {
  615. font-size: 2.0736em;
  616. letter-spacing: normal;
  617. line-height: 1.125;
  618. }
  619. .wp-block-heading h4, h4, .h4 {
  620. font-size: 1.728em;
  621. letter-spacing: normal;
  622. line-height: 1.125;
  623. }
  624. .wp-block-heading h5, h5, .h5 {
  625. font-size: 1.44em;
  626. letter-spacing: normal;
  627. line-height: 1.125;
  628. }
  629. .wp-block-heading h6, h6, .h6 {
  630. font-size: 1.2em;
  631. letter-spacing: normal;
  632. line-height: 1.125;
  633. }
  634. /* Center image block by default in the editor */
  635. .wp-block-image > div {
  636. text-align: center;
  637. }
  638. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  639. margin: 0 auto;
  640. }
  641. .wp-block-gallery figcaption {
  642. margin-bottom: 0;
  643. }
  644. .wp-block-group.has-background {
  645. padding: 21.312px;
  646. }
  647. @media only screen and (min-width: 560px) {
  648. .wp-block-group.has-background {
  649. padding: 32px;
  650. }
  651. }
  652. .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] {
  653. margin: 0;
  654. width: 100%;
  655. }
  656. .wp-block-latest-comments {
  657. margin-left: 0;
  658. }
  659. .wp-block-latest-posts {
  660. padding-left: 0;
  661. }
  662. .wp-block-latest-posts > li > a {
  663. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  664. font-family: var(--font-headings, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  665. font-size: 1.728rem;
  666. font-weight: 900;
  667. line-height: 1.125;
  668. }
  669. .wp-block-latest-posts:not(.is-grid) > li {
  670. /* Vertical margins logic */
  671. margin-top: 32px;
  672. margin-bottom: 32px;
  673. }
  674. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  675. margin-top: 0;
  676. }
  677. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  678. margin-bottom: 0;
  679. }
  680. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  681. color: #666666;
  682. font-size: 0.83333rem;
  683. line-height: 1.78;
  684. }
  685. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  686. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  687. color: currentColor;
  688. }
  689. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  690. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  691. font-size: 0.83333rem;
  692. line-height: 1.78;
  693. margin: 0;
  694. }
  695. ul,
  696. ol {
  697. margin: 32px 0;
  698. padding-left: 32px;
  699. }
  700. ul.aligncenter,
  701. ol.aligncenter {
  702. list-style-position: inside;
  703. padding: 0;
  704. }
  705. ul.alignright,
  706. ol.alignright {
  707. list-style-position: inside;
  708. text-align: right;
  709. padding: 0;
  710. }
  711. li > ul,
  712. li > ol {
  713. margin: 0;
  714. }
  715. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  716. color: currentColor;
  717. }
  718. .a8c-posts-list {
  719. padding-left: 0;
  720. }
  721. p.has-background {
  722. padding: 16px 16px;
  723. }
  724. p.has-background:not(.has-background-background-color) a {
  725. color: currentColor;
  726. }
  727. .wp-block-pullquote {
  728. border-top-color: #B9B6B2;
  729. border-top-width: 5px;
  730. border-bottom-color: #B9B6B2;
  731. border-bottom-width: 5px;
  732. color: #252E36;
  733. }
  734. .wp-block-pullquote blockquote p {
  735. font-family: Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
  736. font-family: var(--font-base, Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif);
  737. font-size: 1.728rem;
  738. letter-spacing: normal;
  739. line-height: 1.125;
  740. }
  741. .wp-block-pullquote.is-style-solid-color blockquote p {
  742. font-size: 1.728rem;
  743. }
  744. .wp-block-pullquote a {
  745. color: currentColor;
  746. }
  747. .wp-block-pullquote .wp-block-pullquote__citation,
  748. .wp-block-pullquote cite,
  749. .wp-block-pullquote footer {
  750. color: #666666;
  751. font-size: 0.83333rem;
  752. letter-spacing: normal;
  753. }
  754. .wp-block-pullquote blockquote {
  755. padding-left: 0;
  756. }
  757. .wp-block-pullquote.is-style-solid-color {
  758. color: #E8E4DD;
  759. }
  760. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  761. .wp-block-pullquote.is-style-solid-color cite,
  762. .wp-block-pullquote.is-style-solid-color footer {
  763. color: currentColor;
  764. }
  765. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  766. background-color: #C04239;
  767. }
  768. .wp-block-quote {
  769. border-left-color: #C04239;
  770. padding-left: 16px;
  771. }
  772. .wp-block-quote p {
  773. font-family: Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
  774. font-family: var(--font-base, Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif);
  775. font-size: 1.728em;
  776. letter-spacing: normal;
  777. }
  778. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  779. border: none;
  780. padding: 0;
  781. }
  782. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  783. font-family: Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
  784. font-family: var(--font-base, Lora, Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif);
  785. font-size: 2.0736em;
  786. letter-spacing: normal;
  787. line-height: 1.125;
  788. }
  789. .has-background:not(.has-background-background-color) .wp-block-quote,
  790. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  791. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  792. .wp-block-cover[style*="background-image"] .wp-block-quote {
  793. border-color: currentColor;
  794. }
  795. .wp-block-quote .wp-block-quote__citation {
  796. color: #666666;
  797. font-size: 0.83333em;
  798. letter-spacing: normal;
  799. }
  800. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  801. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  802. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  803. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  804. color: currentColor;
  805. }
  806. .wp-block-search {
  807. flex-wrap: wrap;
  808. }
  809. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  810. background: white;
  811. color: black;
  812. border: 1px solid #B9B6B2;
  813. border-radius: 3px;
  814. }
  815. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  816. padding: 16px;
  817. }
  818. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  819. padding: 16px 16px;
  820. }
  821. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  822. padding: 0;
  823. }
  824. .wp-block-search .wp-block-search__label {
  825. font-weight: normal;
  826. }
  827. .wp-block-search .wp-block-search__input {
  828. color: black;
  829. border: 1px solid #B9B6B2;
  830. border-radius: 3px;
  831. padding: 16px;
  832. font-size: 1rem;
  833. line-height: 1rem;
  834. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  835. font-family: var(--font-base, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  836. max-width: inherit;
  837. margin-right: calc( .66 * 16px);
  838. background: white;
  839. }
  840. .wp-block-search .wp-block-search__input:focus {
  841. color: black;
  842. border-color: #B9B6B2;
  843. }
  844. .wp-block-search .wp-block-search__button {
  845. border: none;
  846. box-shadow: none;
  847. }
  848. .wp-block-search .wp-block-search__button.has-icon {
  849. transform: scaleX(-1);
  850. padding: 0;
  851. min-width: calc(2* 16px + 1rem + 4px);
  852. min-height: calc(2* 16px + 1rem + 4px);
  853. }
  854. .wp-block-search .wp-block-search__button.has-icon svg {
  855. fill: currentColor;
  856. width: 29px;
  857. height: 29px;
  858. }
  859. .wp-block-separator,
  860. hr {
  861. border-bottom: 2px solid #B9B6B2;
  862. clear: both;
  863. }
  864. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  865. hr[style*="text-align:right"],
  866. hr[style*="text-align: right"] {
  867. border-right-color: #B9B6B2;
  868. }
  869. .wp-block-separator.is-style-wide,
  870. hr.is-style-wide {
  871. border-bottom-width: 2px;
  872. }
  873. .wp-block-separator.is-style-dots,
  874. hr.is-style-dots {
  875. border-bottom: none;
  876. }
  877. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  878. hr.is-style-dots.has-background,
  879. hr.is-style-dots.has-text-color {
  880. background-color: transparent !important;
  881. }
  882. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  883. hr.is-style-dots.has-background:before,
  884. hr.is-style-dots.has-text-color:before {
  885. color: currentColor !important;
  886. }
  887. .wp-block-separator.is-style-dots:before,
  888. hr.is-style-dots:before {
  889. color: #B9B6B2;
  890. }
  891. .has-background:not(.has-background-background-color) .wp-block-separator,
  892. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  893. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  894. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  895. hr,
  896. [class*="background-color"]:not(.has-background-background-color)
  897. hr,
  898. [style*="background-color"]:not(.has-background-background-color)
  899. hr,
  900. .wp-block-cover[style*="background-image"]
  901. hr {
  902. border-color: currentColor;
  903. }
  904. table th,
  905. .wp-block-table th {
  906. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  907. font-family: var(--font-headings, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  908. }
  909. table td,
  910. table th,
  911. .wp-block-table td,
  912. .wp-block-table th {
  913. padding: calc( 0.5 * 16px);
  914. }
  915. table.is-style-stripes tbody tr:nth-child(odd),
  916. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  917. background-color: #CFCDC7;
  918. color: #252E36;
  919. }
  920. pre.wp-block-verse {
  921. font-family: monospace, monospace;
  922. color: #252E36;
  923. }
  924. /**
  925. * Editor Post Title
  926. * - Needs a special styles
  927. */
  928. .editor-post-title__block .editor-post-title__input {
  929. color: #252E36;
  930. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  931. font-family: var(--font-headings, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  932. font-weight: 900;
  933. font-size: 2.48832;
  934. letter-spacing: normal;
  935. line-height: 1.125;
  936. }
  937. .wp-block .has-primary-color,
  938. .has-primary-color {
  939. color: #C04239;
  940. }
  941. .wp-block .has-secondary-color,
  942. .has-secondary-color {
  943. color: #FFFFFF;
  944. }
  945. .wp-block .has-foreground-color,
  946. .has-foreground-color {
  947. color: #252E36;
  948. }
  949. .wp-block .has-foreground-light-color,
  950. .has-foreground-light-color {
  951. color: #666666;
  952. }
  953. .wp-block .has-foreground-dark-color,
  954. .has-foreground-dark-color {
  955. color: #474747;
  956. }
  957. .wp-block .has-background-light-color,
  958. .has-background-light-color {
  959. color: #CFCDC7;
  960. }
  961. .wp-block .has-background-dark-color,
  962. .has-background-dark-color {
  963. color: #B9B6B2;
  964. }
  965. .wp-block .has-background-color,
  966. .has-background-color {
  967. color: #E8E4DD;
  968. }
  969. .has-background p:not(.has-text-color),
  970. .has-background h1:not(.has-text-color),
  971. .has-background h2:not(.has-text-color),
  972. .has-background h3:not(.has-text-color),
  973. .has-background h4:not(.has-text-color),
  974. .has-background h5:not(.has-text-color),
  975. .has-background h6:not(.has-text-color) {
  976. color: currentColor;
  977. }
  978. .has-primary-background-color,
  979. .has-primary-background-color.has-background-dim {
  980. background-color: #C04239;
  981. color: #E8E4DD;
  982. }
  983. .has-primary-background-color:not(.has-text-color),
  984. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  985. color: #E8E4DD;
  986. }
  987. .has-secondary-background-color,
  988. .has-secondary-background-color.has-background-dim {
  989. background-color: #FFFFFF;
  990. }
  991. .has-secondary-background-color:not(.has-text-color),
  992. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  993. color: #E8E4DD;
  994. }
  995. .has-background-dim,
  996. .has-foreground-background-color,
  997. .has-foreground-background-color.has-background-dim {
  998. background-color: #252E36;
  999. }
  1000. .has-background-dim,
  1001. .has-foreground-background-color,
  1002. .has-foreground-background-color.has-background-dim {
  1003. color: #E8E4DD;
  1004. }
  1005. .has-foreground-light-background-color,
  1006. .has-foreground-light-background-color.has-background-dim {
  1007. background-color: #666666;
  1008. }
  1009. .has-foreground-light-background-color:not(.has-text-color),
  1010. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  1011. color: #E8E4DD;
  1012. }
  1013. .has-foreground-dark-background-color,
  1014. .has-foreground-dark-background-color.has-background-dim {
  1015. background-color: #474747;
  1016. }
  1017. .has-foreground-dark-background-color:not(.has-text-color),
  1018. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  1019. color: #E8E4DD;
  1020. }
  1021. .has-background-light-background-color,
  1022. .has-background-light-background-color.has-background-dim {
  1023. background-color: #CFCDC7;
  1024. }
  1025. .has-background-light-background-color:not(.has-text-color),
  1026. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  1027. color: #252E36;
  1028. }
  1029. .has-background-dark-background-color,
  1030. .has-background-dark-background-color.has-background-dim {
  1031. background-color: #B9B6B2;
  1032. }
  1033. .has-background-dark-background-color:not(.has-text-color),
  1034. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  1035. color: #252E36;
  1036. }
  1037. .has-background-background-color,
  1038. .has-background-background-color.has-background-dim {
  1039. background-color: #E8E4DD;
  1040. color: #252E36;
  1041. }
  1042. .has-background-background-color:not(.has-text-color),
  1043. .has-background-background-color.has-background-dim:not(.has-text-color) {
  1044. color: #252E36;
  1045. }
  1046. .is-small-text,
  1047. .has-small-font-size {
  1048. font-size: 0.83333;
  1049. }
  1050. .is-regular-text,
  1051. .has-regular-font-size,
  1052. .has-normal-font-size,
  1053. .has-medium-font-size {
  1054. font-size: 1.2;
  1055. }
  1056. .is-large-text,
  1057. .has-large-font-size {
  1058. font-size: 1.44;
  1059. line-height: 1.125;
  1060. }
  1061. .is-larger-text,
  1062. .has-larger-font-size,
  1063. .has-huge-font-size {
  1064. font-size: 1.728;
  1065. line-height: 1.125;
  1066. }
  1067. .has-drop-cap:not(:focus)::first-letter {
  1068. font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1069. font-family: var(--font-headings, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1070. font-size: calc(2 * 2.98598em);
  1071. font-weight: 900;
  1072. }
  1073. /**
  1074. * Spacing Overrides
  1075. */
  1076. [data-block] {
  1077. margin-top: 21.312px;
  1078. margin-bottom: 21.312px;
  1079. }
  1080. @media only screen and (min-width: 560px) {
  1081. [data-block] {
  1082. margin-top: 32px;
  1083. margin-bottom: 32px;
  1084. }
  1085. }
  1086. /*
  1087. * Margins
  1088. */
  1089. .margin-top-none {
  1090. margin-top: 0 !important;
  1091. }
  1092. .margin-top-half {
  1093. margin-top: 16px !important;
  1094. }
  1095. .margin-top-default {
  1096. margin-top: 32px !important;
  1097. }
  1098. .margin-right-none {
  1099. /*rtl:ignore*/
  1100. margin-right: 0 !important;
  1101. }
  1102. .margin-right-half {
  1103. /*rtl:ignore*/
  1104. margin-right: 16px !important;
  1105. }
  1106. .margin-right-default {
  1107. /*rtl:ignore*/
  1108. margin-right: 32px !important;
  1109. }
  1110. .margin-bottom-none {
  1111. margin-bottom: 0 !important;
  1112. }
  1113. .margin-bottom-half {
  1114. margin-bottom: 16px !important;
  1115. }
  1116. .margin-bottom-default {
  1117. margin-bottom: 32px !important;
  1118. }
  1119. .margin-left-none {
  1120. /*rtl:ignore*/
  1121. margin-left: 0 !important;
  1122. }
  1123. .margin-left-half {
  1124. /*rtl:ignore*/
  1125. margin-left: 16px !important;
  1126. }
  1127. .margin-left-default {
  1128. /*rtl:ignore*/
  1129. margin-left: 32px !important;
  1130. }
  1131. /*
  1132. * Padding
  1133. */
  1134. .padding-top-none {
  1135. padding-top: 0 !important;
  1136. }
  1137. .padding-top-half {
  1138. padding-top: 16px !important;
  1139. }
  1140. .padding-top-default {
  1141. padding-top: 32px !important;
  1142. }
  1143. .padding-right-none {
  1144. /*rtl:ignore*/
  1145. padding-right: 0 !important;
  1146. }
  1147. .padding-right-half {
  1148. /*rtl:ignore*/
  1149. padding-right: 16px !important;
  1150. }
  1151. .padding-right-default {
  1152. /*rtl:ignore*/
  1153. padding-right: 32px !important;
  1154. }
  1155. .padding-bottom-none {
  1156. padding-bottom: 0 !important;
  1157. }
  1158. .padding-bottom-half {
  1159. padding-bottom: 16px !important;
  1160. }
  1161. .padding-bottom-default {
  1162. padding-bottom: 32px !important;
  1163. }
  1164. .padding-left-none {
  1165. /*rtl:ignore*/
  1166. padding-left: 0 !important;
  1167. }
  1168. .padding-left-half {
  1169. /*rtl:ignore*/
  1170. padding-left: 16px !important;
  1171. }
  1172. .padding-left-default {
  1173. /*rtl:ignore*/
  1174. padding-left: 32px !important;
  1175. }
  1176. /**
  1177. * Vendors
  1178. * - Styles for 3rd party plugins and WP extensions
  1179. */
  1180. /**
  1181. * Vendors
  1182. * - 3rd-party compatibility styles
  1183. */
  1184. /**
  1185. * Set Jetpack form text color
  1186. */
  1187. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1188. color: black;
  1189. }
  1190. /**
  1191. * Extras
  1192. */
  1193. .editor-post-title__input {
  1194. text-align: center;
  1195. }
  1196. .wp-block-a8c-blog-posts .entry-title a {
  1197. color: inherit;
  1198. }
  1199. .wp-block-a8c-blog-posts .entry-title a:hover {
  1200. color: #C04239;
  1201. }
  1202. .wp-block-a8c-blog-posts + .button {
  1203. font-size: 1em;
  1204. }