style-editor.css 37 KB

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