style-editor.css 29 KB

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