style-editor.css 46 KB

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