style-editor.css 37 KB

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