style-editor.css 32 KB

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