style-editor.css 37 KB

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