style-editor.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524
  1. @charset "UTF-8";
  2. /**
  3. * These styles should be loaded by the Block Editor only
  4. */
  5. /**
  6. * Abstracts
  7. * - Mixins, variables and functions
  8. */
  9. /**
  10. * Abstracts
  11. * - Mixins, variables and functions
  12. */
  13. /* Sass Functions go here */
  14. /**
  15. * Map deep get
  16. * @author Hugo Giraudel
  17. * @access public
  18. * @param {Map} $map - Map
  19. * @param {Arglist} $keys - Key chain
  20. * @return {*} - Desired value
  21. *
  22. * Example:
  23. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  24. */
  25. /**
  26. * Deep set function to set a value in nested maps
  27. * @author Hugo Giraudel
  28. * @access public
  29. * @param {Map} $map - Map
  30. * @param {List} $keys - Key chaine
  31. * @param {*} $value - Value to assign
  32. * @return {Map}
  33. *
  34. * Example:
  35. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  36. */
  37. /**
  38. * jQuery-style extend function
  39. * - Child themes can use this function to `reset` the values in
  40. * config maps without editing the `master` Sass files.
  41. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  42. * - About `map-merge()`:
  43. * - - only takes 2 arguments
  44. * - - is not recursive
  45. * @param {Map} $map - first map
  46. * @param {ArgList} $maps - other maps
  47. * @param {Bool} $deep - recursive mode
  48. * @return {Map}
  49. *
  50. * Examples:
  51. $grid-configuration-default: (
  52. 'columns': 12,
  53. 'layouts': (
  54. 'small': 800px,
  55. 'medium': 1000px,
  56. 'large': 1200px,
  57. ),
  58. );
  59. $grid-configuration-custom: (
  60. 'layouts': (
  61. 'large': 1300px,
  62. 'huge': 1500px
  63. ),
  64. );
  65. $grid-configuration-user: (
  66. 'direction': 'ltr',
  67. 'columns': 16,
  68. 'layouts': (
  69. 'large': 1300px,
  70. 'huge': 1500px
  71. ),
  72. );
  73. // $deep: false
  74. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  75. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  76. // $deep: true
  77. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  78. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  79. */
  80. /**
  81. * Button
  82. */
  83. /**
  84. * Cover
  85. */
  86. /**
  87. * Heading
  88. */
  89. /**
  90. * List
  91. */
  92. /**
  93. * Pullquote
  94. */
  95. /**
  96. * Quote
  97. */
  98. /**
  99. * Separator
  100. */
  101. /**
  102. * Responsive breakpoints
  103. * - breakpoints values are defined in _config-global.scss
  104. */
  105. /**
  106. * Align wide widths
  107. * - Sets .alignwide widths
  108. */
  109. /**
  110. * Crop Text Boundry
  111. * - Sets a fixed-width on content within alignwide and alignfull blocks
  112. */
  113. /**
  114. * Add font-family using CSS variables.
  115. * It also adds the proper fallback for browsers without support.
  116. */
  117. /**
  118. * Child Theme Name
  119. */
  120. /**
  121. * Redefine Sass map values for child theme output.
  122. * - See: style-child-theme.scss
  123. */
  124. /**
  125. * Global
  126. */
  127. /**
  128. * Elements
  129. */
  130. /**
  131. * Button
  132. */
  133. /**
  134. * Cover
  135. */
  136. /**
  137. * Heading
  138. */
  139. /**
  140. * List
  141. */
  142. /**
  143. * Pullquote
  144. */
  145. /**
  146. * Quote
  147. */
  148. /**
  149. * Separator
  150. */
  151. /**
  152. * Header
  153. */
  154. /**
  155. * Footer
  156. */
  157. /**
  158. * Base
  159. * - Reset the browser
  160. */
  161. body {
  162. color: #74767e;
  163. background-color: white;
  164. font-family: "Lato", sans-serif;
  165. font-family: var(--font-base, "Lato", 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: #2c313f;
  181. }
  182. a:hover {
  183. color: #3e69dc;
  184. }
  185. button,
  186. a {
  187. cursor: pointer;
  188. }
  189. /**
  190. * Elements
  191. * - Styles for basic HTML elemants
  192. */
  193. /**
  194. * Elements
  195. * - Styles for basic HTML elemants
  196. */
  197. blockquote {
  198. padding-left: 16px;
  199. }
  200. blockquote p {
  201. font-size: 1.728rem;
  202. letter-spacing: normal;
  203. line-height: 1.125;
  204. }
  205. blockquote cite,
  206. blockquote footer {
  207. font-size: 0.83333rem;
  208. letter-spacing: normal;
  209. }
  210. blockquote > * {
  211. margin-top: 16px;
  212. margin-bottom: 16px;
  213. }
  214. blockquote > *:first-child {
  215. margin-top: 0;
  216. }
  217. blockquote > *:last-child {
  218. margin-bottom: 0;
  219. }
  220. blockquote.alignleft, blockquote.alignright {
  221. padding-left: inherit;
  222. }
  223. blockquote.alignleft p, blockquote.alignright p {
  224. font-size: 1.44rem;
  225. max-width: inherit;
  226. width: inherit;
  227. }
  228. blockquote.alignleft cite,
  229. blockquote.alignleft footer, blockquote.alignright cite,
  230. blockquote.alignright footer {
  231. font-size: 0.69444rem;
  232. letter-spacing: normal;
  233. }
  234. figcaption {
  235. color: #767676;
  236. font-size: 0.69444rem;
  237. margin-top: calc(0.5 * 16px);
  238. margin-bottom: 16px;
  239. text-align: center;
  240. }
  241. .alignleft figcaption,
  242. .alignright figcaption {
  243. margin-bottom: 0;
  244. }
  245. /* WP Smiley */
  246. .page-content .wp-smiley,
  247. .entry-content .wp-smiley,
  248. .comment-content .wp-smiley {
  249. border: none;
  250. margin-bottom: 0;
  251. margin-top: 0;
  252. padding: 0;
  253. }
  254. /* Make sure embeds and iframes fit their containers. */
  255. embed,
  256. iframe,
  257. object {
  258. max-width: 100%;
  259. }
  260. /**
  261. * Blocks
  262. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  263. * spacing with CSS-variables overrides
  264. */
  265. /**
  266. * Block Styles for the Editor
  267. *
  268. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  269. * spacing with CSS-variables overrides in the Block Editor
  270. * - In the future the Block styles may get compiled to individual .css
  271. * files and conditionally loaded
  272. */
  273. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  274. margin-bottom: 16px;
  275. }
  276. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  277. margin-right: 32px;
  278. }
  279. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  280. margin-left: 32px;
  281. }
  282. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  283. padding: 32px;
  284. }
  285. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  286. color: #fff;
  287. }
  288. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  289. color: currentColor;
  290. }
  291. .wp-block-a8c-blog-posts .article-section-title {
  292. font-size: 1em;
  293. margin-top: 0;
  294. margin-bottom: 16px;
  295. }
  296. .wp-block-a8c-blog-posts article {
  297. margin-bottom: 64px;
  298. }
  299. @media only screen and (min-width: 560px) {
  300. .wp-block-a8c-blog-posts article {
  301. margin-bottom: 96px;
  302. }
  303. }
  304. .wp-block-a8c-blog-posts .post-thumbnail img {
  305. vertical-align: middle;
  306. width: auto;
  307. }
  308. .wp-block-a8c-blog-posts .entry-wrapper > * {
  309. /* Vertical margins logic between post details */
  310. margin-top: 16px;
  311. margin-bottom: 16px;
  312. }
  313. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  314. margin-top: 0;
  315. }
  316. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  317. margin-bottom: 0;
  318. }
  319. .wp-block-a8c-blog-posts .entry-title a {
  320. color: #2c313f;
  321. }
  322. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  323. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  324. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  325. color: currentColor;
  326. }
  327. .wp-block-a8c-blog-posts .entry-title a:hover {
  328. color: #3e69dc;
  329. text-decoration: underline;
  330. }
  331. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  332. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  333. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  334. color: currentColor;
  335. }
  336. .wp-block-a8c-blog-posts .more-link {
  337. display: block;
  338. color: inherit;
  339. margin-top: 16px;
  340. }
  341. .wp-block-a8c-blog-posts .more-link:after {
  342. content: "→" /*rtl:"←"*/;
  343. display: inline-block;
  344. margin-left: 0.5em;
  345. }
  346. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  347. color: #3e69dc;
  348. text-decoration: none;
  349. }
  350. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  351. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  352. [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,
  353. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  354. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  355. color: currentColor;
  356. }
  357. .wp-block-a8c-blog-posts .entry-meta,
  358. .wp-block-a8c-blog-posts .cat-links {
  359. color: #767676;
  360. font-size: 0.83333em;
  361. }
  362. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  363. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  364. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  365. .wp-block-a8c-blog-posts .cat-links,
  366. [class*="background-color"]:not(.has-background-background-color)
  367. .wp-block-a8c-blog-posts .cat-links,
  368. [style*="background-color"]
  369. .wp-block-a8c-blog-posts .cat-links {
  370. color: currentColor;
  371. }
  372. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  373. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  374. margin-right: 16px;
  375. }
  376. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  377. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  378. display: none;
  379. }
  380. .wp-block-a8c-blog-posts .entry-meta a,
  381. .wp-block-a8c-blog-posts .cat-links a {
  382. color: currentColor;
  383. text-decoration: underline;
  384. }
  385. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  386. .wp-block-a8c-blog-posts .cat-links a:hover,
  387. .wp-block-a8c-blog-posts .cat-links a:active {
  388. color: #3e69dc;
  389. text-decoration: none;
  390. }
  391. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  392. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  393. [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,
  394. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  395. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  396. .wp-block-a8c-blog-posts .cat-links a:hover,
  397. [class*="background-color"]:not(.has-background-background-color)
  398. .wp-block-a8c-blog-posts .cat-links a:hover,
  399. [style*="background-color"]
  400. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  401. .wp-block-a8c-blog-posts .cat-links a:active,
  402. [class*="background-color"]:not(.has-background-background-color)
  403. .wp-block-a8c-blog-posts .cat-links a:active,
  404. [style*="background-color"]
  405. .wp-block-a8c-blog-posts .cat-links a:active {
  406. color: currentColor;
  407. }
  408. /**
  409. * Button Placeholder style
  410. * - Since buttons appear in various blocks,
  411. * let’s use a placeholder to keep them all
  412. * in-sync
  413. */
  414. .wp-block-a8c-blog-posts + .button {
  415. line-height: 1.44;
  416. color: white;
  417. cursor: pointer;
  418. font-weight: 700;
  419. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  420. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  421. font-size: 0.83333rem;
  422. background-color: #3e69dc;
  423. border-radius: 10px;
  424. border-width: 0;
  425. text-decoration: none;
  426. padding: 16px 16px;
  427. }
  428. .wp-block-a8c-blog-posts + .button:before, .wp-block-a8c-blog-posts + .button:after {
  429. content: '';
  430. display: block;
  431. height: 0;
  432. width: 0;
  433. }
  434. .wp-block-a8c-blog-posts + .button:before {
  435. margin-bottom: -0.34em;
  436. }
  437. .wp-block-a8c-blog-posts + .button:after {
  438. margin-top: -0.33em;
  439. }
  440. .wp-block-a8c-blog-posts + .button:hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-a8c-blog-posts + .has-focus.button {
  441. color: white;
  442. background-color: #2c313f;
  443. }
  444. /**
  445. * Onsale Placeholder style
  446. * - Since buttons appear in various blocks,
  447. * let’s use a placeholder to keep them all
  448. * in-sync
  449. */
  450. .wp-block-a8c-blog-posts + .button {
  451. display: inline-block;
  452. font-size: 1.2em;
  453. }
  454. .wp-block-a8c-blog-posts + .button:hover {
  455. cursor: default;
  456. }
  457. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  458. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  459. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  460. background-color: transparent;
  461. border: 2px solid currentColor;
  462. color: currentColor;
  463. }
  464. /* Default Style */
  465. .wp-block-button__link {
  466. color: white;
  467. font-weight: 700;
  468. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  469. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  470. font-size: 0.83333em;
  471. line-height: 1.44;
  472. background-color: #3e69dc;
  473. border-radius: 10px;
  474. padding: 16px 16px;
  475. /* Outline Style */
  476. /* Squared Style */
  477. }
  478. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  479. color: white;
  480. background-color: #2c313f;
  481. }
  482. .wp-block-button__link.is-style-outline,
  483. .is-style-outline .wp-block-button__link {
  484. background: transparent;
  485. border: 2px solid currentcolor;
  486. }
  487. .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,
  488. .is-style-outline .wp-block-button__link:hover,
  489. .is-style-outline .wp-block-button__link:focus,
  490. .is-style-outline .wp-block-button__link.has-focus {
  491. color: #3e69dc;
  492. background: transparent;
  493. }
  494. .wp-block-button__link.is-style-squared,
  495. .is-style-squared .wp-block-button__link {
  496. border-radius: 0;
  497. }
  498. /* Default Style */
  499. .button {
  500. color: white;
  501. font-weight: 700;
  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: 0.83333em;
  505. line-height: 1.44;
  506. background-color: #3e69dc;
  507. border-radius: 10px;
  508. padding: 16px 16px;
  509. }
  510. .button:hover, .button:focus, .button.has-focus {
  511. color: white;
  512. background-color: #2c313f;
  513. }
  514. .wp-block-columns .wp-block[data-align=full],
  515. .wp-block-columns .alignfull {
  516. margin-left: inherit;
  517. margin-right: inherit;
  518. }
  519. .wp-block-cover,
  520. .wp-block-cover-image {
  521. background-color: #74767e;
  522. color: white;
  523. min-height: 480px;
  524. margin-top: inherit;
  525. margin-bottom: inherit;
  526. /* default & custom background-color */
  527. /* Treating H2 separately to account for legacy /core styles */
  528. }
  529. .wp-block-cover.has-background-dim,
  530. .wp-block-cover-image.has-background-dim {
  531. background-color: #74767e;
  532. color: white;
  533. }
  534. .wp-block-cover .wp-block-cover__inner-container,
  535. .wp-block-cover .wp-block-cover-image-text,
  536. .wp-block-cover .wp-block-cover-text,
  537. .wp-block-cover .block-editor-block-list__block,
  538. .wp-block-cover-image .wp-block-cover__inner-container,
  539. .wp-block-cover-image .wp-block-cover-image-text,
  540. .wp-block-cover-image .wp-block-cover-text,
  541. .wp-block-cover-image .block-editor-block-list__block {
  542. color: currentColor;
  543. }
  544. .wp-block-cover .wp-block-cover__inner-container a,
  545. .wp-block-cover .wp-block-cover-image-text a,
  546. .wp-block-cover .wp-block-cover-text a,
  547. .wp-block-cover .block-editor-block-list__block a,
  548. .wp-block-cover-image .wp-block-cover__inner-container a,
  549. .wp-block-cover-image .wp-block-cover-image-text a,
  550. .wp-block-cover-image .wp-block-cover-text a,
  551. .wp-block-cover-image .block-editor-block-list__block a {
  552. color: currentColor;
  553. }
  554. .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
  555. .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
  556. .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
  557. .wp-block-cover:not([class*='background-color']) .block-editor-block-list__block,
  558. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
  559. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
  560. .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text,
  561. .wp-block-cover-image:not([class*='background-color']) .block-editor-block-list__block {
  562. color: white;
  563. }
  564. .wp-block-cover h2,
  565. .wp-block-cover-image h2 {
  566. font-size: 2.48832em;
  567. letter-spacing: normal;
  568. line-height: 1.125;
  569. padding: 0;
  570. max-width: inherit;
  571. text-align: inherit;
  572. }
  573. .wp-block-cover h2.has-text-align-left,
  574. .wp-block-cover-image h2.has-text-align-left {
  575. text-align: left;
  576. }
  577. .wp-block-cover h2.has-text-align-center,
  578. .wp-block-cover-image h2.has-text-align-center {
  579. text-align: center;
  580. }
  581. .wp-block-cover h2.has-text-align-right,
  582. .wp-block-cover-image h2.has-text-align-right {
  583. text-align: right;
  584. }
  585. .wp-block-heading h1, h1, .h1,
  586. .wp-block-heading h2, h2, .h2,
  587. .wp-block-heading h3, h3, .h3,
  588. .wp-block-heading h4, h4, .h4,
  589. .wp-block-heading h5, h5, .h5,
  590. .wp-block-heading h6, h6, .h6 {
  591. font-family: "Poppins", sans-serif;
  592. font-family: var(--font-headings, "Poppins", sans-serif);
  593. font-weight: 700;
  594. clear: both;
  595. }
  596. .wp-block-heading h1, h1, .h1 {
  597. font-size: 2.98598em;
  598. letter-spacing: normal;
  599. line-height: 1.125;
  600. }
  601. .wp-block-heading h2, h2, .h2 {
  602. font-size: 2.48832em;
  603. letter-spacing: normal;
  604. line-height: 1.125;
  605. }
  606. .wp-block-heading h3, h3, .h3 {
  607. font-size: 2.0736em;
  608. letter-spacing: normal;
  609. line-height: 1.125;
  610. }
  611. .wp-block-heading h4, h4, .h4 {
  612. font-size: 1.728em;
  613. letter-spacing: normal;
  614. line-height: 1.125;
  615. }
  616. .wp-block-heading h5, h5, .h5 {
  617. font-size: 1.44em;
  618. letter-spacing: normal;
  619. line-height: 1.125;
  620. }
  621. .wp-block-heading h6, h6, .h6 {
  622. font-size: 1.2em;
  623. letter-spacing: normal;
  624. line-height: 1.125;
  625. }
  626. /* Center image block by default in the editor */
  627. .wp-block-image > div {
  628. text-align: center;
  629. }
  630. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  631. margin: 0 auto;
  632. }
  633. .wp-block-gallery figcaption {
  634. margin-bottom: 0;
  635. }
  636. .wp-block-group.has-background {
  637. padding: 21.312px;
  638. }
  639. @media only screen and (min-width: 560px) {
  640. .wp-block-group.has-background {
  641. padding: 32px;
  642. }
  643. }
  644. .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] {
  645. margin: 0;
  646. width: 100%;
  647. }
  648. .wp-block-latest-comments {
  649. margin-left: 0;
  650. }
  651. .wp-block-latest-posts {
  652. padding-left: 0;
  653. }
  654. .wp-block-latest-posts > li > a {
  655. font-family: "Poppins", sans-serif;
  656. font-family: var(--font-headings, "Poppins", sans-serif);
  657. font-size: 1.728rem;
  658. font-weight: 700;
  659. line-height: 1.125;
  660. }
  661. .wp-block-latest-posts:not(.is-grid) > li {
  662. /* Vertical margins logic */
  663. margin-top: 32px;
  664. margin-bottom: 32px;
  665. }
  666. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  667. margin-top: 0;
  668. }
  669. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  670. margin-bottom: 0;
  671. }
  672. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  673. color: #767676;
  674. font-size: 0.83333rem;
  675. line-height: 1.6;
  676. }
  677. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  678. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  679. color: currentColor;
  680. }
  681. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  682. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  683. font-size: 0.83333rem;
  684. line-height: 1.6;
  685. margin: 0;
  686. }
  687. ul,
  688. ol {
  689. margin: 32px 0;
  690. padding-left: 32px;
  691. }
  692. ul.aligncenter,
  693. ol.aligncenter {
  694. list-style-position: inside;
  695. padding: 0;
  696. }
  697. ul.alignright,
  698. ol.alignright {
  699. list-style-position: inside;
  700. text-align: right;
  701. padding: 0;
  702. }
  703. li > ul,
  704. li > ol {
  705. margin: 0;
  706. }
  707. .wp-block-media-text .block-editor-inner-blocks {
  708. padding-right: 16px;
  709. padding-left: 16px;
  710. }
  711. @media only screen and (min-width: 640px) {
  712. .wp-block-media-text .block-editor-inner-blocks {
  713. padding-right: 32px;
  714. padding-left: 32px;
  715. }
  716. }
  717. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  718. color: currentColor;
  719. }
  720. .a8c-posts-list {
  721. padding-left: 0;
  722. }
  723. p.has-background {
  724. padding: 16px 16px;
  725. }
  726. p.has-background:not(.has-background-background-color) a {
  727. color: currentColor;
  728. }
  729. .wp-block-pullquote {
  730. border-top-color: #DDDDDD;
  731. border-top-width: 4px;
  732. border-bottom-color: #DDDDDD;
  733. border-bottom-width: 4px;
  734. color: #74767e;
  735. }
  736. .wp-block-pullquote blockquote p {
  737. font-family: "Poppins", sans-serif;
  738. font-family: var(--font-headings, "Poppins", sans-serif);
  739. font-size: 1.728rem;
  740. letter-spacing: normal;
  741. line-height: 1.125;
  742. }
  743. .wp-block-pullquote.is-style-solid-color blockquote p {
  744. font-size: 1.728rem;
  745. }
  746. .wp-block-pullquote a {
  747. color: currentColor;
  748. }
  749. .wp-block-pullquote .wp-block-pullquote__citation,
  750. .wp-block-pullquote cite,
  751. .wp-block-pullquote footer {
  752. color: #767676;
  753. font-size: 0.83333rem;
  754. letter-spacing: normal;
  755. }
  756. .wp-block-pullquote blockquote {
  757. padding-left: 0;
  758. }
  759. .wp-block-pullquote.is-style-solid-color {
  760. color: white;
  761. }
  762. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  763. .wp-block-pullquote.is-style-solid-color cite,
  764. .wp-block-pullquote.is-style-solid-color footer {
  765. color: currentColor;
  766. }
  767. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  768. background-color: #2c313f;
  769. }
  770. .wp-block-quote {
  771. border-left-color: #2c313f;
  772. padding-left: 16px;
  773. }
  774. .wp-block-quote p {
  775. font-family: "Poppins", sans-serif;
  776. font-family: var(--font-headings, "Poppins", sans-serif);
  777. font-size: 1.728em;
  778. letter-spacing: normal;
  779. }
  780. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  781. border: none;
  782. padding: 0;
  783. }
  784. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  785. font-family: "Poppins", sans-serif;
  786. font-family: var(--font-headings, "Poppins", sans-serif);
  787. font-size: 2.0736em;
  788. letter-spacing: normal;
  789. line-height: 1.125;
  790. }
  791. .has-background:not(.has-background-background-color) .wp-block-quote,
  792. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  793. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  794. .wp-block-cover[style*="background-image"] .wp-block-quote {
  795. border-color: currentColor;
  796. }
  797. .wp-block-quote .wp-block-quote__citation {
  798. color: #767676;
  799. font-size: 0.83333em;
  800. letter-spacing: normal;
  801. }
  802. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  803. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  804. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  805. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  806. color: currentColor;
  807. }
  808. .wp-block-separator,
  809. hr {
  810. border-bottom: 2px solid #DDDDDD;
  811. clear: both;
  812. }
  813. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  814. hr[style*="text-align:right"],
  815. hr[style*="text-align: right"] {
  816. border-right-color: #DDDDDD;
  817. }
  818. .wp-block-separator.is-style-wide,
  819. hr.is-style-wide {
  820. border-bottom-width: 2px;
  821. }
  822. .wp-block-separator.is-style-dots,
  823. hr.is-style-dots {
  824. border-bottom: none;
  825. }
  826. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  827. hr.is-style-dots.has-background,
  828. hr.is-style-dots.has-text-color {
  829. background-color: transparent !important;
  830. }
  831. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  832. hr.is-style-dots.has-background:before,
  833. hr.is-style-dots.has-text-color:before {
  834. color: currentColor !important;
  835. }
  836. .wp-block-separator.is-style-dots:before,
  837. hr.is-style-dots:before {
  838. color: #DDDDDD;
  839. }
  840. .has-background:not(.has-background-background-color) .wp-block-separator,
  841. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  842. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  843. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  844. hr,
  845. [class*="background-color"]:not(.has-background-background-color)
  846. hr,
  847. [style*="background-color"]:not(.has-background-background-color)
  848. hr,
  849. .wp-block-cover[style*="background-image"]
  850. hr {
  851. border-color: currentColor;
  852. }
  853. table th,
  854. .wp-block-table th {
  855. font-family: "Poppins", sans-serif;
  856. font-family: var(--font-headings, "Poppins", sans-serif);
  857. }
  858. table td,
  859. table th,
  860. .wp-block-table td,
  861. .wp-block-table th {
  862. padding: calc( 0.5 * 16px);
  863. }
  864. table.is-style-stripes tbody tr:nth-child(odd),
  865. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  866. background-color: #FAFAFA;
  867. color: #74767e;
  868. }
  869. pre.wp-block-verse {
  870. font-family: monospace, monospace;
  871. color: #74767e;
  872. }
  873. /**
  874. * Editor Post Title
  875. * - Needs a special styles
  876. */
  877. .editor-post-title__block .editor-post-title__input {
  878. color: #74767e;
  879. font-family: "Poppins", sans-serif;
  880. font-family: var(--font-headings, "Poppins", sans-serif);
  881. font-weight: 700;
  882. font-size: 2.48832em;
  883. letter-spacing: normal;
  884. line-height: 1.125;
  885. }
  886. .wp-block .has-primary-color,
  887. .has-primary-color {
  888. color: #2c313f;
  889. }
  890. .wp-block .has-secondary-color,
  891. .has-secondary-color {
  892. color: #3e69dc;
  893. }
  894. .wp-block .has-foreground-color,
  895. .has-foreground-color {
  896. color: #74767e;
  897. }
  898. .wp-block .has-foreground-light-color,
  899. .has-foreground-light-color {
  900. color: #767676;
  901. }
  902. .wp-block .has-foreground-dark-color,
  903. .has-foreground-dark-color {
  904. color: #111111;
  905. }
  906. .wp-block .has-background-light-color,
  907. .has-background-light-color {
  908. color: #f3f3f3;
  909. }
  910. .wp-block .has-background-dark-color,
  911. .has-background-dark-color {
  912. color: #DDDDDD;
  913. }
  914. .wp-block .has-background-color,
  915. .has-background-color {
  916. color: white;
  917. }
  918. .has-background:not(.has-background-background-color) a:not(.wp-block-button__link),
  919. .has-background p:not(.has-text-color),
  920. .has-background h1:not(.has-text-color),
  921. .has-background h2:not(.has-text-color),
  922. .has-background h3:not(.has-text-color),
  923. .has-background h4:not(.has-text-color),
  924. .has-background h5:not(.has-text-color),
  925. .has-background h6:not(.has-text-color) {
  926. color: currentColor;
  927. }
  928. .wp-block .has-primary-background-color,
  929. .has-primary-background-color {
  930. background-color: #2c313f;
  931. color: white;
  932. }
  933. .wp-block .has-secondary-background-color,
  934. .has-secondary-background-color {
  935. background-color: #3e69dc;
  936. color: white;
  937. }
  938. .wp-block .has-foreground-background-color,
  939. .has-foreground-background-color {
  940. background-color: #74767e;
  941. color: white;
  942. }
  943. .wp-block .has-foreground-light-background-color,
  944. .has-foreground-light-background-color {
  945. background-color: #767676;
  946. color: white;
  947. }
  948. .wp-block .has-foreground-dark-background-color,
  949. .has-foreground-dark-background-color {
  950. background-color: #111111;
  951. color: white;
  952. }
  953. .wp-block .has-background-light-background-color,
  954. .has-background-light-background-color {
  955. background-color: #f3f3f3;
  956. color: #74767e;
  957. }
  958. .wp-block .has-background-dark-background-color,
  959. .has-background-dark-background-color {
  960. background-color: #DDDDDD;
  961. color: #74767e;
  962. }
  963. .wp-block .has-background-background-color,
  964. .has-background-background-color {
  965. background-color: white;
  966. color: #74767e;
  967. }
  968. .is-small-text,
  969. .has-small-font-size {
  970. font-size: 0.83333em;
  971. }
  972. .is-regular-text,
  973. .has-regular-font-size,
  974. .has-normal-font-size,
  975. .has-medium-font-size {
  976. font-size: 1.2em;
  977. }
  978. .is-large-text,
  979. .has-large-font-size {
  980. font-size: 1.44em;
  981. line-height: 1.125;
  982. }
  983. .is-larger-text,
  984. .has-larger-font-size,
  985. .has-huge-font-size {
  986. font-size: 1.728em;
  987. line-height: 1.125;
  988. }
  989. .has-drop-cap:not(:focus)::first-letter {
  990. font-family: "Poppins", sans-serif;
  991. font-family: var(--font-headings, "Poppins", sans-serif);
  992. font-size: calc(2 * 2.98598em);
  993. font-weight: 700;
  994. }
  995. /**
  996. * Spacing Overrides
  997. */
  998. [data-block] {
  999. margin-top: 21.312px;
  1000. margin-bottom: 21.312px;
  1001. }
  1002. @media only screen and (min-width: 560px) {
  1003. [data-block] {
  1004. margin-top: 32px;
  1005. margin-bottom: 32px;
  1006. }
  1007. }
  1008. /*
  1009. * Margins
  1010. */
  1011. .margin-top-none {
  1012. margin-top: 0 !important;
  1013. }
  1014. .margin-top-half {
  1015. margin-top: 16px !important;
  1016. }
  1017. .margin-top-default {
  1018. margin-top: 32px !important;
  1019. }
  1020. .margin-right-none {
  1021. /*rtl:ignore*/
  1022. margin-right: 0 !important;
  1023. }
  1024. .margin-right-half {
  1025. /*rtl:ignore*/
  1026. margin-right: 16px !important;
  1027. }
  1028. .margin-right-default {
  1029. /*rtl:ignore*/
  1030. margin-right: 32px !important;
  1031. }
  1032. .margin-bottom-none {
  1033. margin-bottom: 0 !important;
  1034. }
  1035. .margin-bottom-half {
  1036. margin-bottom: 16px !important;
  1037. }
  1038. .margin-bottom-default {
  1039. margin-bottom: 32px !important;
  1040. }
  1041. .margin-left-none {
  1042. /*rtl:ignore*/
  1043. margin-left: 0 !important;
  1044. }
  1045. .margin-left-half {
  1046. /*rtl:ignore*/
  1047. margin-left: 16px !important;
  1048. }
  1049. .margin-left-default {
  1050. /*rtl:ignore*/
  1051. margin-left: 32px !important;
  1052. }
  1053. /*
  1054. * Padding
  1055. */
  1056. .padding-top-none {
  1057. padding-top: 0 !important;
  1058. }
  1059. .padding-top-half {
  1060. padding-top: 16px !important;
  1061. }
  1062. .padding-top-default {
  1063. padding-top: 32px !important;
  1064. }
  1065. .padding-right-none {
  1066. /*rtl:ignore*/
  1067. padding-right: 0 !important;
  1068. }
  1069. .padding-right-half {
  1070. /*rtl:ignore*/
  1071. padding-right: 16px !important;
  1072. }
  1073. .padding-right-default {
  1074. /*rtl:ignore*/
  1075. padding-right: 32px !important;
  1076. }
  1077. .padding-bottom-none {
  1078. padding-bottom: 0 !important;
  1079. }
  1080. .padding-bottom-half {
  1081. padding-bottom: 16px !important;
  1082. }
  1083. .padding-bottom-default {
  1084. padding-bottom: 32px !important;
  1085. }
  1086. .padding-left-none {
  1087. /*rtl:ignore*/
  1088. padding-left: 0 !important;
  1089. }
  1090. .padding-left-half {
  1091. /*rtl:ignore*/
  1092. padding-left: 16px !important;
  1093. }
  1094. .padding-left-default {
  1095. /*rtl:ignore*/
  1096. padding-left: 32px !important;
  1097. }
  1098. /**
  1099. * Vendors
  1100. * - Styles for 3rd party plugins and WP extensions
  1101. */
  1102. /**
  1103. * Vendors
  1104. * - 3rd-party compatibility styles
  1105. */
  1106. /**
  1107. * Set Jetpack form text color
  1108. */
  1109. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1110. color: black;
  1111. }
  1112. /**
  1113. * Extras
  1114. */
  1115. /**
  1116. * 1. General Styles
  1117. */
  1118. a {
  1119. text-decoration: none;
  1120. }
  1121. .wp-block-group a,
  1122. .wp-block-cover a,
  1123. .wp-block-cover-image a,
  1124. .wp-block-media-text a,
  1125. p:not(.site-title) a {
  1126. text-decoration: underline;
  1127. }
  1128. .wp-block-group a.wp-block-button__link, .wp-block-group a:hover,
  1129. .wp-block-cover a.wp-block-button__link,
  1130. .wp-block-cover a:hover,
  1131. .wp-block-cover-image a.wp-block-button__link,
  1132. .wp-block-cover-image a:hover,
  1133. .wp-block-media-text a.wp-block-button__link,
  1134. .wp-block-media-text a:hover,
  1135. p:not(.site-title) a.wp-block-button__link,
  1136. p:not(.site-title) a:hover {
  1137. text-decoration: none;
  1138. }
  1139. .editor-post-title__block .editor-post-title__input {
  1140. text-align: left;
  1141. color: #2c313f;
  1142. }
  1143. h1,
  1144. h2,
  1145. h3,
  1146. h4,
  1147. h5,
  1148. h6 {
  1149. color: #2c313f;
  1150. }
  1151. /**
  1152. * 2. Block Specific Styles
  1153. */
  1154. /**
  1155. * 2.1. Column Block
  1156. */
  1157. .wp-block-columns .wp-block-latest-posts {
  1158. border-bottom: 1px solid #f3f3f3;
  1159. }
  1160. .wp-block-columns .wp-block-latest-posts > li {
  1161. border-top: 1px solid #f3f3f3;
  1162. margin: 0;
  1163. padding-top: 16px;
  1164. padding-bottom: 16px;
  1165. }
  1166. .wp-block-columns .wp-block-latest-posts > li > a {
  1167. font-size: 1rem;
  1168. font-weight: normal;
  1169. font-family: "Lato", sans-serif;
  1170. font-family: var(--font-base, "Lato", sans-serif);
  1171. line-height: 1.6;
  1172. }
  1173. .wp-block-columns .wp-block-latest-posts > li > time.wp-block-latest-posts__post-date {
  1174. font-size: 1rem;
  1175. }
  1176. /**
  1177. * 2.2. Quote Block
  1178. */
  1179. .wp-block-quote,
  1180. .wp-block-quote[style*="text-align:center"],
  1181. .wp-block-quote[style*="text-align:right"] {
  1182. border: 1px solid #f3f3f3;
  1183. padding: 16px;
  1184. }
  1185. .wp-block-quote p,
  1186. .wp-block-quote[style*="text-align:center"] p,
  1187. .wp-block-quote[style*="text-align:right"] p {
  1188. font-family: "Lato", sans-serif;
  1189. font-family: var(--font-base, "Lato", sans-serif);
  1190. font-size: 1.2rem;
  1191. line-height: 1.6;
  1192. }
  1193. .wp-block-quote .wp-block-quote__citation,
  1194. .wp-block-quote[style*="text-align:center"] .wp-block-quote__citation,
  1195. .wp-block-quote[style*="text-align:right"] .wp-block-quote__citation {
  1196. color: inherit;
  1197. font-size: 1.2rem;
  1198. }
  1199. /**
  1200. * 2.3. File Block
  1201. */
  1202. .wp-block-file div.wp-block-file__button {
  1203. line-height: 1.44;
  1204. cursor: pointer;
  1205. font-weight: 700;
  1206. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1207. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1208. background-color: #3e69dc;
  1209. font-size: 0.83333rem;
  1210. padding: 16px 16px;
  1211. text-transform: uppercase;
  1212. display: inline-block;
  1213. }
  1214. .wp-block-file div.wp-block-file__button:focus, .wp-block-file div.wp-block-file__button:hover {
  1215. color: white;
  1216. background-color: #2c313f;
  1217. opacity: 1;
  1218. }
  1219. /**
  1220. * 2.4. Pre Block, Code Block and Verse Block
  1221. */
  1222. .wp-block-preformatted pre,
  1223. .wp-block-verse pre {
  1224. font-family: "Inconsolata", monospace;
  1225. font-size: 1rem;
  1226. }
  1227. .wp-block-code .block-editor-plain-text {
  1228. font-family: "Inconsolata", monospace;
  1229. font-size: 1rem;
  1230. }
  1231. /**
  1232. * 2.5. Button Block
  1233. */
  1234. .wp-block-button div.wp-block-button__link {
  1235. text-transform: uppercase;
  1236. border: 0;
  1237. border-radius: 5em;
  1238. text-transform: uppercase;
  1239. }
  1240. .wp-block-button div.wp-block-button__link.has-background:focus, .wp-block-button div.wp-block-button__link.has-background:hover, .wp-block-button div.wp-block-button__link.has-background:visited {
  1241. opacity: .8;
  1242. }
  1243. .wp-block-button.minimal .wp-block-button__link {
  1244. background: 0 0;
  1245. border: 2px solid;
  1246. }
  1247. /**
  1248. * 2.6. Search Block
  1249. */
  1250. .wp-block-search .wp-block-search__button {
  1251. text-transform: uppercase;
  1252. line-height: 1.44;
  1253. color: white;
  1254. cursor: pointer;
  1255. font-weight: 700;
  1256. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1257. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1258. font-size: 0.83333rem;
  1259. background-color: #3e69dc;
  1260. border-radius: 5em;
  1261. border-width: 0;
  1262. padding: 16px 16px;
  1263. display: inline-block;
  1264. border: none;
  1265. box-shadow: none;
  1266. }
  1267. .wp-block-search .wp-block-search__button:focus, .wp-block-search .wp-block-search__button:hover, .wp-block-search .wp-block-search__button:visited {
  1268. color: white;
  1269. background-color: #2c313f;
  1270. opacity: 1;
  1271. }
  1272. .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 {
  1273. text-decoration: none;
  1274. }
  1275. .wp-block-a8c-blog-posts .cat-links a,
  1276. .wp-block-a8c-blog-posts .more-link,
  1277. .wp-block-a8c-blog-posts .entry-meta a {
  1278. text-decoration: none;
  1279. }
  1280. .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,
  1281. .wp-block-a8c-blog-posts .more-link:active,
  1282. .wp-block-a8c-blog-posts .more-link:focus,
  1283. .wp-block-a8c-blog-posts .more-link:hover,
  1284. .wp-block-a8c-blog-posts .entry-meta a:active,
  1285. .wp-block-a8c-blog-posts .entry-meta a:focus,
  1286. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1287. text-decoration: underline;
  1288. }
  1289. .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 {
  1290. color: #fff;
  1291. text-decoration: underline;
  1292. }
  1293. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  1294. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  1295. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  1296. text-decoration: none;
  1297. }
  1298. .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,
  1299. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
  1300. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
  1301. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1302. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
  1303. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
  1304. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
  1305. text-decoration: underline;
  1306. }
  1307. .wp-block-a8c-blog-posts + .button {
  1308. font-size: 0.83333em;
  1309. }