style-editor.css 37 KB

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