style-editor.css 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325
  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: "\02192";
  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. padding: calc( 3 * 16px) 0;
  730. margin-left: 0;
  731. margin-right: 0;
  732. text-align: center;
  733. border-top-color: #e6e6e6;
  734. border-top-width: 4px;
  735. border-bottom-color: #e6e6e6;
  736. border-bottom-width: 4px;
  737. color: #010101;
  738. /**
  739. * Block Options
  740. */
  741. }
  742. .wp-block-pullquote blockquote {
  743. padding-left: 0;
  744. }
  745. .wp-block-pullquote p {
  746. font-family: Poppins, sans-serif;
  747. font-family: var(--font-headings, Poppins, sans-serif);
  748. font-size: 1.2em;
  749. letter-spacing: normal;
  750. line-height: 1.125;
  751. }
  752. .wp-block-pullquote a {
  753. color: currentColor;
  754. }
  755. .wp-block-pullquote .wp-block-pullquote__citation,
  756. .wp-block-pullquote cite,
  757. .wp-block-pullquote footer {
  758. color: #666666;
  759. font-size: 0.83333em;
  760. letter-spacing: normal;
  761. }
  762. .wp-block-pullquote:not(.is-style-solid-color) {
  763. background: none;
  764. }
  765. .wp-block-pullquote.is-style-solid-color {
  766. background-color: #000000;
  767. color: #ffffff;
  768. }
  769. .wp-block-pullquote.is-style-solid-color.alignleft blockquote,
  770. .wp-block-pullquote.is-style-solid-color.alignright blockquote {
  771. padding-left: 16px;
  772. padding-right: 16px;
  773. max-width: inherit;
  774. }
  775. .wp-block-pullquote.is-style-solid-color blockquote {
  776. padding-left: 0;
  777. }
  778. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  779. .wp-block-pullquote.is-style-solid-color cite,
  780. .wp-block-pullquote.is-style-solid-color footer {
  781. color: currentColor;
  782. }
  783. .wp-block-pullquote.alignwide > p,
  784. .wp-block-pullquote.alignfull > p,
  785. .wp-block-pullquote.alignwide blockquote,
  786. .wp-block-pullquote.alignfull blockquote {
  787. margin-left: auto;
  788. margin-right: auto;
  789. }
  790. .wp-block-quote {
  791. border-left-color: #000000;
  792. margin: 32px 0;
  793. padding-left: 16px;
  794. }
  795. .wp-block-quote p {
  796. font-family: Poppins, sans-serif;
  797. font-family: var(--font-headings, Poppins, sans-serif);
  798. font-size: 1.2em;
  799. letter-spacing: normal;
  800. }
  801. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  802. border: none;
  803. padding: 0;
  804. }
  805. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  806. font-family: Poppins, sans-serif;
  807. font-family: var(--font-headings, Poppins, sans-serif);
  808. font-size: 1.44em;
  809. letter-spacing: -0.015em;
  810. line-height: 1.125;
  811. }
  812. .has-background:not(.has-background-background-color) .wp-block-quote,
  813. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  814. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  815. .wp-block-cover[style*="background-image"] .wp-block-quote {
  816. border-color: currentColor;
  817. }
  818. .wp-block-quote .wp-block-quote__citation {
  819. color: #666666;
  820. font-size: 0.83333em;
  821. letter-spacing: normal;
  822. }
  823. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  824. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  825. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  826. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  827. color: currentColor;
  828. }
  829. .wp-block-separator,
  830. hr {
  831. border-bottom: 2px solid #e6e6e6;
  832. clear: both;
  833. }
  834. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  835. hr[style*="text-align:right"],
  836. hr[style*="text-align: right"] {
  837. border-right-color: #e6e6e6;
  838. }
  839. .wp-block-separator.is-style-wide,
  840. hr.is-style-wide {
  841. border-bottom-width: 2px;
  842. }
  843. .wp-block-separator.is-style-dots,
  844. hr.is-style-dots {
  845. border-bottom: none;
  846. }
  847. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  848. hr.is-style-dots.has-background,
  849. hr.is-style-dots.has-text-color {
  850. background-color: transparent !important;
  851. }
  852. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  853. hr.is-style-dots.has-background:before,
  854. hr.is-style-dots.has-text-color:before {
  855. color: currentColor !important;
  856. }
  857. .wp-block-separator.is-style-dots:before,
  858. hr.is-style-dots:before {
  859. color: #e6e6e6;
  860. }
  861. .has-background:not(.has-background-background-color) .wp-block-separator,
  862. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  863. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  864. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  865. hr,
  866. [class*="background-color"]:not(.has-background-background-color)
  867. hr,
  868. [style*="background-color"]:not(.has-background-background-color)
  869. hr,
  870. .wp-block-cover[style*="background-image"]
  871. hr {
  872. border-color: currentColor;
  873. }
  874. table th,
  875. .wp-block-table th {
  876. font-family: Poppins, sans-serif;
  877. font-family: var(--font-headings, Poppins, sans-serif);
  878. }
  879. table td,
  880. table th,
  881. .wp-block-table td,
  882. .wp-block-table th {
  883. padding: calc( 0.5 * 16px);
  884. }
  885. table.is-style-stripes tbody tr:nth-child(odd),
  886. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  887. background-color: #f2f2f2;
  888. color: #010101;
  889. }
  890. /**
  891. * Editor Post Title
  892. * - Needs a special styles
  893. */
  894. .editor-post-title__block .editor-post-title__input {
  895. color: #010101;
  896. font-family: Poppins, sans-serif;
  897. font-family: var(--font-headings, Poppins, sans-serif);
  898. font-weight: 600;
  899. font-size: 1.728em;
  900. letter-spacing: -0.015em;
  901. line-height: 1.125;
  902. }
  903. .wp-block .has-primary-color,
  904. .has-primary-color {
  905. color: #000000;
  906. }
  907. .wp-block .has-secondary-color,
  908. .has-secondary-color {
  909. color: #1a1a1a;
  910. }
  911. .wp-block .has-foreground-color,
  912. .has-foreground-color {
  913. color: #010101;
  914. }
  915. .wp-block .has-foreground-light-color,
  916. .has-foreground-light-color {
  917. color: #666666;
  918. }
  919. .wp-block .has-foreground-dark-color,
  920. .has-foreground-dark-color {
  921. color: #333333;
  922. }
  923. .wp-block .has-background-light-color,
  924. .has-background-light-color {
  925. color: #f2f2f2;
  926. }
  927. .wp-block .has-background-dark-color,
  928. .has-background-dark-color {
  929. color: #d9d9d9;
  930. }
  931. .wp-block .has-background-color,
  932. .has-background-color {
  933. color: #ffffff;
  934. }
  935. .has-background:not(.has-background-background-color) a:not(.wp-block-button__link),
  936. .has-background p:not(.has-text-color),
  937. .has-background h1:not(.has-text-color),
  938. .has-background h2:not(.has-text-color),
  939. .has-background h3:not(.has-text-color),
  940. .has-background h4:not(.has-text-color),
  941. .has-background h5:not(.has-text-color),
  942. .has-background h6:not(.has-text-color) {
  943. color: currentColor;
  944. }
  945. .wp-block .has-primary-background-color,
  946. .has-primary-background-color {
  947. background-color: #000000;
  948. color: #ffffff;
  949. }
  950. .wp-block .has-secondary-background-color,
  951. .has-secondary-background-color {
  952. background-color: #1a1a1a;
  953. color: #ffffff;
  954. }
  955. .wp-block .has-foreground-background-color,
  956. .has-foreground-background-color {
  957. background-color: #010101;
  958. color: #ffffff;
  959. }
  960. .wp-block .has-foreground-light-background-color,
  961. .has-foreground-light-background-color {
  962. background-color: #666666;
  963. color: #ffffff;
  964. }
  965. .wp-block .has-foreground-dark-background-color,
  966. .has-foreground-dark-background-color {
  967. background-color: #333333;
  968. color: #ffffff;
  969. }
  970. .wp-block .has-background-light-background-color,
  971. .has-background-light-background-color {
  972. background-color: #f2f2f2;
  973. color: #010101;
  974. }
  975. .wp-block .has-background-dark-background-color,
  976. .has-background-dark-background-color {
  977. background-color: #d9d9d9;
  978. color: #010101;
  979. }
  980. .wp-block .has-background-background-color,
  981. .has-background-background-color {
  982. background-color: #ffffff;
  983. color: #010101;
  984. }
  985. .is-small-text,
  986. .has-small-font-size {
  987. font-size: 0.83333em;
  988. }
  989. .is-regular-text,
  990. .has-regular-font-size,
  991. .has-normal-font-size,
  992. .has-medium-font-size {
  993. font-size: 1.2em;
  994. }
  995. .is-large-text,
  996. .has-large-font-size {
  997. font-size: 1.44em;
  998. line-height: 1.125;
  999. }
  1000. .is-larger-text,
  1001. .has-larger-font-size,
  1002. .has-huge-font-size {
  1003. font-size: 1.728em;
  1004. line-height: 1.125;
  1005. }
  1006. .has-drop-cap:not(:focus)::first-letter {
  1007. font-family: Poppins, sans-serif;
  1008. font-family: var(--font-headings, Poppins, sans-serif);
  1009. font-size: calc(2 * 2.0736em);
  1010. font-weight: 600;
  1011. }
  1012. /**
  1013. * Spacing Overrides
  1014. */
  1015. [data-block] {
  1016. margin-top: 21.312px;
  1017. margin-bottom: 21.312px;
  1018. }
  1019. @media only screen and (min-width: 560px) {
  1020. [data-block] {
  1021. margin-top: 32px;
  1022. margin-bottom: 32px;
  1023. }
  1024. }
  1025. /*
  1026. * Margins
  1027. */
  1028. .margin-top-none {
  1029. margin-top: 0 !important;
  1030. }
  1031. .margin-top-half {
  1032. margin-top: 16px !important;
  1033. }
  1034. .margin-top-default {
  1035. margin-top: 32px !important;
  1036. }
  1037. .margin-right-none {
  1038. /*rtl:ignore*/
  1039. margin-right: 0 !important;
  1040. }
  1041. .margin-right-half {
  1042. /*rtl:ignore*/
  1043. margin-right: 16px !important;
  1044. }
  1045. .margin-right-default {
  1046. /*rtl:ignore*/
  1047. margin-right: 32px !important;
  1048. }
  1049. .margin-bottom-none {
  1050. margin-bottom: 0 !important;
  1051. }
  1052. .margin-bottom-half {
  1053. margin-bottom: 16px !important;
  1054. }
  1055. .margin-bottom-default {
  1056. margin-bottom: 32px !important;
  1057. }
  1058. .margin-left-none {
  1059. /*rtl:ignore*/
  1060. margin-left: 0 !important;
  1061. }
  1062. .margin-left-half {
  1063. /*rtl:ignore*/
  1064. margin-left: 16px !important;
  1065. }
  1066. .margin-left-default {
  1067. /*rtl:ignore*/
  1068. margin-left: 32px !important;
  1069. }
  1070. /*
  1071. * Padding
  1072. */
  1073. .padding-top-none {
  1074. padding-top: 0 !important;
  1075. }
  1076. .padding-top-half {
  1077. padding-top: 16px !important;
  1078. }
  1079. .padding-top-default {
  1080. padding-top: 32px !important;
  1081. }
  1082. .padding-right-none {
  1083. /*rtl:ignore*/
  1084. padding-right: 0 !important;
  1085. }
  1086. .padding-right-half {
  1087. /*rtl:ignore*/
  1088. padding-right: 16px !important;
  1089. }
  1090. .padding-right-default {
  1091. /*rtl:ignore*/
  1092. padding-right: 32px !important;
  1093. }
  1094. .padding-bottom-none {
  1095. padding-bottom: 0 !important;
  1096. }
  1097. .padding-bottom-half {
  1098. padding-bottom: 16px !important;
  1099. }
  1100. .padding-bottom-default {
  1101. padding-bottom: 32px !important;
  1102. }
  1103. .padding-left-none {
  1104. /*rtl:ignore*/
  1105. padding-left: 0 !important;
  1106. }
  1107. .padding-left-half {
  1108. /*rtl:ignore*/
  1109. padding-left: 16px !important;
  1110. }
  1111. .padding-left-default {
  1112. /*rtl:ignore*/
  1113. padding-left: 32px !important;
  1114. }
  1115. /**
  1116. * Extras
  1117. */
  1118. .wp-block-a8c-blog-posts .cat-links a,
  1119. .wp-block-a8c-blog-posts .more-link,
  1120. .wp-block-a8c-blog-posts .entry-meta a {
  1121. text-decoration: none;
  1122. }
  1123. .wp-block-a8c-blog-posts .cat-links a:hover,
  1124. .wp-block-a8c-blog-posts .more-link:hover,
  1125. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1126. text-decoration: underline;
  1127. }
  1128. .wp-block-a8c-blog-posts .entry-title a:hover,
  1129. .wp-block-a8c-blog-posts .more-link:hover {
  1130. color: inherit;
  1131. }
  1132. .wp-block-a8c-blog-posts + .button {
  1133. font-size: 0.83333em;
  1134. }