style-editor.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  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: #404040;
  123. --wp--preset--color--primary-hover: #f25f70;
  124. --wp--preset--color--secondary: #f25f70;
  125. --wp--preset--color--secondary-hover: #4f4f4f;
  126. --wp--preset--color--foreground: #444;
  127. --wp--preset--color--foreground-low-contrast: #767676;
  128. --wp--preset--color--foreground-high-contrast: #111;
  129. --wp--preset--color--background: #fff;
  130. --wp--preset--color--background-low-contrast: #ddd;
  131. --wp--preset--color--background-high-contrast: #fafafa;
  132. --wp--preset--color--tertiary: #ddd;
  133. --wp--preset--color--border: #ddd;
  134. --wp--preset--color--border-low-contrast: #aaa;
  135. --wp--preset--color--border-high-contrast: #fafafa;
  136. --wp--preset--color--text-selection: #ffdce0;
  137. --wp--preset--color--alert-success: #8bc34a;
  138. --wp--preset--color--alert-info: #03a9f4;
  139. --wp--preset--color--alert-warning: #ffc107;
  140. --wp--preset--color--alert-error: #f25f70;
  141. --wp--preset--color--black: black;
  142. --wp--preset--color--white: white;
  143. }
  144. /**
  145. * Child Theme Name
  146. */
  147. /**
  148. * Redefine Sass map values for child theme output.
  149. * - See: style-child-theme.scss
  150. */
  151. /**
  152. * Global
  153. */
  154. /**
  155. * Elements
  156. */
  157. /**
  158. * Button
  159. */
  160. /**
  161. * Cover
  162. */
  163. /**
  164. * Heading
  165. */
  166. /**
  167. * List
  168. */
  169. /**
  170. * Pullquote
  171. */
  172. /**
  173. * Quote
  174. */
  175. /**
  176. * Separator
  177. */
  178. /**
  179. * Header
  180. */
  181. /**
  182. * Footer
  183. */
  184. /**
  185. * Base
  186. * - Reset the browser
  187. */
  188. body {
  189. color: var(--wp--preset--color--foreground);
  190. background-color: var(--wp--preset--color--background);
  191. font-family: "Source Sans Pro", Arial, sans-serif;
  192. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  193. font-size: 18px;
  194. font-weight: normal;
  195. line-height: 1.78;
  196. -moz-osx-font-smoothing: grayscale;
  197. -webkit-font-smoothing: antialiased;
  198. }
  199. .editor-post-title__block {
  200. font-size: 18px;
  201. }
  202. p {
  203. font-size: 1em;
  204. line-height: 1.78;
  205. }
  206. a {
  207. color: var(--wp--preset--color--primary);
  208. }
  209. a:hover {
  210. color: var(--wp--preset--color--primary-hover);
  211. }
  212. .has-primary-background-color a:not(.has-text-color) {
  213. color: var(--wp--preset--color--background);
  214. }
  215. button,
  216. a {
  217. cursor: pointer;
  218. }
  219. button,
  220. input,
  221. optgroup,
  222. select,
  223. textarea {
  224. font-family: inherit;
  225. font-size: 100%;
  226. line-height: 1.15;
  227. margin: 0;
  228. }
  229. /**
  230. * Elements
  231. * - Styles for basic HTML elemants
  232. */
  233. /**
  234. * Elements
  235. * - Styles for basic HTML elemants
  236. */
  237. blockquote {
  238. padding-left: 16px;
  239. }
  240. blockquote p {
  241. font-size: 1.2rem;
  242. letter-spacing: normal;
  243. line-height: 1.125;
  244. }
  245. blockquote cite,
  246. blockquote footer {
  247. font-size: 0.83333rem;
  248. letter-spacing: normal;
  249. }
  250. blockquote > * {
  251. margin-top: 16px;
  252. margin-bottom: 16px;
  253. }
  254. blockquote > *:first-child {
  255. margin-top: 0;
  256. }
  257. blockquote > *:last-child {
  258. margin-bottom: 0;
  259. }
  260. blockquote.alignleft, blockquote.alignright {
  261. padding-left: inherit;
  262. }
  263. blockquote.alignleft p, blockquote.alignright p {
  264. font-size: 1rem;
  265. max-width: inherit;
  266. width: inherit;
  267. }
  268. blockquote.alignleft cite,
  269. blockquote.alignleft footer, blockquote.alignright cite,
  270. blockquote.alignright footer {
  271. font-size: 0.69444rem;
  272. letter-spacing: normal;
  273. }
  274. figcaption {
  275. color: var(--wp--preset--color--foreground-low-contrast);
  276. font-size: 0.69444rem;
  277. margin-top: calc(0.5 * 16px);
  278. margin-bottom: 16px;
  279. text-align: center;
  280. }
  281. .alignleft figcaption,
  282. .alignright figcaption {
  283. margin-bottom: 0;
  284. }
  285. /* WP Smiley */
  286. .page-content .wp-smiley,
  287. .entry-content .wp-smiley,
  288. .comment-content .wp-smiley {
  289. border: none;
  290. margin-bottom: 0;
  291. margin-top: 0;
  292. padding: 0;
  293. }
  294. /* Make sure embeds and iframes fit their containers. */
  295. embed,
  296. iframe,
  297. object {
  298. max-width: 100%;
  299. }
  300. /* Center-align getty image embeds */
  301. .getty.embed.image {
  302. display: block !important;
  303. }
  304. /**
  305. * Blocks
  306. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  307. * spacing with CSS-variables overrides
  308. */
  309. /**
  310. * Block Styles for the Editor
  311. *
  312. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  313. * spacing with CSS-variables overrides in the Block Editor
  314. * - In the future the Block styles may get compiled to individual .css
  315. * files and conditionally loaded
  316. */
  317. .wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
  318. margin-bottom: 16px;
  319. }
  320. .wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
  321. margin-right: 32px;
  322. }
  323. .wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
  324. margin-left: 32px;
  325. }
  326. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
  327. padding: 32px;
  328. }
  329. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
  330. color: #fff;
  331. }
  332. .wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
  333. color: currentColor;
  334. }
  335. .wp-block-a8c-blog-posts .article-section-title {
  336. font-size: 1em;
  337. margin-top: 0;
  338. margin-bottom: 16px;
  339. }
  340. .wp-block-a8c-blog-posts article {
  341. margin-bottom: 64px;
  342. }
  343. @media only screen and (min-width: 560px) {
  344. .wp-block-a8c-blog-posts article {
  345. margin-bottom: 96px;
  346. }
  347. }
  348. .wp-block-a8c-blog-posts .post-thumbnail img {
  349. vertical-align: middle;
  350. width: auto;
  351. }
  352. .wp-block-a8c-blog-posts .entry-wrapper > * {
  353. /* Vertical margins logic between post details */
  354. margin-top: 16px;
  355. margin-bottom: 16px;
  356. }
  357. .wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
  358. margin-top: 0;
  359. }
  360. .wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
  361. margin-bottom: 0;
  362. }
  363. .wp-block-a8c-blog-posts .entry-title a {
  364. color: var(--wp--preset--color--primary);
  365. }
  366. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  367. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  368. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  369. color: currentColor;
  370. }
  371. .wp-block-a8c-blog-posts .entry-title a:hover {
  372. color: var(--wp--preset--color--primary-hover);
  373. text-decoration: underline;
  374. }
  375. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  376. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
  377. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
  378. color: currentColor;
  379. }
  380. .wp-block-a8c-blog-posts .more-link {
  381. display: block;
  382. color: inherit;
  383. margin-top: 16px;
  384. }
  385. .wp-block-a8c-blog-posts .more-link:after {
  386. content: "→" /*rtl:"←"*/;
  387. display: inline-block;
  388. margin-left: 0.5em;
  389. }
  390. .wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
  391. color: var(--wp--preset--color--primary-hover);
  392. text-decoration: none;
  393. }
  394. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  395. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
  396. [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,
  397. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
  398. [style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
  399. color: currentColor;
  400. }
  401. .wp-block-a8c-blog-posts .entry-meta,
  402. .wp-block-a8c-blog-posts .cat-links {
  403. color: var(--wp--preset--color--foreground-low-contrast);
  404. font-size: 0.83333em;
  405. }
  406. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  407. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
  408. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
  409. .wp-block-a8c-blog-posts .cat-links,
  410. [class*="background-color"]:not(.has-background-background-color)
  411. .wp-block-a8c-blog-posts .cat-links,
  412. [style*="background-color"]
  413. .wp-block-a8c-blog-posts .cat-links {
  414. color: currentColor;
  415. }
  416. .wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
  417. .wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
  418. margin-right: 16px;
  419. }
  420. .wp-block-a8c-blog-posts .entry-meta .published + .updated,
  421. .wp-block-a8c-blog-posts .cat-links .published + .updated {
  422. display: none;
  423. }
  424. .wp-block-a8c-blog-posts .entry-meta a,
  425. .wp-block-a8c-blog-posts .cat-links a {
  426. color: currentColor;
  427. text-decoration: underline;
  428. }
  429. .wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
  430. .wp-block-a8c-blog-posts .cat-links a:hover,
  431. .wp-block-a8c-blog-posts .cat-links a:active {
  432. color: var(--wp--preset--color--primary-hover);
  433. text-decoration: none;
  434. }
  435. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  436. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
  437. [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,
  438. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
  439. [style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
  440. .wp-block-a8c-blog-posts .cat-links a:hover,
  441. [class*="background-color"]:not(.has-background-background-color)
  442. .wp-block-a8c-blog-posts .cat-links a:hover,
  443. [style*="background-color"]
  444. .wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
  445. .wp-block-a8c-blog-posts .cat-links a:active,
  446. [class*="background-color"]:not(.has-background-background-color)
  447. .wp-block-a8c-blog-posts .cat-links a:active,
  448. [style*="background-color"]
  449. .wp-block-a8c-blog-posts .cat-links a:active {
  450. color: currentColor;
  451. }
  452. /**
  453. * Button Placeholder style
  454. * - Since buttons appear in various blocks,
  455. * let’s use a placeholder to keep them all
  456. * in-sync
  457. */
  458. .wp-block-a8c-blog-posts + .button, .wp-block-button__link,
  459. .wp-block-file__button, .wp-block-search .wp-block-search__button, .fse-template-part .main-navigation .button {
  460. line-height: 1;
  461. color: var(--wp--preset--color--background);
  462. cursor: pointer;
  463. font-weight: 600;
  464. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  465. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  466. font-size: 0.69444rem;
  467. background-color: var(--wp--preset--color--secondary);
  468. border-radius: 9px;
  469. border-width: 0;
  470. text-decoration: none;
  471. padding: 16px 16px;
  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, .fse-template-part .main-navigation .button:before, .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  475. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  476. content: '';
  477. display: block;
  478. height: 0;
  479. width: 0;
  480. }
  481. .wp-block-a8c-blog-posts + .button:before, .wp-block-button__link:before,
  482. .wp-block-file__button:before, .wp-block-search .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
  483. margin-bottom: -0.12em;
  484. }
  485. .wp-block-a8c-blog-posts + .button:after, .wp-block-button__link:after,
  486. .wp-block-file__button:after, .wp-block-search .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  487. margin-top: -0.11em;
  488. }
  489. .wp-block-a8c-blog-posts + .button:not(.has-background):hover, .wp-block-button__link:not(.has-background):hover,
  490. .wp-block-file__button:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-button__link:focus,
  491. .wp-block-file__button:focus, .wp-block-search .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .wp-block-a8c-blog-posts + .has-focus.button, .has-focus.wp-block-button__link,
  492. .has-focus.wp-block-file__button, .wp-block-search .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
  493. color: var(--wp--preset--color--background);
  494. background-color: var(--wp--preset--color--secondary-hover);
  495. }
  496. /**
  497. * Onsale Placeholder style
  498. * - Since buttons appear in various blocks,
  499. * let’s use a placeholder to keep them all
  500. * in-sync
  501. */
  502. .wp-block-a8c-blog-posts + .button {
  503. display: inline-block;
  504. font-size: 1.2em;
  505. }
  506. .wp-block-a8c-blog-posts + .button:hover {
  507. cursor: default;
  508. }
  509. .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  510. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
  511. [style*="background-color"] .wp-block-a8c-blog-posts + .button {
  512. background-color: transparent;
  513. border: 2px solid currentColor;
  514. color: currentColor;
  515. }
  516. /**
  517. * Button
  518. */
  519. /* Default Style */
  520. .wp-block-button__link {
  521. color: var(--wp--preset--color--background);
  522. font-weight: 600;
  523. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  524. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  525. font-size: 0.69444em;
  526. line-height: 1;
  527. background-color: var(--wp--preset--color--secondary);
  528. border-radius: 9px;
  529. padding: 16px 16px;
  530. /* Outline Style */
  531. /* Squared Style */
  532. }
  533. .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link.has-focus {
  534. color: var(--wp--preset--color--background);
  535. background-color: var(--wp--preset--color--secondary-hover);
  536. }
  537. .wp-block-button__link.is-style-outline,
  538. .is-style-outline .wp-block-button__link {
  539. border: 2px solid currentcolor;
  540. }
  541. .wp-block-button__link.is-style-outline:not(.has-text-color),
  542. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  543. color: var(--wp--preset--color--secondary);
  544. }
  545. .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,
  546. .is-style-outline .wp-block-button__link:hover,
  547. .is-style-outline .wp-block-button__link:focus,
  548. .is-style-outline .wp-block-button__link.has-focus {
  549. color: var(--wp--preset--color--primary-hover);
  550. background: transparent;
  551. }
  552. .has-primary-background-color .wp-block-button__link.is-style-outline:not(.has-text-color), .has-primary-background-color
  553. .is-style-outline .wp-block-button__link:not(.has-text-color) {
  554. color: var(--wp--preset--color--background);
  555. }
  556. .wp-block-button__link.is-style-squared,
  557. .is-style-squared .wp-block-button__link {
  558. border-radius: 0;
  559. }
  560. /* Default Style */
  561. .button {
  562. color: var(--wp--preset--color--background);
  563. font-weight: 600;
  564. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  565. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  566. font-size: 0.69444em;
  567. line-height: 1;
  568. background-color: var(--wp--preset--color--secondary);
  569. border-radius: 9px;
  570. padding: 16px 16px;
  571. }
  572. .button:hover, .button:focus, .button.has-focus {
  573. color: var(--wp--preset--color--background);
  574. background-color: var(--wp--preset--color--secondary-hover);
  575. }
  576. .wp-block-columns .wp-block[data-align=full],
  577. .wp-block-columns .alignfull {
  578. margin-left: inherit;
  579. margin-right: inherit;
  580. }
  581. .wp-block-cover,
  582. .wp-block-cover-image {
  583. background-color: var(--wp--preset--color--foreground);
  584. color: var(--wp--preset--color--background);
  585. min-height: 480px;
  586. margin-top: inherit;
  587. margin-bottom: inherit;
  588. /* Treating H2 separately to account for legacy /core styles */
  589. }
  590. .wp-block-cover.has-background-dim,
  591. .wp-block-cover-image.has-background-dim {
  592. background-color: var(--wp--preset--color--foreground);
  593. color: var(--wp--preset--color--background);
  594. }
  595. .wp-block-cover .wp-block-cover-image-text,
  596. .wp-block-cover .wp-block-cover-text,
  597. .wp-block-cover .block-editor-block-list__block,
  598. .wp-block-cover-image .wp-block-cover-image-text,
  599. .wp-block-cover-image .wp-block-cover-text,
  600. .wp-block-cover-image .block-editor-block-list__block {
  601. color: currentColor;
  602. }
  603. .wp-block-cover h2,
  604. .wp-block-cover-image h2 {
  605. font-size: 1.728;
  606. letter-spacing: normal;
  607. line-height: 1.125;
  608. padding: 0;
  609. max-width: inherit;
  610. text-align: inherit;
  611. }
  612. .wp-block-cover h2.has-text-align-left,
  613. .wp-block-cover-image h2.has-text-align-left {
  614. text-align: left;
  615. }
  616. .wp-block-cover h2.has-text-align-center,
  617. .wp-block-cover-image h2.has-text-align-center {
  618. text-align: center;
  619. }
  620. .wp-block-cover h2.has-text-align-right,
  621. .wp-block-cover-image h2.has-text-align-right {
  622. text-align: right;
  623. }
  624. .wp-block-heading h1, h1, .h1,
  625. .wp-block-heading h2, h2, .h2,
  626. .wp-block-heading h3, h3, .h3,
  627. .wp-block-heading h4, h4, .h4,
  628. .wp-block-heading h5, h5, .h5,
  629. .wp-block-heading h6, h6, .h6 {
  630. font-family: "Oswald", sans-serif;
  631. font-family: var(--font-headings, "Oswald", sans-serif);
  632. font-weight: 300;
  633. clear: both;
  634. }
  635. .wp-block-heading h1, h1, .h1 {
  636. font-size: 2.0736em;
  637. letter-spacing: normal;
  638. line-height: 1.125;
  639. }
  640. .wp-block-heading h2, h2, .h2 {
  641. font-size: 1.728em;
  642. letter-spacing: normal;
  643. line-height: 1.125;
  644. }
  645. .wp-block-heading h3, h3, .h3 {
  646. font-size: 1.44em;
  647. letter-spacing: normal;
  648. line-height: 1.125;
  649. }
  650. .wp-block-heading h4, h4, .h4 {
  651. font-size: 1.2em;
  652. letter-spacing: normal;
  653. line-height: 1.125;
  654. }
  655. .wp-block-heading h5, h5, .h5 {
  656. font-size: 1em;
  657. letter-spacing: normal;
  658. line-height: 1.125;
  659. }
  660. .wp-block-heading h6, h6, .h6 {
  661. font-size: 0.83333em;
  662. letter-spacing: normal;
  663. line-height: 1.125;
  664. }
  665. /* Center image block by default in the editor */
  666. .wp-block-image > div {
  667. text-align: center;
  668. }
  669. [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  670. margin: 0 auto;
  671. }
  672. .wp-block-gallery figcaption {
  673. margin-bottom: 0;
  674. }
  675. .wp-block-group.has-background {
  676. padding: 21.312px;
  677. }
  678. @media only screen and (min-width: 560px) {
  679. .wp-block-group.has-background {
  680. padding: 32px;
  681. }
  682. }
  683. .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] {
  684. margin: 0;
  685. width: 100%;
  686. }
  687. .wp-block-latest-comments {
  688. margin-left: 0;
  689. }
  690. .wp-block-latest-posts {
  691. padding-left: 0;
  692. }
  693. .wp-block-latest-posts > li > a {
  694. font-family: "Oswald", sans-serif;
  695. font-family: var(--font-headings, "Oswald", sans-serif);
  696. font-size: 1.2rem;
  697. font-weight: 300;
  698. line-height: 1.125;
  699. }
  700. .wp-block-latest-posts:not(.is-grid) > li {
  701. /* Vertical margins logic */
  702. margin-top: 32px;
  703. margin-bottom: 32px;
  704. }
  705. .wp-block-latest-posts:not(.is-grid) > li:first-child {
  706. margin-top: 0;
  707. }
  708. .wp-block-latest-posts:not(.is-grid) > li:last-child {
  709. margin-bottom: 0;
  710. }
  711. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  712. color: var(--wp--preset--color--foreground-low-contrast);
  713. font-size: 0.83333rem;
  714. line-height: 1.78;
  715. }
  716. [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  717. .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  718. color: currentColor;
  719. }
  720. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  721. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  722. font-size: 0.83333rem;
  723. line-height: 1.78;
  724. margin: 0;
  725. }
  726. ul,
  727. ol {
  728. margin: 32px 0;
  729. padding-left: 32px;
  730. }
  731. ul.aligncenter,
  732. ol.aligncenter {
  733. list-style-position: inside;
  734. padding: 0;
  735. }
  736. ul.alignright,
  737. ol.alignright {
  738. list-style-position: inside;
  739. text-align: right;
  740. padding: 0;
  741. }
  742. li > ul,
  743. li > ol {
  744. margin: 0;
  745. }
  746. .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
  747. color: currentColor;
  748. }
  749. .a8c-posts-list {
  750. padding-left: 0;
  751. }
  752. p.has-background {
  753. padding: 16px 16px;
  754. }
  755. p.has-background:not(.has-background-background-color) a {
  756. color: currentColor;
  757. }
  758. .wp-block-pullquote {
  759. border-top-color: var(--wp--preset--color--border);
  760. border-top-width: 4px;
  761. border-bottom-color: var(--wp--preset--color--border);
  762. border-bottom-width: 4px;
  763. color: var(--wp--preset--color--foreground);
  764. }
  765. .wp-block-pullquote blockquote p {
  766. font-family: "Source Sans Pro", Arial, sans-serif;
  767. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  768. font-size: 1.2rem;
  769. letter-spacing: normal;
  770. line-height: 1.125;
  771. }
  772. .wp-block-pullquote.is-style-solid-color blockquote p {
  773. font-size: 1.2rem;
  774. }
  775. .wp-block-pullquote a {
  776. color: currentColor;
  777. }
  778. .wp-block-pullquote .wp-block-pullquote__citation,
  779. .wp-block-pullquote cite,
  780. .wp-block-pullquote footer {
  781. color: var(--wp--preset--color--foreground-low-contrast);
  782. font-size: 0.83333rem;
  783. letter-spacing: normal;
  784. }
  785. .wp-block-pullquote blockquote {
  786. padding-left: 0;
  787. }
  788. .wp-block-pullquote.is-style-solid-color {
  789. color: var(--wp--preset--color--background);
  790. }
  791. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  792. .wp-block-pullquote.is-style-solid-color cite,
  793. .wp-block-pullquote.is-style-solid-color footer {
  794. color: currentColor;
  795. }
  796. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  797. background-color: var(--wp--preset--color--primary);
  798. }
  799. .wp-block-quote {
  800. border-left-color: var(--wp--preset--color--primary);
  801. padding-left: 16px;
  802. }
  803. .wp-block-quote p {
  804. font-family: "Source Sans Pro", Arial, sans-serif;
  805. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  806. font-size: 1.2em;
  807. letter-spacing: normal;
  808. }
  809. .wp-block-quote.is-large, .wp-block-quote.is-style-large {
  810. border: none;
  811. padding: 0;
  812. }
  813. .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  814. font-family: "Source Sans Pro", Arial, sans-serif;
  815. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  816. font-size: 1.44em;
  817. letter-spacing: normal;
  818. line-height: 1.125;
  819. }
  820. .has-background:not(.has-background-background-color) .wp-block-quote,
  821. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  822. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  823. .wp-block-cover[style*="background-image"] .wp-block-quote {
  824. border-color: currentColor;
  825. }
  826. .wp-block-quote .wp-block-quote__citation {
  827. color: var(--wp--preset--color--foreground-low-contrast);
  828. font-size: 0.83333em;
  829. letter-spacing: normal;
  830. }
  831. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  832. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  833. [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  834. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
  835. color: currentColor;
  836. }
  837. .wp-block-search {
  838. flex-wrap: wrap;
  839. }
  840. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  841. background: var(--wp--preset--color--white);
  842. color: var(--wp--preset--color--black);
  843. border: 1px solid var(--wp--preset--color--border);
  844. border-radius: 3px;
  845. }
  846. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  847. padding: calc( 0.33 * 16px);
  848. }
  849. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  850. padding: 16px 16px;
  851. }
  852. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  853. padding: 0;
  854. }
  855. .wp-block-search .wp-block-search__label {
  856. font-weight: normal;
  857. }
  858. .wp-block-search .wp-block-search__input {
  859. color: var(--wp--preset--color--black);
  860. border: 1px solid var(--wp--preset--color--border);
  861. border-radius: 3px;
  862. padding: calc( 0.33 * 16px);
  863. font-size: 1rem;
  864. line-height: 1rem;
  865. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  866. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  867. max-width: inherit;
  868. margin-right: calc( .66 * 16px);
  869. background: var(--wp--preset--color--white);
  870. }
  871. .wp-block-search .wp-block-search__input:focus {
  872. color: var(--wp--preset--color--black);
  873. border-color: var(--wp--preset--color--border);
  874. }
  875. .wp-block-search .wp-block-search__button {
  876. border: none;
  877. box-shadow: none;
  878. }
  879. .wp-block-search .wp-block-search__button.has-icon {
  880. transform: scaleX(-1);
  881. padding: 0;
  882. min-width: calc(2* 16px + 1rem + 4px);
  883. min-height: calc(2* 16px + 1rem + 4px);
  884. }
  885. .wp-block-search .wp-block-search__button.has-icon svg {
  886. fill: currentColor;
  887. width: 29px;
  888. height: 29px;
  889. }
  890. .wp-block-separator,
  891. hr {
  892. border-bottom: 2px solid var(--wp--preset--color--border);
  893. clear: both;
  894. }
  895. .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
  896. hr[style*="text-align:right"],
  897. hr[style*="text-align: right"] {
  898. border-right-color: var(--wp--preset--color--border);
  899. }
  900. .wp-block-separator.is-style-wide,
  901. hr.is-style-wide {
  902. border-bottom-width: 2px;
  903. }
  904. .wp-block-separator.is-style-dots,
  905. hr.is-style-dots {
  906. border-bottom: none;
  907. }
  908. .wp-block-separator.is-style-dots.has-background, .wp-block-separator.is-style-dots.has-text-color,
  909. hr.is-style-dots.has-background,
  910. hr.is-style-dots.has-text-color {
  911. background-color: transparent !important;
  912. }
  913. .wp-block-separator.is-style-dots.has-background:before, .wp-block-separator.is-style-dots.has-text-color:before,
  914. hr.is-style-dots.has-background:before,
  915. hr.is-style-dots.has-text-color:before {
  916. color: currentColor !important;
  917. }
  918. .wp-block-separator.is-style-dots:before,
  919. hr.is-style-dots:before {
  920. color: var(--wp--preset--color--border);
  921. }
  922. .has-background:not(.has-background-background-color) .wp-block-separator,
  923. [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  924. [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
  925. .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
  926. hr,
  927. [class*="background-color"]:not(.has-background-background-color)
  928. hr,
  929. [style*="background-color"]:not(.has-background-background-color)
  930. hr,
  931. .wp-block-cover[style*="background-image"]
  932. hr {
  933. border-color: currentColor;
  934. }
  935. table th,
  936. .wp-block-table th {
  937. font-family: "Oswald", sans-serif;
  938. font-family: var(--font-headings, "Oswald", sans-serif);
  939. }
  940. table td,
  941. table th,
  942. .wp-block-table td,
  943. .wp-block-table th {
  944. padding: calc( 0.5 * 16px);
  945. }
  946. table.is-style-stripes tbody tr:nth-child(odd),
  947. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  948. background-color: var(--wp--preset--color--border-low-contrast);
  949. color: var(--wp--preset--color--foreground);
  950. }
  951. pre.wp-block-verse {
  952. font-family: monospace, monospace;
  953. color: var(--wp--preset--color--foreground);
  954. }
  955. /**
  956. * Editor Post Title
  957. * - Needs a special styles
  958. */
  959. .editor-post-title__block .editor-post-title__input {
  960. color: var(--wp--preset--color--foreground);
  961. font-family: "Oswald", sans-serif;
  962. font-family: var(--font-headings, "Oswald", sans-serif);
  963. font-weight: 300;
  964. font-size: 1.728;
  965. letter-spacing: normal;
  966. line-height: 1.125;
  967. }
  968. .wp-block .has-primary-color,
  969. .has-primary-color {
  970. color: var(--wp--preset--color--primary);
  971. }
  972. .wp-block .has-secondary-color,
  973. .has-secondary-color {
  974. color: var(--wp--preset--color--secondary);
  975. }
  976. .wp-block .has-foreground-color,
  977. .has-foreground-color {
  978. color: var(--wp--preset--color--foreground);
  979. }
  980. .wp-block .has-foreground-light-color,
  981. .has-foreground-light-color {
  982. color: var(--wp--preset--color--foreground-low-contrast);
  983. }
  984. .wp-block .has-foreground-dark-color,
  985. .has-foreground-dark-color {
  986. color: var(--wp--preset--color--foreground-high-contrast);
  987. }
  988. .wp-block .has-background-light-color,
  989. .has-background-light-color {
  990. color: var(--wp--preset--color--background-high-contrast);
  991. }
  992. .wp-block .has-background-dark-color,
  993. .has-background-dark-color {
  994. color: var(--wp--preset--color--background-low-contrast);
  995. }
  996. .wp-block .has-background-color,
  997. .has-background-color {
  998. color: var(--wp--preset--color--background);
  999. }
  1000. .wp-block .has-tertiary-color,
  1001. .has-tertiary-color {
  1002. color: var(--wp--preset--color--tertiary);
  1003. }
  1004. .has-background p:not(.has-text-color),
  1005. .has-background h1:not(.has-text-color),
  1006. .has-background h2:not(.has-text-color),
  1007. .has-background h3:not(.has-text-color),
  1008. .has-background h4:not(.has-text-color),
  1009. .has-background h5:not(.has-text-color),
  1010. .has-background h6:not(.has-text-color) {
  1011. color: currentColor;
  1012. }
  1013. .has-primary-background-color,
  1014. .has-primary-background-color.has-background-dim {
  1015. background-color: var(--wp--preset--color--primary);
  1016. color: var(--wp--preset--color--background);
  1017. }
  1018. .has-primary-background-color:not(.has-text-color),
  1019. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  1020. color: var(--wp--preset--color--background);
  1021. }
  1022. .has-secondary-background-color,
  1023. .has-secondary-background-color.has-background-dim {
  1024. background-color: var(--wp--preset--color--secondary);
  1025. }
  1026. .has-secondary-background-color:not(.has-text-color),
  1027. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  1028. color: var(--wp--preset--color--background);
  1029. }
  1030. .has-background-dim,
  1031. .has-foreground-background-color,
  1032. .has-foreground-background-color.has-background-dim {
  1033. background-color: var(--wp--preset--color--foreground);
  1034. }
  1035. .has-background-dim,
  1036. .has-foreground-background-color,
  1037. .has-foreground-background-color.has-background-dim {
  1038. color: var(--wp--preset--color--background);
  1039. }
  1040. .has-foreground-light-background-color,
  1041. .has-foreground-light-background-color.has-background-dim {
  1042. background-color: var(--wp--preset--color--foreground-low-contrast);
  1043. }
  1044. .has-foreground-light-background-color:not(.has-text-color),
  1045. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  1046. color: var(--wp--preset--color--background);
  1047. }
  1048. .has-foreground-dark-background-color,
  1049. .has-foreground-dark-background-color.has-background-dim {
  1050. background-color: var(--wp--preset--color--foreground-high-contrast);
  1051. }
  1052. .has-foreground-dark-background-color:not(.has-text-color),
  1053. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  1054. color: var(--wp--preset--color--background);
  1055. }
  1056. .has-background-light-background-color,
  1057. .has-background-light-background-color.has-background-dim {
  1058. background-color: var(--wp--preset--color--background-high-contrast);
  1059. }
  1060. .has-background-light-background-color:not(.has-text-color),
  1061. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  1062. color: var(--wp--preset--color--foreground);
  1063. }
  1064. .has-background-dark-background-color,
  1065. .has-background-dark-background-color.has-background-dim {
  1066. background-color: var(--wp--preset--color--background-low-contrast);
  1067. }
  1068. .has-background-dark-background-color:not(.has-text-color),
  1069. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  1070. color: var(--wp--preset--color--foreground);
  1071. }
  1072. .has-background-background-color,
  1073. .has-background-background-color.has-background-dim {
  1074. background-color: var(--wp--preset--color--background);
  1075. color: var(--wp--preset--color--foreground);
  1076. }
  1077. .has-background-background-color:not(.has-text-color),
  1078. .has-background-background-color.has-background-dim:not(.has-text-color) {
  1079. color: var(--wp--preset--color--foreground);
  1080. }
  1081. .has-tertiary-background-color,
  1082. .has-tertiary-background-color.has-background-dim {
  1083. background-color: var(--wp--preset--color--tertiary);
  1084. }
  1085. .has-tertiary-background-color:not(.has-text-color),
  1086. .has-tertiary-background-color.has-background-dim:not(.has-text-color) {
  1087. color: var(--wp--preset--color--foreground);
  1088. }
  1089. .is-small-text,
  1090. .has-small-font-size {
  1091. font-size: 0.83333;
  1092. }
  1093. .is-regular-text,
  1094. .has-regular-font-size,
  1095. .has-normal-font-size,
  1096. .has-medium-font-size {
  1097. font-size: 1.2;
  1098. }
  1099. .is-large-text,
  1100. .has-large-font-size {
  1101. font-size: 1.44;
  1102. line-height: 1.125;
  1103. }
  1104. .is-larger-text,
  1105. .has-larger-font-size,
  1106. .has-huge-font-size {
  1107. font-size: 1.728;
  1108. line-height: 1.125;
  1109. }
  1110. .has-drop-cap:not(:focus)::first-letter {
  1111. font-family: "Oswald", sans-serif;
  1112. font-family: var(--font-headings, "Oswald", sans-serif);
  1113. font-size: calc(2 * 2.0736em);
  1114. font-weight: 300;
  1115. }
  1116. /**
  1117. * Spacing Overrides
  1118. */
  1119. [data-block] {
  1120. margin-top: 21.312px;
  1121. margin-bottom: 21.312px;
  1122. }
  1123. @media only screen and (min-width: 560px) {
  1124. [data-block] {
  1125. margin-top: 32px;
  1126. margin-bottom: 32px;
  1127. }
  1128. }
  1129. /*
  1130. * Margins
  1131. */
  1132. .margin-top-none {
  1133. margin-top: 0 !important;
  1134. }
  1135. .margin-top-half {
  1136. margin-top: 16px !important;
  1137. }
  1138. .margin-top-default {
  1139. margin-top: 32px !important;
  1140. }
  1141. .margin-right-none {
  1142. /*rtl:ignore*/
  1143. margin-right: 0 !important;
  1144. }
  1145. .margin-right-half {
  1146. /*rtl:ignore*/
  1147. margin-right: 16px !important;
  1148. }
  1149. .margin-right-default {
  1150. /*rtl:ignore*/
  1151. margin-right: 32px !important;
  1152. }
  1153. .margin-bottom-none {
  1154. margin-bottom: 0 !important;
  1155. }
  1156. .margin-bottom-half {
  1157. margin-bottom: 16px !important;
  1158. }
  1159. .margin-bottom-default {
  1160. margin-bottom: 32px !important;
  1161. }
  1162. .margin-left-none {
  1163. /*rtl:ignore*/
  1164. margin-left: 0 !important;
  1165. }
  1166. .margin-left-half {
  1167. /*rtl:ignore*/
  1168. margin-left: 16px !important;
  1169. }
  1170. .margin-left-default {
  1171. /*rtl:ignore*/
  1172. margin-left: 32px !important;
  1173. }
  1174. /*
  1175. * Padding
  1176. */
  1177. .padding-top-none {
  1178. padding-top: 0 !important;
  1179. }
  1180. .padding-top-half {
  1181. padding-top: 16px !important;
  1182. }
  1183. .padding-top-default {
  1184. padding-top: 32px !important;
  1185. }
  1186. .padding-right-none {
  1187. /*rtl:ignore*/
  1188. padding-right: 0 !important;
  1189. }
  1190. .padding-right-half {
  1191. /*rtl:ignore*/
  1192. padding-right: 16px !important;
  1193. }
  1194. .padding-right-default {
  1195. /*rtl:ignore*/
  1196. padding-right: 32px !important;
  1197. }
  1198. .padding-bottom-none {
  1199. padding-bottom: 0 !important;
  1200. }
  1201. .padding-bottom-half {
  1202. padding-bottom: 16px !important;
  1203. }
  1204. .padding-bottom-default {
  1205. padding-bottom: 32px !important;
  1206. }
  1207. .padding-left-none {
  1208. /*rtl:ignore*/
  1209. padding-left: 0 !important;
  1210. }
  1211. .padding-left-half {
  1212. /*rtl:ignore*/
  1213. padding-left: 16px !important;
  1214. }
  1215. .padding-left-default {
  1216. /*rtl:ignore*/
  1217. padding-left: 32px !important;
  1218. }
  1219. /**
  1220. * Vendors
  1221. * - Styles for 3rd party plugins and WP extensions
  1222. */
  1223. /**
  1224. * Vendors
  1225. * - 3rd-party compatibility styles
  1226. */
  1227. /**
  1228. * Set Jetpack form text color
  1229. */
  1230. .jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
  1231. color: var(--wp--preset--color--black);
  1232. }
  1233. /**
  1234. * Extra Editor Styles
  1235. *
  1236. * 1. General Styles
  1237. * 2. Block Specific Styles
  1238. * 2.1. Column Block
  1239. * 2.2. Quote Block
  1240. * 2.3. File Block
  1241. * 2.4. Pre Block and Verse Block
  1242. * 2.5. Button Block
  1243. * 2.6. Search Block
  1244. */
  1245. .editor-post-title__input {
  1246. text-align: center;
  1247. }
  1248. /**
  1249. * 1. General Styles
  1250. */
  1251. body {
  1252. background-color: var(--wp--preset--color--white);
  1253. font-weight: 300;
  1254. }
  1255. a {
  1256. text-decoration: none;
  1257. }
  1258. /**
  1259. * 2. Block Specific Styles
  1260. */
  1261. /**
  1262. * 2.1. Column Block
  1263. */
  1264. .wp-block-coblocks-column h1,
  1265. .wp-block-coblocks-column h2,
  1266. .wp-block-coblocks-column h3,
  1267. .wp-block-coblocks-column h4,
  1268. .wp-block-coblocks-column h5,
  1269. .wp-block-coblocks-column h6 {
  1270. margin-bottom: .857em;
  1271. }
  1272. .wp-block-coblocks-column a {
  1273. color: var(--wp--preset--color--secondary);
  1274. }
  1275. .wp-block-coblocks-column a:hover {
  1276. color: var(--wp--preset--color--secondary-hover);
  1277. }
  1278. /**
  1279. * 2.2. Quote Block
  1280. */
  1281. .wp-block-quote,
  1282. .wp-block-quote[style*="text-align:center"],
  1283. .wp-block-quote[style*="text-align:right"] {
  1284. border: 1px solid #f2f2f2;
  1285. padding: 16px;
  1286. }
  1287. .wp-block-quote p,
  1288. .wp-block-quote[style*="text-align:center"] p,
  1289. .wp-block-quote[style*="text-align:right"] p {
  1290. font-family: "Source Sans Pro", Arial, sans-serif;
  1291. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1292. }
  1293. .wp-block-quote .wp-block-quote__citation,
  1294. .wp-block-quote[style*="text-align:center"] .wp-block-quote__citation,
  1295. .wp-block-quote[style*="text-align:right"] .wp-block-quote__citation {
  1296. color: var(--wp--preset--color--secondary);
  1297. }
  1298. /**
  1299. * 2.3. File Block
  1300. */
  1301. .wp-block-file div.wp-block-file__button {
  1302. text-transform: uppercase;
  1303. line-height: 1;
  1304. color: var(--wp--preset--color--background);
  1305. cursor: pointer;
  1306. font-weight: 600;
  1307. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1308. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1309. font-size: 0.69444rem;
  1310. background-color: var(--wp--preset--color--secondary);
  1311. border-radius: 9px;
  1312. border-width: 2px;
  1313. padding: 16px 16px;
  1314. display: inline-block;
  1315. }
  1316. .wp-block-file div.wp-block-file__button:focus, .wp-block-file div.wp-block-file__button:hover, .wp-block-file div.wp-block-file__button:visited {
  1317. color: var(--wp--preset--color--background);
  1318. background-color: var(--wp--preset--color--secondary-hover);
  1319. opacity: 1;
  1320. }
  1321. /**
  1322. * 2.4. Pre Block and Verse Block
  1323. */
  1324. .wp-block-preformatted pre,
  1325. .wp-block-verse pre {
  1326. font-family: "Courier 10 Pitch", Courier, monospace;
  1327. }
  1328. /**
  1329. * 2.5. Button Block
  1330. */
  1331. .wp-block-button div.wp-block-button__link {
  1332. text-transform: uppercase;
  1333. }
  1334. /**
  1335. * 2.6. Search Block
  1336. */
  1337. .wp-block-search .wp-block-search__button {
  1338. text-transform: uppercase;
  1339. line-height: 1;
  1340. color: var(--wp--preset--color--background);
  1341. cursor: pointer;
  1342. font-weight: 600;
  1343. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1344. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1345. font-size: 0.69444rem;
  1346. background-color: var(--wp--preset--color--secondary);
  1347. border-radius: 9px;
  1348. border-width: 2px;
  1349. padding: 16px 16px;
  1350. display: inline-block;
  1351. border: none;
  1352. box-shadow: none;
  1353. }
  1354. .wp-block-search .wp-block-search__button:focus, .wp-block-search .wp-block-search__button:hover, .wp-block-search .wp-block-search__button:visited {
  1355. color: var(--wp--preset--color--background);
  1356. background-color: var(--wp--preset--color--secondary-hover);
  1357. opacity: 1;
  1358. }
  1359. .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 {
  1360. text-decoration: none;
  1361. }
  1362. .wp-block-a8c-blog-posts .cat-links a,
  1363. .wp-block-a8c-blog-posts .more-link,
  1364. .wp-block-a8c-blog-posts .entry-meta a {
  1365. text-decoration: none;
  1366. }
  1367. .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,
  1368. .wp-block-a8c-blog-posts .more-link:active,
  1369. .wp-block-a8c-blog-posts .more-link:focus,
  1370. .wp-block-a8c-blog-posts .more-link:hover,
  1371. .wp-block-a8c-blog-posts .entry-meta a:active,
  1372. .wp-block-a8c-blog-posts .entry-meta a:focus,
  1373. .wp-block-a8c-blog-posts .entry-meta a:hover {
  1374. text-decoration: underline;
  1375. }
  1376. .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 {
  1377. text-decoration: underline;
  1378. }
  1379. .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,
  1380. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:active,
  1381. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:focus,
  1382. [class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a:hover,
  1383. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:active,
  1384. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:focus,
  1385. [style*="background-color"] .wp-block-a8c-blog-posts .entry-title a:hover {
  1386. text-decoration: underline;
  1387. }
  1388. .wp-block-a8c-blog-posts + .button {
  1389. font-size: 0.69444em;
  1390. }
  1391. /**
  1392. * Full Site Editing
  1393. * - Full Site Editing overrides
  1394. */
  1395. @media (min-width: 600px) {
  1396. .a8c-template-editor .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] {
  1397. margin-left: 0;
  1398. margin-right: 0;
  1399. }
  1400. }
  1401. .a8c-template-editor .block-editor-block-list__block-edit [data-block] {
  1402. margin: 12px 0 0 0;
  1403. }
  1404. .template-block .fse-template-part {
  1405. padding: 16px;
  1406. }
  1407. @media only screen and (min-width: 560px) {
  1408. .template-block .fse-template-part {
  1409. padding: 32px 0;
  1410. }
  1411. }
  1412. .template-block .fse-template-part figure.fse-site-logo {
  1413. width: auto;
  1414. }
  1415. .template-block .fse-template-part .block-list-appender {
  1416. display: none;
  1417. }
  1418. .template-block .fse-template-part .wp-block-column .block-editor-block-list__layout [data-type='a8c/site-title']:first-child .site-title {
  1419. margin-top: 0;
  1420. }
  1421. .fse-template-part .wp-block-cover .site-title,
  1422. .fse-template-part .wp-block-cover .site-description,
  1423. .fse-template-part .wp-block-cover-image .site-title,
  1424. .fse-template-part .wp-block-cover-image .site-description {
  1425. background: transparent;
  1426. color: inherit;
  1427. }
  1428. .fse-template-part .block-editor-block-list__layout .block-editor-block-list__block[data-align='full'] > .block-editor-block-list__block-edit figure.fse-site-logo {
  1429. width: auto;
  1430. }
  1431. .fse-template-part .wp-block-column {
  1432. width: 100%;
  1433. }
  1434. .fse-template-part .wp-block-columns .wp-block-column > * {
  1435. margin: 0 0 5px 0;
  1436. }
  1437. .fse-template-part .main-navigation {
  1438. color: var(--wp--preset--color--foreground);
  1439. }
  1440. .fse-template-part .main-navigation > div {
  1441. display: none;
  1442. }
  1443. .fse-template-part .main-navigation #toggle-menu {
  1444. display: inline-block;
  1445. margin: 0;
  1446. }
  1447. .fse-template-part .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  1448. display: block;
  1449. }
  1450. .fse-template-part .main-navigation #toggle:focus + #toggle-menu {
  1451. background-color: var(--wp--preset--color--primary-hover);
  1452. outline: inherit;
  1453. text-decoration: underline;
  1454. }
  1455. .fse-template-part .main-navigation .dropdown-icon.close {
  1456. display: none;
  1457. }
  1458. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .open {
  1459. display: none;
  1460. }
  1461. .fse-template-part .main-navigation #toggle:checked + #toggle-menu .close {
  1462. display: inline;
  1463. }
  1464. @media only screen and (min-width: 560px) {
  1465. .fse-template-part .main-navigation > div {
  1466. display: inline-block;
  1467. }
  1468. .fse-template-part .main-navigation #toggle-menu {
  1469. display: none;
  1470. }
  1471. .fse-template-part .main-navigation > div > ul > li > ul {
  1472. display: none;
  1473. }
  1474. }
  1475. .fse-template-part .main-navigation > div > ul {
  1476. display: flex;
  1477. flex-wrap: wrap;
  1478. list-style: none;
  1479. margin: 0;
  1480. max-width: none;
  1481. padding-left: 0;
  1482. position: relative;
  1483. /* Sub-menus Flyout */
  1484. }
  1485. .fse-template-part .main-navigation > div > ul ul {
  1486. padding-left: 0;
  1487. }
  1488. .fse-template-part .main-navigation > div > ul li {
  1489. display: block;
  1490. position: relative;
  1491. width: 100%;
  1492. z-index: 1;
  1493. }
  1494. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li[focus-within] {
  1495. cursor: pointer;
  1496. z-index: 99999;
  1497. }
  1498. .fse-template-part .main-navigation > div > ul li:hover, .fse-template-part .main-navigation > div > ul li:focus-within {
  1499. cursor: pointer;
  1500. z-index: 99999;
  1501. }
  1502. @media only screen and (min-width: 560px) {
  1503. .fse-template-part .main-navigation > div > ul li {
  1504. display: inherit;
  1505. width: inherit;
  1506. /* Submenu display */
  1507. }
  1508. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1509. .fse-template-part .main-navigation > div > ul li[focus-within] > ul,
  1510. .fse-template-part .main-navigation > div > ul li ul:hover,
  1511. .fse-template-part .main-navigation > div > ul li ul:focus {
  1512. visibility: visible;
  1513. opacity: 1;
  1514. display: block;
  1515. }
  1516. .fse-template-part .main-navigation > div > ul li:hover > ul,
  1517. .fse-template-part .main-navigation > div > ul li:focus-within > ul,
  1518. .fse-template-part .main-navigation > div > ul li ul:hover,
  1519. .fse-template-part .main-navigation > div > ul li ul:focus {
  1520. visibility: visible;
  1521. opacity: 1;
  1522. display: block;
  1523. }
  1524. }
  1525. @media only screen and (min-width: 560px) {
  1526. .fse-template-part .main-navigation > div > ul > li > a {
  1527. line-height: 1;
  1528. }
  1529. .fse-template-part .main-navigation > div > ul > li > a:before, .fse-template-part .main-navigation > div > ul > li > a:after {
  1530. content: '';
  1531. display: block;
  1532. height: 0;
  1533. width: 0;
  1534. }
  1535. .fse-template-part .main-navigation > div > ul > li > a:before {
  1536. margin-bottom: -0.12em;
  1537. }
  1538. .fse-template-part .main-navigation > div > ul > li > a:after {
  1539. margin-top: -0.11em;
  1540. }
  1541. .fse-template-part .main-navigation > div > ul > li:first-of-type > a {
  1542. padding-left: 0;
  1543. }
  1544. .fse-template-part .main-navigation > div > ul > li:last-of-type > a {
  1545. padding-right: 0;
  1546. }
  1547. }
  1548. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1549. margin: 0;
  1550. position: relative;
  1551. }
  1552. @media only screen and (min-width: 560px) {
  1553. .fse-template-part .main-navigation > div > ul > li > .sub-menu {
  1554. background: var(--wp--preset--color--background);
  1555. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  1556. left: 0;
  1557. top: 100%;
  1558. min-width: max-content;
  1559. opacity: 0;
  1560. position: absolute;
  1561. transition: all 0.5s ease;
  1562. visibility: hidden;
  1563. }
  1564. }
  1565. .fse-template-part .main-navigation > div > ul > li > .sub-menu .sub-menu {
  1566. width: 100%;
  1567. }
  1568. .fse-template-part .main-navigation a {
  1569. color: var(--wp--preset--color--primary);
  1570. display: block;
  1571. font-family: "Source Sans Pro", Arial, sans-serif;
  1572. font-family: var(--font-base, "Source Sans Pro", Arial, sans-serif);
  1573. font-weight: 700;
  1574. padding: 8px 0;
  1575. }
  1576. @media only screen and (min-width: 560px) {
  1577. .fse-template-part .main-navigation a {
  1578. padding: 16px;
  1579. }
  1580. }
  1581. .fse-template-part .main-navigation a:link, .fse-template-part .main-navigation a:visited {
  1582. color: var(--wp--preset--color--primary);
  1583. }
  1584. .fse-template-part .main-navigation a:hover {
  1585. color: var(--wp--preset--color--primary-hover);
  1586. }
  1587. .fse-template-part .main-navigation .sub-menu {
  1588. list-style: none;
  1589. margin-left: 0;
  1590. /* Reset the counter for each UL */
  1591. counter-reset: nested-list;
  1592. }
  1593. .fse-template-part .main-navigation .sub-menu .menu-item a {
  1594. padding-top: 8px;
  1595. padding-bottom: 8px;
  1596. }
  1597. .fse-template-part .main-navigation .sub-menu .menu-item a::before {
  1598. /* Increment the dashes */
  1599. counter-increment: nested-list;
  1600. /* Insert dashes with spaces in between */
  1601. content: "– " counters(nested-list, "– ", none);
  1602. }
  1603. @media only screen and (min-width: 560px) {
  1604. .fse-template-part .main-navigation > div > ul > .menu-item-has-children > a::after {
  1605. content: "\00a0\25BC";
  1606. display: inline-block;
  1607. font-size: 0.69444rem;
  1608. height: inherit;
  1609. width: inherit;
  1610. }
  1611. }
  1612. .fse-template-part .main-navigation .hide-visually {
  1613. position: absolute !important;
  1614. clip: rect(1px, 1px, 1px, 1px);
  1615. padding: 0 !important;
  1616. border: 0 !important;
  1617. height: 1px !important;
  1618. width: 1px !important;
  1619. overflow: hidden;
  1620. }
  1621. .fse-template-part body:not(.fse-enabled) .main-navigation a {
  1622. font-size: 1.2rem;
  1623. }
  1624. .fse-template-part .main-navigation {
  1625. text-align: center;
  1626. /**
  1627. * Button Placeholder style
  1628. * - Since buttons appear in various blocks,
  1629. * let’s use a placeholder to keep them all
  1630. * in-sync
  1631. */
  1632. /**
  1633. * Onsale Placeholder style
  1634. * - Since buttons appear in various blocks,
  1635. * let’s use a placeholder to keep them all
  1636. * in-sync
  1637. */
  1638. }
  1639. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  1640. width: 100%;
  1641. }
  1642. .fse-template-part .main-navigation .wp-block-button__link,
  1643. .fse-template-part .main-navigation .wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button, .fse-template-part .main-navigation .button {
  1644. line-height: 1;
  1645. color: var(--wp--preset--color--background);
  1646. cursor: pointer;
  1647. font-weight: 600;
  1648. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  1649. font-family: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
  1650. font-size: 0.69444rem;
  1651. background-color: var(--wp--preset--color--secondary);
  1652. border-radius: 9px;
  1653. border-width: 0;
  1654. text-decoration: none;
  1655. padding: 16px 16px;
  1656. }
  1657. .fse-template-part .main-navigation .wp-block-button__link:before,
  1658. .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before, .fse-template-part .main-navigation .wp-block-button__link:after,
  1659. .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  1660. content: '';
  1661. display: block;
  1662. height: 0;
  1663. width: 0;
  1664. }
  1665. .fse-template-part .main-navigation .wp-block-button__link:before,
  1666. .fse-template-part .main-navigation .wp-block-file__button:before, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:before, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:before, .fse-template-part .main-navigation .button:before {
  1667. margin-bottom: -0.12em;
  1668. }
  1669. .fse-template-part .main-navigation .wp-block-button__link:after,
  1670. .fse-template-part .main-navigation .wp-block-file__button:after, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:after, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:after, .fse-template-part .main-navigation .button:after {
  1671. margin-top: -0.11em;
  1672. }
  1673. .fse-template-part .main-navigation .wp-block-button__link:not(.has-background):hover,
  1674. .fse-template-part .main-navigation .wp-block-file__button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:not(.has-background):hover, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:not(.has-background):hover, .fse-template-part .main-navigation .button:not(.has-background):hover, .fse-template-part .main-navigation .wp-block-button__link:focus,
  1675. .fse-template-part .main-navigation .wp-block-file__button:focus, .fse-template-part .main-navigation .wp-block-search .wp-block-search__button:focus, .wp-block-search .fse-template-part .main-navigation .wp-block-search__button:focus, .fse-template-part .main-navigation .button:focus, .fse-template-part .main-navigation .has-focus.wp-block-button__link,
  1676. .fse-template-part .main-navigation .has-focus.wp-block-file__button, .fse-template-part .main-navigation .wp-block-search .has-focus.wp-block-search__button, .wp-block-search .fse-template-part .main-navigation .has-focus.wp-block-search__button, .fse-template-part .main-navigation .has-focus.button {
  1677. color: var(--wp--preset--color--background);
  1678. background-color: var(--wp--preset--color--secondary-hover);
  1679. }
  1680. .fse-template-part .main-navigation .main-menu.footer-menu li a {
  1681. font-size: inherit;
  1682. }
  1683. .fse-template-part .main-navigation .main-menu.footer-menu li.menu-item-has-children > a::after {
  1684. font-size: 0.6em;
  1685. vertical-align: middle;
  1686. }
  1687. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  1688. color: inherit;
  1689. }
  1690. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  1691. justify-content: flex-start;
  1692. }
  1693. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  1694. justify-content: center;
  1695. }
  1696. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  1697. justify-content: flex-end;
  1698. }
  1699. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  1700. padding: 16px;
  1701. }
  1702. @media only screen and (min-width: 560px) {
  1703. .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block.is-selected:first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
  1704. margin-top: 14px;
  1705. }
  1706. .a8c-template-editor.fse-header .block-editor-block-list__layout > .block-editor-block-list__block:not(.is-selected):first-child[data-align='full'] > .block-editor-block-list__block-edit > [data-block] {
  1707. margin-top: 0;
  1708. }
  1709. }
  1710. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1711. margin-top: -16px;
  1712. }
  1713. @media only screen and (min-width: 560px) {
  1714. .template-block .fse-header .block-editor-block-list__layout > .block-editor-block-list__block:first-child[data-align='full'] {
  1715. margin-top: -32px;
  1716. }
  1717. }
  1718. .post-content__block {
  1719. margin-bottom: 160px;
  1720. margin-top: 36px;
  1721. z-index: 20;
  1722. }
  1723. .fse-template-part .has-normal-font-size {
  1724. font-size: 1.2rem;
  1725. }
  1726. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  1727. width: 100%;
  1728. }
  1729. .fse-template-part .main-navigation a {
  1730. text-decoration: none;
  1731. text-transform: uppercase;
  1732. }
  1733. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  1734. padding: 0;
  1735. }
  1736. .fse-template-part.fse-header .main-navigation {
  1737. border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  1738. }
  1739. @media only screen and (min-width: 560px) {
  1740. .fse-template-part.fse-header .main-navigation div ul li a::after {
  1741. color: #ffa4ad;
  1742. content: " \2022";
  1743. margin-left: 16px;
  1744. display: inline;
  1745. }
  1746. .fse-template-part.fse-header .main-navigation div ul li:last-child a::after {
  1747. content: "";
  1748. margin-left: 0;
  1749. }
  1750. }
  1751. .fse-template-part .wp-block-cover .site-title,
  1752. .fse-template-part .wp-block-cover-image .site-title {
  1753. font-weight: 300;
  1754. }
  1755. .fse-template-part .wp-block-cover .has-background,
  1756. .fse-template-part .wp-block-cover-image .has-background {
  1757. text-shadow: none;
  1758. }
  1759. .template-block .wp-block-social-links {
  1760. margin-top: 20px;
  1761. }
  1762. .post-content__block {
  1763. margin-top: -36px;
  1764. }