style-editor.css 37 KB

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