style-editor.css 37 KB

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