Nav apraksta

editor-style-block-rtl.css 38KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462
  1. /* ------------------------------------------- */
  2. /* Twenty Twenty Editor Styles — Block Editor
  3. /* ------------------------------------------- */
  4. .editor-styles-wrapper {
  5. background: #f5efe0;
  6. color: #000;
  7. letter-spacing: -0.015em;
  8. -moz-font-smoothing: antialiased;
  9. -webkit-font-smoothing: antialiased;
  10. }
  11. .editor-styles-wrapper > * {
  12. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  13. font-size: 18px;
  14. }
  15. @supports ( font-variation-settings: normal ) {
  16. .editor-styles-wrapper > * {
  17. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  18. }
  19. }
  20. .block-editor-default-block-appender textarea.block-editor-default-block-appender__content {
  21. color: inherit;
  22. font-family: inherit;
  23. font-size: inherit;
  24. }
  25. /* Fonts ------------------------------------- */
  26. /*
  27. * Chrome renders extra-wide   characters for the Hoefler Text font.
  28. * This results in a jumping cursor when typing in both the Classic and block
  29. * editors. The following font-face override fixes the issue by manually
  30. * inserting a custom font that includes just a Hoefler Text space replacement
  31. * for that character instead.
  32. */
  33. @font-face {
  34. font-family: NonBreakingSpaceOverride;
  35. src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAMoAA0AAAAACDQAAALTAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCahEICjx3CywAATYCJANUBCAFhiEHgWwbXQfILgpsY+rQRRARwyAs6uL7pxzYhxEE+32b3aeHmifR6tklkS9hiZA0ewkqGRJE+H7/+6378ASViK/PGeavqJyOzsceKi1s3BCiQsiOdn1r/RBgIJYEgCUhbm/8/8/h4saPssnTNkkiWUBrTRtjmQSajw3Ui3pZ3LYDPD+XG2C3JA/yKAS8/rU5eNfuGqRf4eNNgV4YAlIIgxglEkWe6FYpq10+wi3g+/nUgvgPFczNrz/RsTgVm/zfbPuHZlsuQECxuyqBcQwKFBjFgKO8AqP4bAN9tFJtnM9xPcbNjeXS/x1wY/xU52f5W/X1+9cnH4YwKIaoRRAkUkj/YlAAeF/624foiIDBgBmgQBeGAyhBljUPZUm/l2dTvmpqcBDUOHdbPZWd8JsBAsGr4w8/EDn82/bUPx4eh0YNrQTBuHO2FjQEAGBwK0DeI37DpQVqdERS4gZBhpeUhWCfLFz7J99aEBgsJCHvUGAdAPp4IADDCAPCEFMGpMZ9AQpTfQtQGhLbGVBZFV8BaqNyP68oTZgHNj3M8kBPfXTTC9t90UuzYhy9ciH0grVlOcqyCytisvbsERsEYztiznR0WCrmTksJwbSNK6fd1Rvr25I9oLvctUoEbNOmXJbqgYgPXEHJ82IUsrCnpkxh23F1rfZ2zcRnJYoXtauB3VTFkFXQg3uoZYD5qE0kdjDtoDoF1h2bulGmev5HbYhbrjtohQSRI4aNOkffIcT+d3v6atpaYh3JvPoQsztCcqvaBkppDSPcQ3bw3KaCBo1f5CJWTZEgW3LjLofYg51MaVezrx8xZitYbQ9KYeoRaqQdVLwSEfrKXLK1otCWOKNdR/YwYAfon5Yk8O2MJfSD10dPGA5PIJJQMkah0ugMJiv6x4Dm7LEa8xnrRGGGLAg4sAlbsA07sAt76DOsXKO3hIjtIlpnnFrt1qW4kh6NhS83P/6HB/fl1SMAAA==) format("woff2"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAUQAA0AAAAACDQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAE9AAAABwAAAAchf5yU0dERUYAAATYAAAAHAAAAB4AJwAbT1MvMgAAAaAAAABJAAAAYJAcgU5jbWFwAAACIAAAAF4AAAFqUUxBZ2dhc3AAAATQAAAACAAAAAgAAAAQZ2x5ZgAAApAAAAAyAAAAPL0n8y9oZWFkAAABMAAAADAAAAA2Fi93Z2hoZWEAAAFgAAAAHQAAACQOSgWaaG10eAAAAewAAAAzAAAAVC7TAQBsb2NhAAACgAAAABAAAAAsAOQBAm1heHAAAAGAAAAAHQAAACAAWQALbmFtZQAAAsQAAAF6AAADIYvD/Adwb3N0AAAEQAAAAI4AAADsapk2o3jaY2BkYGAA4ov5mwzj+W2+MnCzXwCKMNzgCBSB0LfbQDQ7AxuI4mBgAlEAFKQIRHjaY2BkYGD3+NvCwMDBAALsDAyMDKhAFAA3+wH3AAAAeNpjYGRgYBBl4GBgYgABEMnIABJzAPMZAAVmAGUAAAB42mNgZlJhnMDAysDCKsKygYGBYRqEZtrDYMT4D8gHSmEHjgUFOQwODAqqf9g9/rYwMLB7MNUAhRlBcsxBrMlASoGBEQAj8QtyAAAAeNrjYGBkAAGmWQwMjO8gmBnIZ2NA0ExAzNjAAFYJVn0ASBsD6VAIDZb7AtELAgANIgb9AHjaY2BgYGaAYBkGRgYQSAHyGMF8FgYPIM3HwMHAxMDGoMCwQIFLQV8hXvXP//9AcRCfAcb///h/ygPW+w/vb7olBjUHCTCyMcAFGZmABBO6AogThgZgIUsXAEDcEzcAAHjaY2BgECMCyoEgACZaAed42mNgYmRgYGBnYGNgYAZSDJqMgorCgoqCjECRXwwNrCAKSP5mAAFGBiRgyAAAi/YFBQAAeNqtkc1OwkAUhU/5M25cEhcsZick0AwlBJq6MWwgJkAgYV/KAA2lJeUn+hY+gktXvpKv4dLTMqKycGHsTZNv7px7z50ZAFd4hYHjdw1Ls4EiHjVncIFnzVnc4F1zDkWjrzmPW+NNcwGlzIRKI3fJlUyrEjZQxb3mDH2fNGfRx4vmHKqG0JzHg6E0F9DOlFBGBxUI1GEzLNT4S0aLuTtsGAEUuYcQHkyg3KmIum1bNUvKlrjbbAIleqHHnS4iSudpQcySMYtdFiXlAxzSbAwfMxK6kZoHKhbjjespMTioOPZnzI+4ucCeTVyKMVKLfeAS6vSWaTinuZwzyy/Dc7vaed+6KaV0kukdPUk6yOcctZPvvxxqksq2lEW8RvHjMEO2FCl/zy6p3NEm0R9OFSafJdldc4QVeyaaObMBO0/5cCaa6d9Ggyubxire+lEojscdjoWUR1xGOy8KD8mG2ZLO2l2paDc3A39qmU2z2W5YNv5+u79e6QfGJY/hAAB42m3NywrCMBQE0DupWp/1AYI7/6DEaLQu66Mrd35BKUWKJSlFv1+rue4cGM7shgR981qSon+ZNwUJ8iDgoYU2OvDRRQ99DDDECAHGmGCKmf80hZSx/Kik/LliFbtmN6xmt+yOjdg9GztV4tROnRwX/Bsaaw51nt4Lc7tWaZYHp/MlzKx51LZs5htNri+2AAAAAQAB//8AD3jaY2BkYGDgAWIxIGZiYARCESBmAfMYAAR6AEMAAAABAAAAANXtRbgAAAAA2AhRFAAAAADYCNuG) format("woff");
  36. }
  37. /* ----------------------------------------------
  38. Inter variable font. Usage:
  39. @supports (font-variation-settings: normal) {
  40. html { font-family: "Inter var", sans-serif; }
  41. }
  42. ---------------------------------------------- */
  43. @font-face {
  44. font-family: "Inter var";
  45. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  46. font-style: normal;
  47. src: url(../fonts/inter/Inter-upright-var.woff2) format("woff2");
  48. }
  49. @font-face {
  50. font-family: "Inter var";
  51. font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
  52. font-style: italic;
  53. src: url(../fonts/inter/Inter-italic-var.woff2) format("woff2");
  54. }
  55. /* Structure --------------------------------- */
  56. .wp-block {
  57. max-width: 610px;
  58. }
  59. .wp-block[data-align="wide"] .wp-block[data-align="wide"],
  60. .wp-block[data-align="full"] .wp-block[data-align="wide"] {
  61. max-width: 1200px;
  62. }
  63. .wp-block .wp-block[data-type="core/group"]:not([data-align="full"]):not([data-align="wide"]):not([data-align="left"]):not([data-align="right"]),
  64. .wp-block .wp-block[data-type="core/cover"]:not([data-align="full"]):not([data-align="wide"]):not([data-align="left"]):not([data-align="right"]) {
  65. margin-right: auto;
  66. margin-left: auto;
  67. max-width: 610px;
  68. }
  69. .wp-block .wp-block[data-align="full"] {
  70. margin-right: 0;
  71. margin-left: 0;
  72. }
  73. *[data-align="right"] .wp-block-edit,
  74. *[data-align="left"] .wp-block-edit {
  75. max-width: 50%;
  76. }
  77. .wp-block[data-align="wide"] {
  78. max-width: 1200px;
  79. }
  80. .wp-block[data-align="full"] {
  81. max-width: none;
  82. }
  83. .editor-styles-wrapper .editor-rich-text__tinymce,
  84. .editor-styles-wrapper .editor-rich-text__tinymce.mce-content-body {
  85. line-height: 1.5;
  86. }
  87. /* Font Families ------------------------------ */
  88. .editor-styles-wrapper p,
  89. .editor-styles-wrapper ol,
  90. .editor-styles-wrapper ul,
  91. .editor-styles-wrapper dl,
  92. .editor-styles-wrapper dt {
  93. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  94. letter-spacing: normal;
  95. }
  96. .editor-post-title__block .editor-post-title__input,
  97. .editor-styles-wrapper .wp-block h1,
  98. .editor-styles-wrapper .wp-block h2,
  99. .editor-styles-wrapper .wp-block h3,
  100. .editor-styles-wrapper .wp-block h4,
  101. .editor-styles-wrapper .wp-block h5,
  102. .editor-styles-wrapper .wp-block h6,
  103. .editor-styles-wrapper .has-drop-cap:not(:focus)::first-letter,
  104. .editor-styles-wrapper cite,
  105. .editor-styles-wrapper figcaption,
  106. .editor-styles-wrapper .wp-caption-text {
  107. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  108. }
  109. @supports ( font-variation-settings: normal ) {
  110. .editor-post-title__block .editor-post-title__input,
  111. .editor-styles-wrapper .wp-block h1,
  112. .editor-styles-wrapper .wp-block h2,
  113. .editor-styles-wrapper .wp-block h3,
  114. .editor-styles-wrapper .wp-block h4,
  115. .editor-styles-wrapper .wp-block h5,
  116. .editor-styles-wrapper .wp-block h6,
  117. .editor-styles-wrapper .has-drop-cap:not(:focus)::first-letter,
  118. .editor-styles-wrapper cite,
  119. .editor-styles-wrapper figcaption,
  120. .editor-styles-wrapper .wp-caption-text {
  121. font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  122. }
  123. }
  124. /* Colors ------------------------------------ */
  125. /* CUSTOM COLORS */
  126. :root .has-accent-color {
  127. color: #cd2653;
  128. }
  129. :root .has-accent-background-color {
  130. background-color: #cd2653;
  131. color: #fff;
  132. }
  133. :root .has-primary-color {
  134. color: #000;
  135. }
  136. :root .has-primary-background-color {
  137. background-color: #000;
  138. color: #f5efe0;
  139. }
  140. :root .has-secondary-color {
  141. color: #6d6d6d;
  142. }
  143. :root .has-secondary-background-color {
  144. background-color: #6d6d6d;
  145. color: #fff;
  146. }
  147. :root .has-subtle-background-color {
  148. color: #dcd7ca;
  149. }
  150. :root .has-subtle-background-background-color {
  151. background-color: #dcd7ca;
  152. color: #000;
  153. }
  154. :root .has-background-color {
  155. color: #f5efe0;
  156. }
  157. :root .has-background-background-color {
  158. background-color: #f5efe0;
  159. color: #000;
  160. }
  161. /* GENERAL COLORS */
  162. .has-black-background-color {
  163. background-color: #000;
  164. color: #fff;
  165. }
  166. .has-white-background-color {
  167. background-color: #fff;
  168. color: #000;
  169. }
  170. .has-black-color {
  171. color: #000;
  172. }
  173. .has-white-color {
  174. color: #fff;
  175. }
  176. /* Typography -------------------------------- */
  177. .editor-styles-wrapper a {
  178. color: #cd2653;
  179. text-decoration: underline;
  180. }
  181. .editor-styles-wrapper a:focus,
  182. .editor-styles-wrapper a:hover {
  183. text-decoration: none;
  184. }
  185. .editor-post-title__block .editor-post-title__input,
  186. .editor-styles-wrapper .wp-block h1,
  187. .editor-styles-wrapper .wp-block h2,
  188. .editor-styles-wrapper .wp-block h3,
  189. .editor-styles-wrapper .wp-block h4,
  190. .editor-styles-wrapper .wp-block h5,
  191. .editor-styles-wrapper .wp-block h6 {
  192. font-feature-settings: "lnum";
  193. font-variant-numeric: lining-nums;
  194. font-weight: 700;
  195. letter-spacing: -0.0415625em;
  196. line-height: 1.25;
  197. margin-top: 40px;
  198. margin-bottom: 25px;
  199. }
  200. .editor-post-title__block .editor-post-title__input,
  201. .editor-styles-wrapper .wp-block h1 {
  202. font-size: 36px;
  203. font-weight: 800;
  204. line-height: 1.138888889;
  205. }
  206. .editor-styles-wrapper .wp-block h2 {
  207. font-size: 32px;
  208. }
  209. .editor-styles-wrapper .wp-block h3 {
  210. font-size: 28px;
  211. }
  212. .editor-styles-wrapper .wp-block h4 {
  213. font-size: 24px;
  214. }
  215. .editor-styles-wrapper .wp-block h5 {
  216. font-size: 21px;
  217. }
  218. .editor-styles-wrapper .wp-block h6 {
  219. font-size: 16px;
  220. letter-spacing: 0.03125em;
  221. text-transform: uppercase;
  222. }
  223. .editor-styles-wrapper li,
  224. .editor-styles-wrapper p,
  225. .editor-styles-wrapper p.wp-block-paragraph {
  226. line-height: 1.4;
  227. }
  228. /* POST TITLE */
  229. .wp-block.editor-post-title__block {
  230. max-width: 1000px;
  231. }
  232. .editor-styles-wrapper .editor-post-title__block .editor-post-title__input {
  233. margin: 0;
  234. text-align: center;
  235. }
  236. /* DROP CAP */
  237. .editor-styles-wrapper .has-drop-cap:not(:focus)::first-letter {
  238. color: #cd2653;
  239. font-size: 5.1em;
  240. font-weight: 800;
  241. margin: 0.05em 0 0 0.1em;
  242. }
  243. /* Monospace --------------------------------- */
  244. .editor-styles-wrapper code,
  245. .editor-styles-wrapper kbd,
  246. .editor-styles-wrapper pre,
  247. .editor-styles-wrapper samp {
  248. font-family: monospace;
  249. }
  250. .editor-styles-wrapper kbd,
  251. .editor-styles-wrapper pre,
  252. .editor-styles-wrapper samp {
  253. border-radius: 0;
  254. font-size: 0.75em;
  255. padding: 4px 6px;
  256. }
  257. .editor-styles-wrapper pre {
  258. border-color: #dcd7ca;
  259. border-radius: 0;
  260. line-height: 1.5;
  261. padding: 1em;
  262. }
  263. /* Custom Text Sizes ------------------------- */
  264. .editor-styles-wrapper p.has-large-font-size.editor-rich-text__tinymce,
  265. .editor-styles-wrapper p.has-large-font-size.editor-rich-text__tinymce.mce-content-body,
  266. .editor-styles-wrapper p.has-larger-font-size.editor-rich-text__tinymce,
  267. .editor-styles-wrapper p.has-larger-font-size.editor-rich-text__tinymce.mce-content-body {
  268. line-height: 1.4;
  269. }
  270. .editor-styles-wrapper p.has-small-font-size {
  271. font-size: 0.842em;
  272. }
  273. .editor-styles-wrapper p.has-normal-font-size,
  274. .editor-styles-wrapper p.has-regular-font-size {
  275. font-size: 1em;
  276. }
  277. .editor-styles-wrapper p.has-medium-font-size {
  278. font-size: 1.1em;
  279. }
  280. .editor-styles-wrapper p.has-large-font-size {
  281. font-size: 1.25em;
  282. }
  283. .editor-styles-wrapper p.has-larger-font-size {
  284. font-size: 1.5em;
  285. }
  286. /* Post Media -------------------------------- */
  287. .editor-styles-wrapper figure {
  288. margin: 0;
  289. }
  290. .editor-styles-wrapper .alignleft,
  291. .editor-styles-wrapper .alignright {
  292. margin-bottom: 1.2em;
  293. max-width: 260px;
  294. }
  295. .editor-styles-wrapper .wp-caption .alignleft,
  296. .editor-styles-wrapper .wp-caption .alignright {
  297. margin-bottom: 0;
  298. }
  299. .editor-styles-wrapper .alignleft {
  300. margin-left: 1em;
  301. }
  302. .editor-styles-wrapper .alignright {
  303. margin-right: 1em;
  304. }
  305. .editor-styles-wrapper figcaption {
  306. color: #6d6d6d;
  307. font-size: 15px;
  308. font-weight: 500;
  309. line-height: 1.2;
  310. margin-top: 5px;
  311. text-align: inherit;
  312. }
  313. /* Forms ------------------------------------- */
  314. .editor-styles-wrapper fieldset {
  315. border: 2px solid #dcd7ca;
  316. padding: 20px;
  317. }
  318. .editor-styles-wrapper legend {
  319. font-size: 0.85em;
  320. font-weight: 700;
  321. padding: 0 10px;
  322. }
  323. .editor-styles-wrapper label {
  324. font-size: 15px;
  325. font-weight: 600;
  326. }
  327. /* Block: Base Margins ---------------------- */
  328. /* Block: Shared Widget Styles -------------- */
  329. .editor-styles-wrapper ul.wp-block-archives,
  330. .editor-styles-wrapper ul.wp-block-categories,
  331. .editor-styles-wrapper ul.wp-block-latest-posts,
  332. .editor-styles-wrapper ul.wp-block-categories__list {
  333. font-family: inherit;
  334. list-style: none;
  335. margin: 40px 0;
  336. padding-right: 0;
  337. }
  338. .editor-styles-wrapper ul.wp-block-categories__list ul {
  339. margin: 0;
  340. }
  341. .editor-styles-wrapper ul.wp-block-archives li,
  342. .editor-styles-wrapper ul.wp-block-categories li,
  343. .editor-styles-wrapper ul.wp-block-latest-posts li,
  344. .editor-styles-wrapper ul.wp-block-categories__list li {
  345. color: #6d6d6d;
  346. line-height: 1.476;
  347. margin: 5px 0 0 0;
  348. }
  349. .editor-styles-wrapper ul.wp-block-archives li li,
  350. .editor-styles-wrapper ul.wp-block-categories li li,
  351. .editor-styles-wrapper ul.wp-block-categories__list li li,
  352. .editor-styles-wrapper ul.wp-block-latest-posts li li {
  353. margin-right: 20px;
  354. }
  355. .editor-styles-wrapper .wp-block-archives li > a,
  356. .editor-styles-wrapper .wp-block-categories li > a,
  357. .editor-styles-wrapper .wp-block-latest-posts li > a {
  358. font-weight: 700;
  359. text-decoration: none;
  360. }
  361. .editor-styles-wrapper .wp-block-archives li > a:focus,
  362. .editor-styles-wrapper .wp-block-archives li > a:hover,
  363. .editor-styles-wrapper .wp-block-categories li > a:focus,
  364. .editor-styles-wrapper .wp-block-categories li > a:hover,
  365. .editor-styles-wrapper .wp-block-latest-posts li > a:focus,
  366. .editor-styles-wrapper .wp-block-latest-posts li > a:hover {
  367. font-weight: 700;
  368. text-decoration: none;
  369. }
  370. .editor-styles-wrapper .wp-block-archives.aligncenter,
  371. .editor-styles-wrapper .wp-block-categories.aligncenter {
  372. text-align: center;
  373. }
  374. .editor-styles-wrapper .wp-block-latest-comments time,
  375. .editor-styles-wrapper .wp-block-latest-posts time {
  376. color: #6d6d6d;
  377. font-size: 0.7em;
  378. font-weight: 600;
  379. letter-spacing: normal;
  380. line-height: 1.476;
  381. margin-top: 0.15em;
  382. }
  383. /* Block: Table ------------------------------ */
  384. .editor-styles-wrapper .wp-block-table {
  385. border-collapse: collapse;
  386. border-spacing: 0;
  387. empty-cells: show;
  388. font-size: 18px;
  389. margin-bottom: 1.1em;
  390. width: 100%;
  391. }
  392. .editor-styles-wrapper .wp-block-table,
  393. .editor-styles-wrapper .wp-block-table * {
  394. border-color: #dcd7ca;
  395. }
  396. .editor-styles-wrapper .wp-block-table tr {
  397. border: none;
  398. }
  399. .editor-styles-wrapper .wp-block-table caption {
  400. background: #dcd7ca;
  401. text-align: center;
  402. }
  403. .editor-styles-wrapper .wp-block-table th,
  404. .editor-styles-wrapper .wp-block-table td {
  405. line-height: 1.4;
  406. margin: 0;
  407. overflow: visible;
  408. padding: 0;
  409. }
  410. .editor-styles-wrapper .wp-block-table .wp-block-table__cell-content {
  411. padding: 0.5em;
  412. }
  413. .editor-styles-wrapper .wp-block-table thead {
  414. vertical-align: bottom;
  415. white-space: nowrap;
  416. text-align: inherit;
  417. }
  418. .editor-styles-wrapper .wp-block-table th {
  419. font-weight: 700;
  420. text-align: inherit; /* Prevents the header from being centered by default*/
  421. }
  422. .editor-styles-wrapper .wp-block-table th.has-text-align-center {
  423. text-align: center;
  424. }
  425. .editor-styles-wrapper .wp-block-table th.has-text-align-right {
  426. text-align: left;
  427. }
  428. .editor-styles-wrapper .wp-block-table th.has-text-align-left {
  429. text-align: right;
  430. }
  431. /* STYLE: STRIPES */
  432. .editor-styles-wrapper .wp-block-table.is-style-stripes {
  433. border: 1px solid #dcd7ca;
  434. }
  435. .editor-styles-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  436. background: #dcd7ca;
  437. }
  438. /* Block: Separator -------------------------- */
  439. hr.wp-block-separator {
  440. border-top: 1px solid #6d6d6d;
  441. color: #6d6d6d;
  442. margin: 30px 0;
  443. }
  444. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  445. max-width: 100%;
  446. }
  447. hr.wp-block-separator:not(.is-style-dots) {
  448. background: linear-gradient(to right, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
  449. background-color: transparent !important;
  450. border: none;
  451. height: 1px;
  452. overflow: visible;
  453. position: relative;
  454. }
  455. .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
  456. height: 1px;
  457. }
  458. hr.wp-block-separator:not(.is-style-dots)::before,
  459. hr.wp-block-separator:not(.is-style-dots)::after {
  460. background: currentColor;
  461. content: "";
  462. display: block;
  463. height: 16px;
  464. position: absolute;
  465. top: calc(50% - 8px);
  466. transform: rotate(-22.5deg);
  467. width: 1px;
  468. }
  469. hr.wp-block-separator::before {
  470. right: calc(50% - 5px);
  471. }
  472. hr.wp-block-separator::after {
  473. left: calc(50% - 5px);
  474. }
  475. /* STYLE: DOTS */
  476. hr.wp-block-separator.is-style-dots::before {
  477. font-size: 32px;
  478. font-weight: 700;
  479. letter-spacing: 1em;
  480. padding-right: 1em;
  481. }
  482. /* Block: Quote ------------------------------ */
  483. .editor-styles-wrapper blockquote {
  484. margin: 0;
  485. }
  486. .editor-styles-wrapper .wp-block-quote {
  487. border-color: #cd2653;
  488. border-style: solid;
  489. border-width: 0 2px 0 0;
  490. margin-top: 20px;
  491. margin-bottom: 20px;
  492. padding: 5px 20px 5px 0;
  493. }
  494. .editor-styles-wrapper .wp-block-quote.has-text-align-center,
  495. .editor-styles-wrapper .wp-block-quote[style*="text-align:center"],
  496. .editor-styles-wrapper .wp-block-quote[style*="text-align: center"] {
  497. border-width: 0;
  498. padding: 5px 0;
  499. }
  500. .editor-styles-wrapper .wp-block-quote.has-text-align-right,
  501. .editor-styles-wrapper .wp-block-quote[style*="text-align:right"],
  502. .editor-styles-wrapper .wp-block-quote[style*="text-align: right"] {
  503. border-width: 0 0 0 2px;
  504. padding: 5px 0 5px 20px;
  505. }
  506. .editor-styles-wrapper cite,
  507. .editor-styles-wrapper .wp-block-quote__citation,
  508. .editor-styles-wrapper .wp-block-quote cite,
  509. .editor-styles-wrapper .wp-block-quote footer {
  510. color: #6d6d6d;
  511. font-size: 14px;
  512. font-weight: 600;
  513. line-height: 1.25;
  514. }
  515. .editor-styles-wrapper .wp-block-quote p {
  516. color: inherit;
  517. font-weight: 400;
  518. margin: 0 0 20px 0;
  519. }
  520. .editor-styles-wrapper .wp-block-quote.is-style-large {
  521. border: none;
  522. padding: 0;
  523. }
  524. .editor-styles-wrapper .wp-block-quote.is-style-large p {
  525. font-family: inherit;
  526. font-size: 24px;
  527. font-style: normal;
  528. font-weight: 700;
  529. letter-spacing: -0.035714286em;
  530. line-height: 1.285714286;
  531. }
  532. .editor-styles-wrapper .wp-block-quote.is-style-large .wp-block-quote__citation,
  533. .editor-styles-wrapper .wp-block-quote.is-style-large cite,
  534. .editor-styles-wrapper .wp-block-quote.is-style-large footer {
  535. font-size: 16px;
  536. }
  537. /* Block: Code, Verse and Preformatted ------- */
  538. .editor-styles-wrapper .wp-block-code {
  539. color: inherit;
  540. }
  541. .editor-styles-wrapper .wp-block-code,
  542. .editor-styles-wrapper .wp-block-preformatted pre,
  543. .editor-styles-wrapper .wp-block-verse pre {
  544. border: 1px solid #dcd7ca;
  545. border-radius: 0;
  546. padding: 30px;
  547. }
  548. .editor-styles-wrapper .wp-block-freeform.block-library-rich-text__tinymce pre,
  549. .editor-styles-wrapper .wp-block-preformatted pre,
  550. .editor-styles-wrapper .wp-block-code .block-editor-plain-text,
  551. .editor-styles-wrapper .wp-block-verse pre {
  552. background: transparent;
  553. color: inherit;
  554. font-family: monospace;
  555. font-size: 14px;
  556. }
  557. /* Block: Cover ------------------------------ */
  558. .editor-styles-wrapper .wp-block-cover-image .wp-block-cover__inner-container,
  559. .editor-styles-wrapper .wp-block-cover .wp-block-cover__inner-container {
  560. margin: 0 auto;
  561. width: calc(100% - 40px);
  562. }
  563. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="right"],
  564. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] {
  565. height: auto;
  566. max-height: none;
  567. }
  568. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] .wp-block-cover {
  569. text-align: right;
  570. }
  571. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="right"] .wp-block-cover {
  572. text-align: left;
  573. }
  574. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="right"] .block-editor-block-list__block-edit,
  575. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] .block-editor-block-list__block-edit {
  576. float: none;
  577. margin-right: 0;
  578. margin-left: 0;
  579. max-width: 100%;
  580. }
  581. .wp-block-cover-image .wp-block-cover-image-text,
  582. .wp-block-cover-image .wp-block-cover-text,
  583. .wp-block-cover-image h2,
  584. .wp-block-cover .wp-block-cover-image-text,
  585. .wp-block-cover .wp-block-cover-text,
  586. .wp-block-cover h2 {
  587. max-width: 100%;
  588. }
  589. .editor-styles-wrapper .wp-block-cover a {
  590. color: inherit;
  591. }
  592. /* Block: Shared Media Styles ---------------- */
  593. .wp-block[data-type*="core-embed"][data-align="full"] figcaption,
  594. .wp-block[data-type="core/image"][data-align="full"] figcaption,
  595. .wp-block[data-type="core/gallery"][data-align="full"] .blocks-gallery-caption {
  596. padding: 0 14px;
  597. }
  598. /* Block: Paragraph -------------------------- */
  599. /* Block: Pullquote -------------------------- */
  600. .editor-styles-wrapper .wp-block-pullquote {
  601. border: none;
  602. color: inherit;
  603. padding: 0;
  604. position: relative;
  605. text-align: center;
  606. }
  607. .editor-styles-wrapper .wp-block-pullquote::before {
  608. background: #fff;
  609. border-radius: 50%;
  610. color: #cd2653;
  611. content: "”";
  612. display: block;
  613. font-size: 62px;
  614. font-weight: 500;
  615. line-height: 1.2;
  616. margin: 0 auto 15px auto;
  617. text-align: center;
  618. height: 44px;
  619. width: 44px;
  620. }
  621. .editor-styles-wrapper .wp-block .wp-block-pullquote p {
  622. font-family: inherit;
  623. font-size: 28px;
  624. font-weight: 700;
  625. line-height: 1.178571429;
  626. letter-spacing: -0.041785714em;
  627. margin-bottom: 20px;
  628. }
  629. .editor-styles-wrapper .wp-block .wp-block-pullquote p:last-child {
  630. margin-bottom: 0;
  631. }
  632. .editor-styles-wrapper .wp-block .wp-block-pullquote p,
  633. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color blockquote > .block-editor-rich-text p,
  634. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .editor-rich-text p,
  635. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .editor-rich-text p {
  636. font-size: 28px;
  637. }
  638. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"],
  639. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] {
  640. height: auto;
  641. max-height: none;
  642. }
  643. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .wp-block-pullquote,
  644. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .wp-block-pullquote.is-style-solid-color blockquote {
  645. text-align: right;
  646. }
  647. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .wp-block-pullquote,
  648. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .wp-block-pullquote.is-style-solid-color blockquote {
  649. text-align: left;
  650. }
  651. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .block-editor-block-list__block-edit,
  652. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .block-editor-block-list__block-edit {
  653. float: none;
  654. margin-right: 0;
  655. margin-left: 0;
  656. max-width: 100%;
  657. }
  658. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .block-editor-block-list__block-edit .wp-block-pullquote::before {
  659. margin-left: 0;
  660. }
  661. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .block-editor-block-list__block-edit .wp-block-pullquote::before {
  662. margin-right: 0;
  663. }
  664. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .is-style-solid-color::before {
  665. left: 20px;
  666. transform: translateY(-50%);
  667. }
  668. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .is-style-solid-color::before {
  669. right: 20px;
  670. transform: translateY(-50%);
  671. }
  672. .editor-styles-wrapper .wp-block-pullquote__citation,
  673. .editor-styles-wrapper .wp-block-pullquote cite,
  674. .editor-styles-wrapper .wp-block-pullquote footer {
  675. color: #6d6d6d;
  676. font-size: 16px;
  677. font-weight: 500;
  678. margin-top: 12px;
  679. text-transform: none;
  680. }
  681. /* STYLE: SOLID COLOR */
  682. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color {
  683. padding: 30px 20px;
  684. position: relative;
  685. }
  686. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color::before {
  687. position: absolute;
  688. top: 0;
  689. right: 50%;
  690. transform: translateY(-50%) translateX(50%);
  691. }
  692. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color blockquote {
  693. max-width: 100%;
  694. text-align: center;
  695. }
  696. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  697. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color .wp-block-pullquote cite,
  698. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color .wp-block-pullquote footer {
  699. color: inherit;
  700. }
  701. /* Block: Verse ------------------------------ */
  702. .editor-styles-wrapper .wp-block-verse pre,
  703. .editor-styles-wrapper pre.wp-block-verse {
  704. font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  705. font-size: 0.9em;
  706. }
  707. /* Block: Button ----------------------------- */
  708. .editor-styles-wrapper .wp-block-button__link,
  709. .editor-styles-wrapper .wp-block-file__button {
  710. background: #cd2653;
  711. border-radius: 0;
  712. color: #fff;
  713. font-size: 15px;
  714. font-weight: 600;
  715. letter-spacing: 0.0333em;
  716. line-height: 1.25;
  717. padding: 1.1em 1.44em;
  718. text-transform: uppercase;
  719. }
  720. .editor-styles-wrapper .wp-block-button .wp-block-button__link.mce-content-body {
  721. line-height: 1.1;
  722. }
  723. /* BUTTON STYLE: OUTLINE */
  724. .editor-styles-wrapper .is-style-outline .wp-block-button__link,
  725. .editor-styles-wrapper .is-style-outline.wp-block-button__link {
  726. background: none;
  727. border-color: currentColor;
  728. color: #cd2653;
  729. padding: calc(1.1em - 2px) calc(1.44em - 2px);
  730. }
  731. /* BUTTON STYLE: SQUARED */
  732. .editor-styles-wrapper .is-style-squared .wp-block-button__link,
  733. .editor-styles-wrapper .is-style-squared.wp-block-button__link {
  734. border-radius: 0;
  735. }
  736. /* Block: Latest Comments -------------------- */
  737. .editor-styles-wrapper .wp-block-latest-comments {
  738. font-family: inherit;
  739. margin-right: 0;
  740. }
  741. .editor-styles-wrapper .wp-block-latest-comments li.wp-block-latest-comments__comment {
  742. font-size: inherit;
  743. margin-bottom: 20px;
  744. }
  745. .editor-styles-wrapper .wp-block-latest-comments li.wp-block-latest-comments__comment:last-child {
  746. margin-bottom: 0;
  747. }
  748. .editor-styles-wrapper .wp-block-latest-comments__comment-meta,
  749. .editor-styles-wrapper .wp-block-latest-comments__comment-excerpt {
  750. margin-right: 0 !important;
  751. }
  752. .editor-styles-wrapper .wp-block-latest-comments__comment-meta {
  753. font-weight: 700;
  754. }
  755. .editor-styles-wrapper .wp-block-latest-comments__comment-meta a {
  756. text-decoration: none;
  757. }
  758. .editor-styles-wrapper .wp-block-latest-comments__comment-meta a:focus,
  759. .editor-styles-wrapper .wp-block-latest-comments__comment-meta a:hover {
  760. text-decoration: none;
  761. }
  762. /* HAS AVATAR */
  763. .editor-styles-wrapper .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {
  764. display: flex;
  765. }
  766. .editor-styles-wrapper .wp-block-latest-comments.has-avatars img.avatar {
  767. flex-shrink: 0;
  768. margin: 5px 0 0 15px;
  769. }
  770. /* HAS EXCERPT */
  771. .editor-styles-wrapper .wp-block-latest-comments__comment-excerpt {
  772. margin: 0;
  773. }
  774. .editor-styles-wrapper .wp-block-latest-comments__comment-excerpt p {
  775. font-family: inherit;
  776. font-size: 0.7em;
  777. margin: 10px 0 0;
  778. }
  779. /* Block: Latest Posts ----------------------- */
  780. .editor-styles-wrapper ul.wp-block-latest-posts:not(.is-grid) li {
  781. margin-top: 15px;
  782. }
  783. /* STYLE: GRID */
  784. .editor-styles-wrapper .wp-block-latest-posts.is-grid li {
  785. border-color: #dcd7ca;
  786. }
  787. .editor-styles-wrapper ul.wp-block-latest-posts.is-grid li {
  788. border-style: solid;
  789. border-width: 2px 0 0;
  790. line-height: 1.25;
  791. margin: 20px 0 16px 16px;
  792. padding-top: 12px;
  793. }
  794. .editor-styles-wrapper .wp-block-latest-posts__post-excerpt {
  795. font-size: 0.95em;
  796. line-height: 1.4;
  797. margin-top: 15px;
  798. }
  799. /* Block: Shortcode -------------------------- */
  800. .editor-styles-wrapper .wp-block-shortcode textarea {
  801. color: #191e23;
  802. }
  803. /* Block: Embed ------------------------------ */
  804. .editor-styles-wrapper .wp-block-embed {
  805. margin-bottom: 30px;
  806. margin-top: 30px;
  807. }
  808. .editor-styles-wrapper .wp-block[data-type*="core-embed"][data-align="center"] * {
  809. margin-right: auto;
  810. margin-left: auto;
  811. }
  812. /* Block: File ------------------------------- */
  813. .editor-styles-wrapper .wp-block-file {
  814. background: none;
  815. padding: 0;
  816. }
  817. .editor-styles-wrapper .wp-block-file__content-wrapper {
  818. align-items: center;
  819. display: flex;
  820. justify-content: space-between;
  821. }
  822. .editor-styles-wrapper .wp-block-file .wp-block-file__textlink {
  823. color: #cd2653;
  824. font-weight: 700;
  825. text-decoration: none;
  826. }
  827. .editor-styles-wrapper .wp-block-file .wp-block-file__textlink:focus,
  828. .editor-styles-wrapper .wp-block-file .wp-block-file__textlink:hover {
  829. text-decoration: underline;
  830. }
  831. .editor-styles-wrapper .wp-block-file .wp-block-file__button {
  832. font-size: 14px;
  833. padding: 1em 1.25em;
  834. }
  835. /* Block: Image ------------------------------ */
  836. .editor-styles-wrapper .wp-block-image {
  837. margin-bottom: 30px;
  838. margin-top: 30px;
  839. }
  840. /* Block: Group ------------------------------ */
  841. .editor-styles-wrapper .wp-block-group.has-background {
  842. padding: 20px;
  843. }
  844. .wp-block-group .wp-block[data-type="core/heading"]:first-child * {
  845. margin-top: 0;
  846. }
  847. .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"],
  848. .wp-block[data-type="core/group"][data-align="full"] > .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"] {
  849. margin-right: 0;
  850. width: 100%;
  851. }
  852. /* Block: List ------------------------------- */
  853. .editor-styles-wrapper ul.block-editor-block-list__block,
  854. .editor-styles-wrapper ol.block-editor-block-list__block,
  855. .editor-styles-wrapper ul ul,
  856. .editor-styles-wrapper ol ul {
  857. padding-right: 1.3em;
  858. }
  859. /* Block: Post Template ---------------- */
  860. .editor-styles-wrapper ul.wp-block-post-template {
  861. padding-right: 0;
  862. }
  863. /* X. Media Queries
  864. /* ------------------------------------------- */
  865. @media ( min-width: 480px ) {
  866. /* STRUCTURE */
  867. .editor-styles-wrapper .wp-block[data-align="right"] {
  868. margin-left: 0;
  869. }
  870. .editor-styles-wrapper .wp-block[data-align="left"] {
  871. margin: 0;
  872. }
  873. /* BLOCK: COVER */
  874. .wp-block[data-type="core/cover"][data-align="left"] [data-block],
  875. .wp-block[data-type="core/cover"][data-align="right"] [data-block] {
  876. margin-top: 0;
  877. }
  878. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="right"] .block-editor-block-list__block-edit {
  879. float: left;
  880. margin-right: 20px;
  881. max-width: 260px;
  882. }
  883. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] .block-editor-block-list__block-edit {
  884. float: right;
  885. margin-left: 20px;
  886. max-width: 260px;
  887. }
  888. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="right"] .wp-block-pullquote::before {
  889. margin-left: 0;
  890. }
  891. .editor-styles-wrapper .wp-block[data-type="core/cover"][data-align="left"] .wp-block-pullquote::before {
  892. margin-right: 0;
  893. }
  894. /* BLOCK: PULL QUOTE */
  895. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"],
  896. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] {
  897. height: 0;
  898. max-width: 260px;
  899. }
  900. .wp-block[data-type="core/pullquote"][data-align="left"] [data-block],
  901. .wp-block[data-type="core/pullquote"][data-align="right"] [data-block] {
  902. margin-top: 0;
  903. }
  904. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .block-editor-block-list__block-edit {
  905. float: left;
  906. margin-right: 20px;
  907. max-width: 260px;
  908. }
  909. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .block-editor-block-list__block-edit {
  910. float: right;
  911. margin-left: 20px;
  912. max-width: 260px;
  913. }
  914. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .wp-block-pullquote::before {
  915. margin-left: 0;
  916. }
  917. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .wp-block-pullquote::before {
  918. margin-right: 0;
  919. }
  920. }
  921. @media ( min-width: 600px ) {
  922. /* BLOCK: SHARED MEDIA STYLES */
  923. .wp-block[data-type*="core-embed"][data-align="full"] figcaption,
  924. .wp-block[data-type="core/image"][data-align="full"] figcaption,
  925. .wp-block[data-type="core/gallery"][data-align="full"] .blocks-gallery-caption {
  926. padding: 0 45px;
  927. }
  928. /* BLOCK: COLUMNS */
  929. .editor-styles-wrapper .wp-block[data-type="core/column"] h1,
  930. .editor-styles-wrapper .wp-block[data-type="core/column"] h2,
  931. .editor-styles-wrapper .wp-block[data-type="core/column"] h3,
  932. .editor-styles-wrapper .wp-block[data-type="core/column"] h4,
  933. .editor-styles-wrapper .wp-block[data-type="core/column"] h5,
  934. .editor-styles-wrapper .wp-block[data-type="core/column"] h6 {
  935. margin: 35px 0 20px 0;
  936. }
  937. /* BLOCK: PULLQUOTE */
  938. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .block-editor-block-list__block-edit {
  939. margin-left: -30px;
  940. }
  941. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .block-editor-block-list__block-edit {
  942. margin-right: -30px;
  943. }
  944. }
  945. @media ( min-width: 700px ) {
  946. /* STRUCTURE */
  947. .editor-styles-wrapper > * {
  948. font-size: 21px;
  949. }
  950. /* TYPOGRAPHY */
  951. .editor-post-title__block .editor-post-title__input,
  952. .editor-styles-wrapper .wp-block h1 {
  953. font-size: 64px;
  954. }
  955. .editor-styles-wrapper .wp-block h2 {
  956. font-size: 48px;
  957. }
  958. .editor-styles-wrapper .wp-block h3 {
  959. font-size: 40px;
  960. }
  961. .editor-styles-wrapper .wp-block h4 {
  962. font-size: 32px;
  963. }
  964. .editor-styles-wrapper .wp-block h5 {
  965. font-size: 24px;
  966. }
  967. .editor-styles-wrapper li,
  968. .editor-styles-wrapper p,
  969. .editor-styles-wrapper p.wp-block-paragraph {
  970. line-height: 1.476;
  971. }
  972. /* FORMS */
  973. .editor-styles-wrapper fieldset {
  974. padding: 30px;
  975. }
  976. .editor-styles-wrapper legend {
  977. padding: 0 15px;
  978. }
  979. /* BLOCK: BASE MARGINS */
  980. /* BLOCK: BUTTON */
  981. .editor-styles-wrapper .wp-block-button__link,
  982. .editor-styles-wrapper .wp-block-file__button {
  983. font-size: 17px;
  984. }
  985. /* BLOCK: CODE */
  986. .editor-styles-wrapper .wp-block-preformatted pre,
  987. .editor-styles-wrapper .wp-block-code .block-editor-plain-text,
  988. .editor-styles-wrapper .wp-block-verse pre {
  989. font-size: 16px;
  990. }
  991. /* BLOCK: COLUMNS */
  992. .wp-block-column {
  993. font-size: 16px;
  994. }
  995. /* BLOCK: COVER */
  996. .editor-styles-wrapper .wp-block-cover-image .wp-block-cover__inner-container,
  997. .editor-styles-wrapper .wp-block-cover .wp-block-cover__inner-container {
  998. width: calc(100% - 80px);
  999. }
  1000. /* BLOCK: GROUP */
  1001. .editor-styles-wrapper .wp-block:not([data-align="wide"]):not([data-align="full"]) div:not([class*="__inner-container"]) .wp-block-group.has-background,
  1002. .editor-styles-wrapper .wp-block div[class*="__inner-container"] .wp-block[data-align="wide"] .wp-block-group.has-background,
  1003. .editor-styles-wrapper .wp-block div[class*="__inner-container"] .wp-block[data-align="full"] .wp-block-group.has-background {
  1004. padding: 40px;
  1005. }
  1006. .editor-styles-wrapper .wp-block[data-align="wide"] .wp-block-group.has-background,
  1007. .editor-styles-wrapper .wp-block[data-align="full"] .wp-block-group.has-background {
  1008. padding: 80px;
  1009. }
  1010. /* BLOCK: LATEST POSTS */
  1011. /* BLOCK: PULLQUOTE */
  1012. .editor-styles-wrapper .wp-block .wp-block-pullquote p,
  1013. .editor-styles-wrapper .wp-block-pullquote.is-style-solid-color blockquote > .block-editor-rich-text p,
  1014. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .editor-rich-text p,
  1015. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .editor-rich-text p {
  1016. font-size: 32px;
  1017. }
  1018. .editor-styles-wrapper .wp-block-pullquote__citation,
  1019. .editor-styles-wrapper .wp-block-pullquote cite,
  1020. .editor-styles-wrapper .wp-block-pullquote footer {
  1021. margin-top: 20px;
  1022. }
  1023. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="wide"] .wp-block-pullquote::before,
  1024. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] .wp-block-pullquote::before {
  1025. font-size: 113px;
  1026. height: 80px;
  1027. margin-bottom: 20px;
  1028. width: 80px;
  1029. }
  1030. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="wide"] .wp-block-pullquote.is-style-solid-color,
  1031. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] .wp-block-pullquote.is-style-solid-color {
  1032. padding: 60px 40px 40px;
  1033. }
  1034. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] .wp-block-pullquote:not(.is-style-solid-color) {
  1035. padding-right: 10px;
  1036. padding-left: 10px;
  1037. }
  1038. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="wide"] blockquote p,
  1039. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] blockquote p {
  1040. font-size: 48px;
  1041. line-height: 1.203125;
  1042. }
  1043. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] p,
  1044. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] p {
  1045. font-size: 32px;
  1046. line-height: 1.1875;
  1047. }
  1048. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .is-style-solid-color p,
  1049. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .is-style-solid-color p {
  1050. font-size: 26px;
  1051. }
  1052. /* BLOCK: TABLE */
  1053. .editor-styles-wrapper table.wp-block-table {
  1054. font-size: 18px;
  1055. }
  1056. /* BLOCK: SEPARATOR */
  1057. hr.wp-block-separator {
  1058. margin-bottom: 60px;
  1059. margin-top: 60px;
  1060. }
  1061. }
  1062. @media ( min-width: 1000px ) {
  1063. /* BLOCK: COLUMNS */
  1064. .wp-block-column {
  1065. font-size: 18px;
  1066. }
  1067. /* BLOCK: SEPARATOR */
  1068. hr.wp-block-separator {
  1069. margin-bottom: 80px;
  1070. margin-top: 80px;
  1071. }
  1072. hr.wp-block-separator.is-style-wide {
  1073. margin-right: -70px;
  1074. margin-left: -70px;
  1075. }
  1076. }
  1077. @media ( min-width: 1220px ) {
  1078. /* TYPOGRAPHY */
  1079. .editor-post-title__block .editor-post-title__input,
  1080. .editor-styles-wrapper .wp-block h1 {
  1081. font-size: 84px;
  1082. }
  1083. .editor-styles-wrapper .wp-block h6 {
  1084. font-size: 18px;
  1085. }
  1086. /* BLOCK: PULLQUOTE */
  1087. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="wide"] .wp-block-pullquote.is-style-solid-color,
  1088. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] .wp-block-pullquote.is-style-solid-color {
  1089. padding: 90px 40px 80px;
  1090. }
  1091. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="wide"] blockquote p,
  1092. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="full"] blockquote p {
  1093. font-size: 64px;
  1094. }
  1095. /* BLOCK: SEPARATOR */
  1096. hr.wp-block-separator.is-style-wide {
  1097. margin-right: -150px;
  1098. margin-left: -150px;
  1099. }
  1100. }
  1101. @media ( min-width: 1360px ) {
  1102. /* STRUCTURE */
  1103. .editor-styles-wrapper .wp-block[data-align="left"],
  1104. .editor-styles-wrapper .wp-block[data-align="right"] {
  1105. margin: 0 auto;
  1106. max-width: 1220px;
  1107. }
  1108. /* BLOCK: PULLQUOTE */
  1109. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"] .is-style-solid-color::before,
  1110. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] .is-style-solid-color::before {
  1111. top: 0;
  1112. }
  1113. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="left"],
  1114. .editor-styles-wrapper .wp-block[data-type="core/pullquote"][data-align="right"] {
  1115. margin: 0 auto;
  1116. max-width: 1220px;
  1117. }
  1118. /* BLOCK: SEPARATOR */
  1119. hr.wp-block-separator.is-style-wide {
  1120. margin-right: -200px;
  1121. margin-left: -200px;
  1122. }
  1123. }