ponyfill.css 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045
  1. /**
  2. * Base
  3. * - Reset the browser
  4. */
  5. body {
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. }
  9. * {
  10. box-sizing: border-box;
  11. }
  12. pre {
  13. overflow: scroll;
  14. }
  15. /**
  16. * Breakpoints & Media Queries
  17. */
  18. /**
  19. * Converts a hex value into the rgb equivalent.
  20. *
  21. * @param {string} hex - the hexadecimal value to convert
  22. * @return {string} comma separated rgb values
  23. */
  24. /**
  25. * Breakpoint mixins
  26. */
  27. /**
  28. * Long content fade mixin
  29. *
  30. * Creates a fading overlay to signify that the content is longer
  31. * than the space allows.
  32. */
  33. /**
  34. * Focus styles.
  35. */
  36. /**
  37. * Applies editor left position to the selector passed as argument
  38. */
  39. /**
  40. * Styles that are reused verbatim in a few places
  41. */
  42. /**
  43. * Allows users to opt-out of animations via OS-level preferences.
  44. */
  45. /**
  46. * Reset default styles for JavaScript UI based pages.
  47. * This is a WP-admin agnostic reset
  48. */
  49. /**
  50. * Reset the WP Admin page styles for Gutenberg-like pages.
  51. */
  52. @media (min-width: 480px) {
  53. .wp-block[data-align=left],
  54. .wp-block[data-align=right],
  55. .wp-site-blocks .alignleft,
  56. .wp-site-blocks .alignright {
  57. max-width: var(--wp--custom--alignment--aligned-max-width);
  58. }
  59. }
  60. .aligncenter {
  61. text-align: center;
  62. display: block;
  63. margin-right: auto;
  64. margin-left: auto;
  65. }
  66. /*
  67. * Alignment styles - from TT2
  68. * These rules are temporary, and should not be relied on or
  69. * modified too heavily by themes or plugins that build on
  70. * Twenty Twenty-Two. These are meant to be a precursor to
  71. * a global solution provided by the Block Editor.
  72. *
  73. * Relevant issues:
  74. * https://github.com/WordPress/gutenberg/issues/35607
  75. * https://github.com/WordPress/gutenberg/issues/35884
  76. */
  77. .wp-site-blocks,
  78. body > .is-root-container,
  79. .edit-post-visual-editor__post-title-wrapper,
  80. .wp-block-group.alignfull,
  81. .wp-block-group.has-background,
  82. .wp-block-columns.alignfull.has-background,
  83. .wp-block-cover.alignfull,
  84. .is-root-container .wp-block[data-align=full] > .wp-block-group,
  85. .is-root-container .wp-block[data-align=full] > .wp-block-columns.has-background,
  86. .is-root-container .wp-block[data-align=full] > .wp-block-cover {
  87. padding-left: var(--wp--custom--gap--horizontal);
  88. padding-right: var(--wp--custom--gap--horizontal);
  89. }
  90. .wp-site-blocks .alignfull,
  91. .wp-site-blocks > .wp-block-group.has-background,
  92. .wp-site-blocks > .wp-block-cover,
  93. .wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
  94. .wp-site-blocks > .wp-block-template-part > .wp-block-cover,
  95. body > .is-root-container > .wp-block-cover,
  96. body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
  97. body > .is-root-container > .wp-block-template-part > .wp-block-cover,
  98. .is-root-container .wp-block[data-align=full] {
  99. margin-left: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  100. margin-right: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
  101. max-width: unset;
  102. width: unset;
  103. }
  104. /* Blocks inside columns don't have negative margins. */
  105. .wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
  106. .is-root-container .wp-block-columns .wp-block-column .wp-block[data-align=full],
  107. .wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
  108. .is-root-container .wp-block[data-align=full] > *:not(.wp-block-group) .wp-block[data-align=full] {
  109. margin-left: auto !important;
  110. margin-right: auto !important;
  111. width: inherit;
  112. }
  113. /* Spacing for group blocks with a background color. */
  114. .wp-block-group.has-background {
  115. padding: var(--wp--custom--gap--vertical) var(--wp--custom--gap--horizontal);
  116. }
  117. .has-primary-background-color {
  118. background-color: var(--wp--custom--color--primary) !important;
  119. }
  120. .has-secondary-background-color {
  121. background-color: var(--wp--custom--color--secondary) !important;
  122. }
  123. .has-foreground-background-color {
  124. background-color: var(--wp--custom--color--foreground) !important;
  125. }
  126. .has-background-background-color {
  127. background-color: var(--wp--custom--color--background) !important;
  128. }
  129. .has-tertiary-background-color {
  130. background-color: var(--wp--custom--color--tertiary) !important;
  131. }
  132. .has-primary-color {
  133. color: var(--wp--custom--color--primary) !important;
  134. }
  135. .has-secondary-color {
  136. color: var(--wp--custom--color--secondary) !important;
  137. }
  138. .has-foreground-color {
  139. color: var(--wp--custom--color--foreground) !important;
  140. }
  141. .has-background-color {
  142. color: var(--wp--custom--color--background) !important;
  143. }
  144. .has-tertiary-color {
  145. color: var(--wp--custom--color--tertiary) !important;
  146. }
  147. @media (max-width: 599px) {
  148. .wp-site-blocks .site-header .site-brand {
  149. display: contents;
  150. }
  151. .wp-site-blocks .site-header .wp-block-site-logo {
  152. flex-basis: 100%;
  153. margin-bottom: calc(2 * var(--wp--custom--gap--vertical));
  154. margin-top: var(--wp--custom--gap--vertical);
  155. text-align: center;
  156. }
  157. }
  158. @media (max-width: 599px) {
  159. .wp-site-blocks .site-header-linear .site-words-stack-small {
  160. display: block;
  161. }
  162. }
  163. :root {
  164. --wpadmin-bar--height: 46px;
  165. }
  166. .wp-site-blocks {
  167. min-height: 100vh;
  168. display: flex;
  169. flex-direction: column;
  170. }
  171. .site-footer-container {
  172. margin-top: auto;
  173. }
  174. @media (min-width: 600px) {
  175. body.admin-bar {
  176. --wpadmin-bar--height: 32px;
  177. }
  178. }
  179. body.admin-bar .wp-site-blocks {
  180. min-height: calc(100vh - var(--wpadmin-bar--height));
  181. }
  182. .image-no-margin {
  183. margin: 0;
  184. }
  185. .image-no-margin * {
  186. vertical-align: bottom;
  187. }
  188. .has-background-no-padding.wp-block-columns.has-background {
  189. padding: 0;
  190. }
  191. .mt-0 {
  192. margin-top: 0 !important;
  193. }
  194. .gapless-group > * {
  195. margin-top: 0 !important;
  196. }
  197. /*
  198. Remove the normalized box-sizing: border-box when used with Woo's quantity field,
  199. because Woo limits the field's width to 50px,
  200. which leaves no space for the context between 50px and 20px padding and the spinner arrows (that come from type=number)
  201. See: https://github.com/Automattic/wp-calypso/issues/58958#issuecomment-1015263777
  202. */
  203. .quantity .qty {
  204. box-sizing: content-box;
  205. }
  206. /**
  207. * Elements
  208. * - Styles for basic HTML elemants
  209. */
  210. a,
  211. .wp-block-navigation a {
  212. cursor: pointer;
  213. text-underline-offset: 0.15em;
  214. text-decoration: none;
  215. }
  216. a:hover, a:focus,
  217. .wp-block-navigation a:hover,
  218. .wp-block-navigation a:focus {
  219. -webkit-text-decoration-line: underline;
  220. text-decoration-line: underline;
  221. }
  222. main.block-editor-block-list__layout a,
  223. .wp-block-post a {
  224. -webkit-text-decoration-line: underline;
  225. text-decoration-line: underline;
  226. }
  227. main.block-editor-block-list__layout a:hover, main.block-editor-block-list__layout a:focus,
  228. .wp-block-post a:hover,
  229. .wp-block-post a:focus {
  230. text-decoration: none;
  231. }
  232. a:not(.ab-item):not(.screen-reader-shortcut):active, a:not(.ab-item):not(.screen-reader-shortcut):focus {
  233. outline: 1px dotted currentColor;
  234. text-decoration: none;
  235. }
  236. input.wp-block-search__input,
  237. input[type=text],
  238. input[type=email],
  239. input[type=url],
  240. input[type=password],
  241. input[type=search],
  242. input[type=number],
  243. input[type=tel],
  244. input[type=range],
  245. input[type=date],
  246. input[type=month],
  247. input[type=week],
  248. input[type=time],
  249. input[type=datetime],
  250. input[type=datetime-local],
  251. input[type=color],
  252. textarea,
  253. select {
  254. background: var(--wp--custom--form--color--background);
  255. border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  256. border-radius: var(--wp--custom--form--border--radius);
  257. box-shadow: var(--wp--custom--form--color--box-shadow);
  258. color: var(--wp--custom--form--color--text);
  259. font-family: inherit;
  260. padding: var(--wp--custom--form--padding);
  261. }
  262. input.wp-block-search__input:focus,
  263. input[type=text]:focus,
  264. input[type=email]:focus,
  265. input[type=url]:focus,
  266. input[type=password]:focus,
  267. input[type=search]:focus,
  268. input[type=number]:focus,
  269. input[type=tel]:focus,
  270. input[type=range]:focus,
  271. input[type=date]:focus,
  272. input[type=month]:focus,
  273. input[type=week]:focus,
  274. input[type=time]:focus,
  275. input[type=datetime]:focus,
  276. input[type=datetime-local]:focus,
  277. input[type=color]:focus,
  278. textarea:focus,
  279. select:focus {
  280. border-color: var(--custom--form--color--border);
  281. color: var(--wp--custom--form--color--text);
  282. outline: 1px dotted currentcolor;
  283. outline-offset: 2px;
  284. }
  285. input[type=checkbox]:focus,
  286. input[type=submit]:focus,
  287. button:focus {
  288. outline: 1px dotted currentcolor;
  289. outline-offset: 2px;
  290. }
  291. input[type=checkbox]::placeholder,
  292. input[type=submit]::placeholder,
  293. button::placeholder {
  294. color: var(--wp--custom--form--color--text);
  295. opacity: 0.66;
  296. }
  297. select {
  298. font-size: 100%;
  299. }
  300. textarea {
  301. width: 100%;
  302. }
  303. input[type=checkbox] + label {
  304. display: inline;
  305. margin-left: 0.5em;
  306. line-height: 1em;
  307. }
  308. /**
  309. * Button
  310. */
  311. /**
  312. * Block Options
  313. */
  314. .wp-block-button.wp-block-button__link,
  315. .wp-block-button .wp-block-button__link, .wp-block-button__link.wp-block-button__link,
  316. .wp-block-button__link .wp-block-button__link {
  317. border-width: 0;
  318. padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  319. padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  320. padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  321. padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  322. text-decoration: none;
  323. font-weight: var(--wp--custom--button--typography--font-weight);
  324. }
  325. .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
  326. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
  327. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
  328. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
  329. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
  330. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
  331. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
  332. --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  333. --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  334. --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  335. opacity: 1;
  336. color: var(--wp--custom--button--color--text);
  337. background-color: var(--wp--custom--button--color--background);
  338. border-color: currentColor;
  339. border-color: var(--wp--custom--button--border--color);
  340. }
  341. .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
  342. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
  343. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
  344. .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button__link.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
  345. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
  346. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
  347. .wp-block-button__link .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
  348. fill: var(--wp--custom--button--color--text);
  349. }
  350. .wp-block-button.is-style-outline.wp-block-button__link,
  351. .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline.wp-block-button__link,
  352. .wp-block-button__link.is-style-outline .wp-block-button__link {
  353. --wp--custom--button--color--text: var(--wp--custom--button--border--color);
  354. --wp--custom--button--color--background: transparent;
  355. border-style: var(--wp--custom--button--border--style);
  356. border-width: var(--wp--custom--button--border--width);
  357. padding-top: var(--wp--custom--button--spacing--padding--top);
  358. padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
  359. padding-left: var(--wp--custom--button--spacing--padding--left);
  360. padding-right: var(--wp--custom--button--spacing--padding--right);
  361. opacity: 1;
  362. color: var(--wp--custom--button--color--text);
  363. background-color: var(--wp--custom--button--color--background);
  364. border-color: currentColor;
  365. }
  366. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
  367. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
  368. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
  369. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
  370. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
  371. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
  372. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
  373. --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  374. --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  375. --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  376. opacity: 1;
  377. color: var(--wp--custom--button--color--text);
  378. background-color: var(--wp--custom--button--color--background);
  379. border-color: currentColor;
  380. border-color: var(--wp--custom--button--border--color);
  381. }
  382. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
  383. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
  384. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
  385. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button__link.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
  386. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
  387. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
  388. .wp-block-button__link.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
  389. fill: var(--wp--custom--button--color--text);
  390. }
  391. .wp-block-button.is-style-outline.wp-block-button__link svg,
  392. .wp-block-button.is-style-outline .wp-block-button__link svg, .wp-block-button__link.is-style-outline.wp-block-button__link svg,
  393. .wp-block-button__link.is-style-outline .wp-block-button__link svg {
  394. fill: var(--wp--custom--button--color--text);
  395. }
  396. .wp-block-buttons .wp-block-button:last-child {
  397. margin-bottom: 0;
  398. }
  399. .wp-block-calendar table caption {
  400. color: var(--wp--custom--color--primary);
  401. }
  402. .wp-block-calendar table th {
  403. background-color: var(--wp--custom--color--tertiary);
  404. border-color: var(--wp--custom--color--tertiary);
  405. }
  406. .wp-block-calendar table td {
  407. color: var(--wp--custom--color--primary);
  408. border-color: var(--wp--custom--color--tertiary);
  409. }
  410. .wp-block-gallery .blocks-gallery-image figcaption,
  411. .wp-block-gallery .blocks-gallery-item figcaption {
  412. font-size: var(--wp--custom--gallery--caption--font-size);
  413. }
  414. .wp-block-image {
  415. /*
  416. From what I can tell the below are styles regularly used by themes
  417. to fix the image block. I believe these should go into the block's
  418. default styles. It's difficult to say how this will land, however
  419. based on discussion found in (many) related issues here:
  420. https://github.com/WordPress/gutenberg/issues/28923
  421. https://github.com/WordPress/gutenberg/issues/29506
  422. */
  423. text-align: center;
  424. }
  425. .wp-block-latest-posts .wp-block-latest-posts__post-date,
  426. .wp-block-latest-posts .wp-block-latest-posts__post-author {
  427. color: var(--wp--custom--latest-posts--meta--color--text);
  428. }
  429. .wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  430. background-color: var(--wp--custom--navigation--submenu--color--background);
  431. border: var(--wp--custom--navigation--submenu--border--width) var(--wp--custom--navigation--submenu--border--style) var(--wp--custom--navigation--submenu--border--color);
  432. }
  433. .wp-block-navigation .has-child .wp-block-navigation__submenu-container a {
  434. color: var(--wp--custom--navigation--submenu--color--text);
  435. }
  436. .wp-block-navigation.is-responsive:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
  437. background-color: var(--wp--custom--color--background);
  438. color: var(--wp--custom--color--foreground);
  439. padding-left: var(--wp--custom--gap--horizontal);
  440. padding-right: var(--wp--custom--gap--horizontal);
  441. }
  442. .wp-block-navigation.is-responsive ul.wp-block-social-links {
  443. margin: 0;
  444. gap: var(--wp--custom--gap--baseline);
  445. }
  446. .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container-close {
  447. right: var(--wp--custom--gap--horizontal);
  448. top: var(--wp--custom--gap--vertical);
  449. }
  450. .wp-block-navigation.is-responsive .is-menu-open {
  451. font-size: var(--wp--preset--font-size--medium);
  452. }
  453. .wp-block-navigation.is-responsive .is-menu-open .wp-block-navigation__responsive-container-content {
  454. align-items: flex-start;
  455. justify-content: space-between;
  456. flex-wrap: nowrap;
  457. }
  458. .wp-block-navigation.is-responsive .is-menu-open .wp-block-navigation__container {
  459. row-gap: 0.5rem;
  460. align-items: flex-start;
  461. flex: unset;
  462. padding-bottom: 0;
  463. }
  464. .wp-block-navigation.is-responsive .is-menu-open .wp-block-navigation-item {
  465. align-items: flex-start;
  466. }
  467. .wp-block-navigation.is-responsive .is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
  468. font-size: var(--wp--custom--font-sizes--normal);
  469. padding-bottom: 0;
  470. padding-left: var(--wp--custom--gap--horizontal);
  471. padding-top: 0.5rem;
  472. row-gap: 0.5rem;
  473. }
  474. .wp-block-navigation.is-responsive .is-menu-open ul.wp-block-social-links {
  475. justify-content: flex-start;
  476. }
  477. /* Additional styling for header-minimal */
  478. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container {
  479. font-size: var(--wp--preset--font-size--large);
  480. font-weight: 200;
  481. }
  482. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__container {
  483. row-gap: 1rem;
  484. }
  485. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
  486. align-items: flex-start;
  487. margin: 0 auto;
  488. max-width: 800px;
  489. flex-wrap: nowrap;
  490. }
  491. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .wp-block-navigation-item {
  492. row-gap: 0;
  493. }
  494. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .wp-block-navigation-item > a:hover {
  495. -webkit-text-decoration-line: underline;
  496. text-decoration-line: underline;
  497. }
  498. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .wp-block-navigation-item.current-menu-item > a {
  499. text-decoration: underline;
  500. }
  501. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  502. flex-grow: 1;
  503. justify-content: center;
  504. }
  505. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container ul.wp-block-social-links {
  506. padding-bottom: calc(var(--wp--custom--gap--vertical) * 2);
  507. }
  508. .wp-block-navigation.blockbase-responsive-navigation-minimal.is-responsive .is-menu-open.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
  509. font-size: var(--wp--preset--font-size--medium);
  510. }
  511. /* Additional Styling for header-linear */
  512. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-navigation-link a:hover {
  513. background: transparent;
  514. }
  515. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-pages-list__item .wp-block-pages-list__item__link,
  516. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-navigation-link__content {
  517. color: var(--wp--custom--color--foreground);
  518. }
  519. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-pages-list__item .wp-block-pages-list__item__link:hover,
  520. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-navigation-link__content:hover {
  521. text-decoration: underline;
  522. }
  523. .wp-block-navigation.blockbase-responsive-navigation-linear:not(.has-background) .wp-block-navigation__submenu-container {
  524. background-color: var(--wp--custom--color--background);
  525. border-color: var(--wp--custom--color--tertiary);
  526. }
  527. .wp-block-navigation.blockbase-responsive-navigation-linear .wp-block-navigation__mobile-menu-open-button {
  528. color: var(--wp--custom--color--primary);
  529. }
  530. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open {
  531. background-color: var(--wp--custom--color--tertiary);
  532. }
  533. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item,
  534. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item {
  535. font-size: var(--wp--custom--font-sizes--normal);
  536. line-height: 50px;
  537. margin: 0;
  538. align-items: flex-end;
  539. }
  540. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item.has-child .wp-block-pages-list__item__link,
  541. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item.has-child .wp-block-navigation-link__content,
  542. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item.has-child .wp-block-pages-list__item__link,
  543. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item.has-child .wp-block-navigation-link__content {
  544. margin-right: 0;
  545. }
  546. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item.has-child .wp-block-navigation__submenu-container,
  547. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
  548. gap: 0;
  549. padding: 0 19px 0 0;
  550. border-right: 1px solid var(--wp--custom--color--foreground);
  551. }
  552. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item.has-child .wp-block-navigation__submenu-container .wp-block-pages-list__item__link,
  553. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-pages-list__item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content,
  554. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-pages-list__item__link,
  555. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  556. padding: 0;
  557. font-size: var(--wp--custom--font-sizes--x-small);
  558. line-height: 40px;
  559. }
  560. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation__container {
  561. align-items: flex-end;
  562. }
  563. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open.has-modal-open .wp-block-navigation__responsive-container-content {
  564. flex-direction: row-reverse;
  565. }
  566. .wp-block-navigation.blockbase-responsive-navigation-linear.is-responsive .wp-block-navigation__responsive-container.is-menu-open .wp-block-social-links {
  567. flex-direction: column;
  568. }
  569. p.has-drop-cap:not(:focus)::first-letter {
  570. font-size: var(--wp--custom--paragraph--dropcap--typography--font-size);
  571. font-weight: var(--wp--custom--paragraph--dropcap--typography--font-weight);
  572. margin: var(--wp--custom--paragraph--dropcap--margin);
  573. }
  574. .wp-block-post-author__name {
  575. font-weight: var(--wp--custom--post-author--font-weight);
  576. }
  577. .wp-block-post-comments label, .wp-block-post-comments .comment-meta {
  578. font-size: var(--wp--custom--form--label--typography--font-size);
  579. }
  580. .wp-block-post-comments .reply {
  581. margin-top: var(--wp--custom--gap--vertical);
  582. margin-bottom: 0;
  583. }
  584. .wp-block-post-comments .reply a {
  585. display: inline-block;
  586. text-decoration: underline;
  587. }
  588. .wp-block-post-comments .reply a:hover {
  589. text-decoration: none;
  590. }
  591. .wp-block-post-comments form {
  592. display: grid;
  593. column-gap: 1em;
  594. grid-template-rows: auto;
  595. grid-template-areas: "misc misc" "notes notes" "author author" "email url" "comment comment" "cookies-consent cookies-consent" "form-submit form-submit";
  596. }
  597. .wp-block-post-comments form input:not([type=submit]):not([type=checkbox]),
  598. .wp-block-post-comments form textarea {
  599. font-size: var(--wp--custom--font-sizes--normal);
  600. background: var(--wp--custom--color--background);
  601. border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  602. width: 100%;
  603. }
  604. .wp-block-post-comments form textarea {
  605. vertical-align: top;
  606. }
  607. .wp-block-post-comments form label:not([for=wp-comment-cookies-consent]) {
  608. font-size: var(--wp--custom--form--label--typography--font-size);
  609. font-weight: var(--wp--custom--form--label--typography--font-weight);
  610. letter-spacing: var(--wp--custom--form--label--typography--letter-spacing);
  611. margin-bottom: var(--wp--custom--form--label--spacing--margin--bottom);
  612. text-transform: var(--wp--custom--form--label--typography--text-transform);
  613. }
  614. .wp-block-post-comments form p {
  615. margin-top: 0;
  616. margin-bottom: var(--wp--custom--gap--vertical);
  617. }
  618. .wp-block-post-comments form > * {
  619. grid-area: misc;
  620. }
  621. .wp-block-post-comments form .comment-notes {
  622. grid-area: notes;
  623. }
  624. .wp-block-post-comments form .comment-form-author {
  625. grid-area: author;
  626. }
  627. .wp-block-post-comments form .comment-form-email {
  628. grid-area: email;
  629. }
  630. .wp-block-post-comments form .comment-form-url {
  631. grid-area: url;
  632. }
  633. .wp-block-post-comments form .comment-form-comment {
  634. grid-area: comment;
  635. }
  636. .wp-block-post-comments form .comment-form-cookies-consent {
  637. grid-area: cookies-consent;
  638. }
  639. .wp-block-post-comments form .form-submit {
  640. grid-area: form-submit;
  641. }
  642. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox] {
  643. border: 0;
  644. clip: rect(1px, 1px, 1px, 1px);
  645. -webkit-clip-path: inset(50%);
  646. clip-path: inset(50%);
  647. height: 1px;
  648. margin: -1px;
  649. overflow: hidden;
  650. padding: 0;
  651. position: absolute;
  652. width: 1px;
  653. word-wrap: normal !important;
  654. margin-left: 0;
  655. }
  656. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox] + label {
  657. display: inline-block;
  658. line-height: calc(var(--wp--custom--form--checkbox--unchecked--sizing--height) + 2 * var(--wp--custom--form--border--width));
  659. margin-left: 0;
  660. padding-left: calc(var(--wp--custom--form--checkbox--unchecked--sizing--width) + var(--wp--custom--gap--baseline) / 1.5);
  661. position: relative;
  662. }
  663. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox] + label::before, .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox] + label::after {
  664. box-sizing: border-box;
  665. }
  666. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox] + ::before {
  667. content: var(--wp--custom--form--checkbox--unchecked--content);
  668. position: absolute;
  669. top: var(--wp--custom--form--checkbox--unchecked--position--top);
  670. left: var(--wp--custom--form--checkbox--unchecked--position--left);
  671. width: var(--wp--custom--form--checkbox--unchecked--sizing--width);
  672. height: var(--wp--custom--form--checkbox--unchecked--sizing--height);
  673. border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  674. }
  675. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox]:checked + ::after {
  676. content: var(--wp--custom--form--checkbox--checked--content);
  677. position: absolute;
  678. top: var(--wp--custom--form--checkbox--checked--position--top);
  679. left: var(--wp--custom--form--checkbox--checked--position--left);
  680. width: var(--wp--custom--form--checkbox--checked--sizing--width);
  681. height: var(--wp--custom--form--checkbox--checked--sizing--height);
  682. font-size: var(--wp--custom--form--checkbox--checked--font-size);
  683. }
  684. .wp-block-post-comments form .comment-form-cookies-consent input[type=checkbox]:focus + ::before {
  685. outline: 1px dotted currentColor;
  686. outline-offset: 2px;
  687. }
  688. .wp-block-post-comments .comment-reply-title small {
  689. float: right;
  690. font-size: 14px;
  691. }
  692. .wp-block-post-comments .commentlist {
  693. margin-bottom: calc(2 * var(--wp--style--block-gap));
  694. }
  695. .wp-block-post-comments .commentlist .comment p {
  696. font-size: var(--wp--custom--post-comment--typography--font-size);
  697. line-height: var(--wp--custom--post-comment--typography--line-height);
  698. margin-bottom: var(--wp--custom--gap--vertical);
  699. margin-top: var(--wp--custom--gap--vertical);
  700. }
  701. .wp-block-post-comments .comment-body {
  702. margin-bottom: calc(1.5 * var(--wp--style--block-gap));
  703. }
  704. .wp-block-post-comments .commentmetadata {
  705. margin-left: 0;
  706. margin-bottom: calc(0.75 * var(--wp--style--block-gap));
  707. }
  708. .wp-block-post-comments .comment-awaiting-moderation {
  709. display: inline-block;
  710. font-size: var(--wp--preset--font-size--small);
  711. margin-bottom: var(--wp--custom--gap--baseline);
  712. }
  713. .wp-block-post-template {
  714. margin-top: 0;
  715. margin-bottom: 0;
  716. }
  717. .wp-block-pullquote.is-style-solid-color,
  718. .wp-block-pullquote {
  719. text-align: var(--wp--custom--pullquote--typography--text-align);
  720. }
  721. .wp-block-pullquote.is-style-solid-color blockquote,
  722. .wp-block-pullquote blockquote {
  723. padding: 0;
  724. margin: 0;
  725. }
  726. .wp-block-pullquote.is-style-solid-color blockquote p,
  727. .wp-block-pullquote blockquote p {
  728. font-size: 1em;
  729. padding: 0;
  730. margin: 0;
  731. line-height: inherit;
  732. }
  733. .wp-block-pullquote.is-style-solid-color blockquote .wp-block-pullquote__citation,
  734. .wp-block-pullquote.is-style-solid-color blockquote cite,
  735. .wp-block-pullquote blockquote .wp-block-pullquote__citation,
  736. .wp-block-pullquote blockquote cite {
  737. display: block;
  738. font-size: var(--wp--custom--pullquote--citation--typography--font-size);
  739. font-style: var(--wp--custom--pullquote--citation--typography--font-style);
  740. font-weight: var(--wp--custom--pullquote--citation--typography--font-weight);
  741. margin-top: var(--wp--custom--pullquote--citation--spacing--margin--top);
  742. }
  743. .wp-block-pullquote.is-style-solid-color.is-style-solid-color,
  744. .wp-block-pullquote.is-style-solid-color {
  745. background-color: var(--wp--custom--color--foreground);
  746. color: var(--wp--custom--color--background);
  747. }
  748. div.wp-block-query-pagination {
  749. padding-top: 1.5em;
  750. justify-content: space-between;
  751. display: grid;
  752. grid-template-areas: "prev numbers next";
  753. grid-template-columns: 1fr 2fr 1fr;
  754. }
  755. @media (max-width: 599px) {
  756. div.wp-block-query-pagination {
  757. grid-template-areas: "prev next";
  758. grid-template-columns: 1fr 1fr;
  759. }
  760. }
  761. div.wp-block-query-pagination .wp-block-query-pagination-previous {
  762. justify-self: start;
  763. grid-area: prev;
  764. }
  765. div.wp-block-query-pagination .wp-block-query-pagination-next {
  766. justify-self: flex-end;
  767. grid-area: next;
  768. }
  769. div.wp-block-query-pagination .wp-block-query-pagination-numbers {
  770. grid-area: numbers;
  771. justify-self: center;
  772. }
  773. div.wp-block-query-pagination .wp-block-query-pagination-numbers .current {
  774. text-decoration: underline;
  775. }
  776. @media (max-width: 599px) {
  777. div.wp-block-query-pagination .wp-block-query-pagination-numbers {
  778. display: none;
  779. }
  780. }
  781. .wp-block-quote.is-style-large p,
  782. .wp-block-quote p {
  783. font-style: unset;
  784. margin-top: 0px;
  785. }
  786. .wp-block-quote.is-style-large .wp-block-quote__citation,
  787. .wp-block-quote.is-style-large cite,
  788. .wp-block-quote .wp-block-quote__citation,
  789. .wp-block-quote cite {
  790. font-size: var(--wp--custom--quote--citation--typography--font-size);
  791. font-style: var(--wp--custom--quote--citation--typography--font-style);
  792. }
  793. .wp-block-search {
  794. /* Block Styles */
  795. }
  796. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  797. padding: var(--wp--custom--form--border--width);
  798. border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  799. border-radius: var(--wp--custom--form--border--radius);
  800. }
  801. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  802. padding: 0 var(--wp--custom--form--padding);
  803. }
  804. .wp-block-search .wp-block-search__input {
  805. padding: var(--wp--custom--form--padding);
  806. border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  807. }
  808. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
  809. .wp-block-search .wp-block-search__button {
  810. border-width: 0;
  811. padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  812. padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  813. padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  814. padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  815. font-weight: var(--wp--custom--button--typography--font-weight);
  816. font-family: inherit;
  817. font-size: var(--wp--custom--button--typography--font-size);
  818. line-height: var(--wp--custom--button--typography--line-height);
  819. text-decoration: none;
  820. opacity: 1;
  821. color: var(--wp--custom--button--color--text);
  822. background-color: var(--wp--custom--button--color--background);
  823. border-color: currentColor;
  824. border-radius: var(--wp--custom--button--border--radius);
  825. }
  826. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button svg,
  827. .wp-block-search .wp-block-search__button svg {
  828. fill: var(--wp--custom--button--color--text);
  829. }
  830. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus,
  831. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover,
  832. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus,
  833. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus {
  834. --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  835. --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  836. --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  837. opacity: 1;
  838. color: var(--wp--custom--button--color--text);
  839. background-color: var(--wp--custom--button--color--background);
  840. border-color: currentColor;
  841. border-color: var(--wp--custom--button--border--color);
  842. }
  843. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg,
  844. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg,
  845. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg,
  846. .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg {
  847. fill: var(--wp--custom--button--color--text);
  848. }
  849. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon,
  850. .wp-block-search .wp-block-search__button.has-icon {
  851. line-height: 0;
  852. }
  853. .wp-block-search .wp-block-search__input::placeholder {
  854. color: var(--wp--custom--form--color--text);
  855. opacity: 0.66;
  856. }
  857. .wp-block-search.is-style-small-search {
  858. --wp--custom--button--typography--font-size: calc( 0.8 * var(--wp--preset--font-size--small));
  859. }
  860. .wp-block-search.is-style-small-search .wp-block-search__input {
  861. padding: calc(0.5 * var(--wp--custom--form--padding));
  862. }
  863. .wp-block-separator {
  864. opacity: var(--wp--custom--separator--opacity);
  865. }
  866. .wp-block-separator:not(.is-style-wide) {
  867. width: var(--wp--custom--separator--width);
  868. }
  869. .wp-block-separator.is-style-dots {
  870. /*
  871. We can solve this using including the Gutenberg block styles with: add_theme_support( 'wp-block-styles' )
  872. but we decided not to add those styles to blockbase because of potential broad impact of those styles.
  873. */
  874. width: 100%;
  875. }
  876. p.wp-block-site-tagline {
  877. margin: 0;
  878. }
  879. .wp-block-file .wp-block-file__button {
  880. border-width: 0;
  881. padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  882. padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  883. padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  884. padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  885. font-weight: var(--wp--custom--button--typography--font-weight);
  886. font-family: inherit;
  887. font-size: var(--wp--custom--button--typography--font-size);
  888. line-height: var(--wp--custom--button--typography--line-height);
  889. text-decoration: none;
  890. opacity: 1;
  891. color: var(--wp--custom--button--color--text);
  892. background-color: var(--wp--custom--button--color--background);
  893. border-color: currentColor;
  894. border-radius: var(--wp--custom--button--border--radius);
  895. display: inline-block;
  896. }
  897. .wp-block-file .wp-block-file__button svg {
  898. fill: var(--wp--custom--button--color--text);
  899. }
  900. .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus {
  901. --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  902. --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  903. --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  904. opacity: 1;
  905. color: var(--wp--custom--button--color--text);
  906. background-color: var(--wp--custom--button--color--background);
  907. border-color: currentColor;
  908. border-color: var(--wp--custom--button--border--color);
  909. }
  910. .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus svg {
  911. fill: var(--wp--custom--button--color--text);
  912. }
  913. .wp-block-table.is-style-stripes,
  914. .wp-block-table {
  915. border-bottom: none;
  916. }
  917. .wp-block-table.is-style-stripes figcaption,
  918. .wp-block-table figcaption {
  919. color: var(--wp--custom--color--primary);
  920. font-size: var(--wp--custom--table--figcaption--typography--font-size);
  921. text-align: center;
  922. }
  923. .wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th,
  924. .wp-block-table td,
  925. .wp-block-table th {
  926. border: 1px solid;
  927. padding: calc(0.5 * var(--wp--custom--gap--vertical)) calc(0.5 * var(--wp--custom--gap--horizontal));
  928. }
  929. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  930. background-color: var(--wp--custom--color--tertiary);
  931. }
  932. .wp-block-video figcaption {
  933. margin: var(--wp--custom--video--caption--margin);
  934. text-align: var(--wp--custom--video--caption--text-align);
  935. }
  936. .post-meta {
  937. row-gap: var(--wp--custom--gap--baseline) !important;
  938. }
  939. .is-style-post-author-icon,
  940. .is-style-post-date-icon,
  941. .is-style-post-category-icon,
  942. .is-style-post-tag-icon {
  943. display: flex;
  944. flex-wrap: wrap;
  945. }
  946. .is-style-post-author-icon:before,
  947. .is-style-post-date-icon:before,
  948. .is-style-post-category-icon:before,
  949. .is-style-post-tag-icon:before {
  950. align-self: center;
  951. content: "";
  952. display: inline-block;
  953. margin-right: calc(0.5 * var(--wp--custom--gap--baseline));
  954. height: 16px;
  955. width: 16px;
  956. mask-size: contain;
  957. -webkit-mask-size: contain;
  958. mask-repeat: no-repeat;
  959. -webkit-mask-repeat: no-repeat;
  960. background-color: currentColor;
  961. }
  962. .is-style-post-author-icon:before {
  963. -webkit-mask-image: url(svg/post-author.svg);
  964. mask-image: url(svg/post-author.svg);
  965. }
  966. .is-style-post-date-icon:before {
  967. -webkit-mask-image: url(svg/post-date.svg);
  968. mask-image: url(svg/post-date.svg);
  969. }
  970. .is-style-post-category-icon:before {
  971. -webkit-mask-image: url(svg/post-category.svg);
  972. mask-image: url(svg/post-category.svg);
  973. }
  974. .is-style-post-tag-icon:before {
  975. -webkit-mask-image: url(svg/post-tag.svg);
  976. mask-image: url(svg/post-tag.svg);
  977. }
  978. /*# sourceMappingURL=ponyfill.css.map */