style-editor.css 38 KB

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