theme.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. @charset "UTF-8";
  2. /**
  3. * Breakpoints & Media Queries
  4. */
  5. /**
  6. * Converts a hex value into the rgb equivalent.
  7. *
  8. * @param {string} hex - the hexadecimal value to convert
  9. * @return {string} comma separated rgb values
  10. */
  11. /**
  12. * Breakpoint mixins
  13. */
  14. /**
  15. * Long content fade mixin
  16. *
  17. * Creates a fading overlay to signify that the content is longer
  18. * than the space allows.
  19. */
  20. /**
  21. * Focus styles.
  22. */
  23. /**
  24. * Applies editor left position to the selector passed as argument
  25. */
  26. /**
  27. * Styles that are reused verbatim in a few places
  28. */
  29. /**
  30. * Allows users to opt-out of animations via OS-level preferences.
  31. */
  32. /**
  33. * Reset default styles for JavaScript UI based pages.
  34. * This is a WP-admin agnostic reset
  35. */
  36. /**
  37. * Reset the WP Admin page styles for Gutenberg-like pages.
  38. */
  39. @media (max-width: 599px) {
  40. .headlines-pattern {
  41. padding-top: 50px !important;
  42. padding-bottom: 50px !important;
  43. }
  44. }
  45. .subscription-column {
  46. text-align: right;
  47. }
  48. .horizontal-query-pattern .wp-block-post-title a,
  49. .vertical-query-pattern .wp-block-post-title a {
  50. text-decoration: none;
  51. }
  52. .vertical-query-pattern .wp-block-cover {
  53. margin-top: 0;
  54. }
  55. .vertical-query-pattern img {
  56. aspect-ratio: 16/9;
  57. object-fit: cover;
  58. }
  59. div.horizontal-query-pattern {
  60. gap: 0;
  61. }
  62. @media (min-width: 600px) {
  63. div.horizontal-query-pattern {
  64. flex-wrap: nowrap;
  65. }
  66. }
  67. div.horizontal-query-pattern .wp-block-cover,
  68. div.horizontal-query-pattern figure.wp-block-post-featured-image {
  69. margin-top: 0;
  70. }
  71. div.horizontal-query-pattern figure.wp-block-post-featured-image {
  72. align-self: stretch;
  73. }
  74. @media (min-width: 600px) {
  75. div.horizontal-query-pattern figure.wp-block-post-featured-image {
  76. width: 57%;
  77. }
  78. }
  79. div.horizontal-query-pattern figure.wp-block-post-featured-image img {
  80. aspect-ratio: 1.12;
  81. object-fit: cover;
  82. height: 100%;
  83. }
  84. @media (min-width: 600px) {
  85. div.horizontal-query-pattern figure.wp-block-post-featured-image img {
  86. min-height: 360px;
  87. }
  88. }
  89. .wp-block-cover.is-style-quadrat-cover-diamond::after {
  90. background-image: url(rotated.svg);
  91. background-position: center;
  92. background-repeat: no-repeat;
  93. background-size: auto 70%;
  94. content: "";
  95. mix-blend-mode: soft-light;
  96. position: absolute;
  97. top: 0;
  98. left: 0;
  99. bottom: 0;
  100. right: 0;
  101. z-index: 0 !important;
  102. }
  103. .wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before {
  104. opacity: 0;
  105. }
  106. .wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
  107. mix-blend-mode: normal;
  108. -webkit-mask-image: url(rotated.svg);
  109. mask-image: url(rotated.svg);
  110. -webkit-mask-repeat: no-repeat;
  111. mask-repeat: no-repeat;
  112. -webkit-mask-size: auto 70%;
  113. mask-size: auto 70%;
  114. -webkit-mask-position: center;
  115. mask-position: center;
  116. opacity: 0.25;
  117. }
  118. .wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after {
  119. background: #000;
  120. }
  121. .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
  122. background: #fff;
  123. }
  124. .is-style-quadrat-diamond-posts .post-meta {
  125. justify-content: flex-start;
  126. }
  127. .is-style-quadrat-diamond-posts .wp-block-post-title a,
  128. .is-style-quadrat-diamond-posts .wp-block-query-pagination a,
  129. .is-style-quadrat-diamond-posts .post-meta a {
  130. text-decoration: none;
  131. }
  132. .is-style-quadrat-diamond-posts .wp-block-post-title a:hover,
  133. .is-style-quadrat-diamond-posts .wp-block-query-pagination a:hover,
  134. .is-style-quadrat-diamond-posts .post-meta a:hover {
  135. text-decoration: underline;
  136. }
  137. .is-style-quadrat-diamond-posts .wp-block-column {
  138. flex-basis: auto;
  139. }
  140. @media (min-width: 600px) {
  141. .is-style-quadrat-diamond-posts .wp-block-column:last-child {
  142. max-width: 300px;
  143. flex-shrink: 0;
  144. }
  145. .is-style-quadrat-diamond-posts .wp-block-column:first-child {
  146. padding-right: 2em;
  147. }
  148. }
  149. .is-style-quadrat-diamond-posts .wp-block-post-featured-image {
  150. width: 300px;
  151. }
  152. @media (max-width: 599px) {
  153. .is-style-quadrat-diamond-posts .wp-block-post-featured-image {
  154. width: 100%;
  155. }
  156. }
  157. .is-style-quadrat-diamond-posts .wp-block-post-featured-image img {
  158. object-fit: cover;
  159. width: 100%;
  160. height: 300px;
  161. }
  162. .is-style-quadrat-diamond-posts .wp-block-post-template li {
  163. display: flex;
  164. align-items: center;
  165. min-height: 400px;
  166. position: relative;
  167. }
  168. .is-style-quadrat-diamond-posts .wp-block-post-template li > * {
  169. flex-basis: 100%;
  170. }
  171. .is-style-quadrat-diamond-posts .wp-block-post-template li:before {
  172. content: "";
  173. background: var(--wp--preset--color--tertiary);
  174. width: 375px;
  175. height: 375px;
  176. position: absolute;
  177. top: 0;
  178. left: 0;
  179. z-index: -1;
  180. opacity: 0;
  181. transition: all 0.4s ease-in-out;
  182. }
  183. .is-style-quadrat-diamond-posts .wp-block-post-template li:hover:before {
  184. opacity: 1;
  185. }
  186. .is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+1):before {
  187. transform: rotate(16deg) translate(-130px, -20px);
  188. }
  189. .is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+1):hover:before {
  190. transform: rotate(-8deg) translate(-110px, 0);
  191. }
  192. .is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+2):before {
  193. transform: rotate(24deg) translate(-130px, 20px);
  194. }
  195. .is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+2):hover:before {
  196. transform: rotate(16deg) translate(-110px, 40px);
  197. }
  198. .wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button.has-focus {
  199. border-style: var(--wp--custom--button--border--style);
  200. border-color: currentColor;
  201. border-width: var(--wp--custom--button--border--width);
  202. padding-top: var(--wp--custom--button--spacing--padding--top);
  203. padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
  204. padding-left: var(--wp--custom--button--spacing--padding--left);
  205. padding-right: var(--wp--custom--button--spacing--padding--right);
  206. }
  207. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-focus,
  208. .wp-block-search .wp-block-search__button:hover,
  209. .wp-block-search .wp-block-search__button:focus,
  210. .wp-block-search .wp-block-search__button.has-focus {
  211. border-style: var(--wp--custom--button--border--style);
  212. border-color: currentColor;
  213. border-width: var(--wp--custom--button--border--width);
  214. padding-top: var(--wp--custom--button--spacing--padding--top);
  215. padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
  216. padding-left: var(--wp--custom--button--spacing--padding--left);
  217. padding-right: var(--wp--custom--button--spacing--padding--right);
  218. }
  219. ul ul {
  220. list-style-type: disc;
  221. }
  222. @media (max-width: 599px) {
  223. .wp-block-media-text:not(.has-background) .wp-block-media-text__content {
  224. padding: 0;
  225. }
  226. }
  227. .wp-block-post-comments form input:not([type=submit]):not([type=checkbox]),
  228. .wp-block-post-comments form textarea {
  229. border: none;
  230. background: var(--wp--custom--color--tertiary);
  231. }
  232. .wp-block-post-comments .comment-body > p > a,
  233. .wp-block-post-comments .comment-edit-link {
  234. text-decoration: underline;
  235. }
  236. .wp-block-post-comments .comment-body > p > a:hover,
  237. .wp-block-post-comments .comment-edit-link:hover {
  238. text-decoration: none;
  239. }
  240. .wp-block-post-navigation-link {
  241. border-top: 1px solid;
  242. display: flex;
  243. padding-top: 1em;
  244. }
  245. .post-navigation-link-next {
  246. flex-direction: row-reverse;
  247. }
  248. .post-navigation-link-next a {
  249. margin-right: 0.5em;
  250. }
  251. .post-navigation-link-previous a {
  252. margin-left: 0.5em;
  253. }
  254. .next-prev-links .wp-block-column,
  255. .next-prev-links .wp-block-column:not(:only-child) {
  256. flex-basis: 40% !important;
  257. }
  258. .next-prev-links .wp-block-column:not(:first-child),
  259. .next-prev-links .wp-block-column:not(:only-child):not(:first-child) {
  260. margin-left: 20%;
  261. }
  262. .wp-block-post-template .wp-block-post-excerpt__more-text,
  263. .wp-block-query .wp-block-post-excerpt__more-text {
  264. font-size: var(--wp--custom--font-sizes--x-small) !important;
  265. }
  266. .wp-block-query-pagination {
  267. border-top: 1px solid var(--wp--custom--color--primary);
  268. }
  269. .wp-block-query-pagination .page-numbers {
  270. padding: 0 0.1em;
  271. }
  272. .wp-block-quote.is-style-large p {
  273. line-height: 1.4;
  274. }
  275. .wp-block-quote.is-style-large cite {
  276. text-align: unset;
  277. }
  278. .wp-block-table.is-style-stripes th,
  279. .wp-block-table th {
  280. font-weight: 400;
  281. }
  282. .wp-block-table.is-style-stripes tbody td,
  283. .wp-block-table tbody td {
  284. border-bottom-width: 0;
  285. border-top-width: 0;
  286. vertical-align: top;
  287. border-color: var(--wp--preset--color--primary);
  288. }
  289. .wp-block-table.is-style-stripes tr:first-child td,
  290. .wp-block-table tr:first-child td {
  291. border-top-width: 1px;
  292. }
  293. .wp-block-table.is-style-stripes tr:last-child td,
  294. .wp-block-table tr:last-child td {
  295. border-bottom-width: 1px;
  296. }
  297. .wp-block-pullquote.is-style-solid-color {
  298. padding: var(--wp--custom--gap--horizontal);
  299. }
  300. .has-primary-background-color {
  301. color: var(--wp--preset--color--background);
  302. }
  303. .wp-block-post-content a:not(.wp-block-button__link) {
  304. -webkit-text-decoration-line: underline;
  305. text-decoration-line: underline;
  306. }
  307. .wp-block-post-content a:not(.wp-block-button__link):hover {
  308. text-decoration: none;
  309. }
  310. a:not(.ab-item):not(.screen-reader-shortcut):active, a:not(.ab-item):not(.screen-reader-shortcut):focus {
  311. outline: 1px dotted currentcolor;
  312. text-decoration: none;
  313. }
  314. input[type=text],
  315. input[type=email],
  316. input[type=url],
  317. input[type=password],
  318. input[type=search],
  319. input[type=number],
  320. input[type=tel],
  321. input[type=range],
  322. input[type=date],
  323. input[type=month],
  324. input[type=week],
  325. input[type=time],
  326. input[type=submit],
  327. input[type=datetime],
  328. input[type=datetime-local],
  329. input[type=color],
  330. input[type=checkbox],
  331. textarea {
  332. font-size: var(--wp--custom--font-size--normal);
  333. }
  334. input[type=text]:focus,
  335. input[type=email]:focus,
  336. input[type=url]:focus,
  337. input[type=password]:focus,
  338. input[type=search]:focus,
  339. input[type=number]:focus,
  340. input[type=tel]:focus,
  341. input[type=range]:focus,
  342. input[type=date]:focus,
  343. input[type=month]:focus,
  344. input[type=week]:focus,
  345. input[type=time]:focus,
  346. input[type=submit]:focus,
  347. input[type=datetime]:focus,
  348. input[type=datetime-local]:focus,
  349. input[type=color]:focus,
  350. input[type=checkbox]:focus,
  351. textarea:focus {
  352. outline: 1px dotted currentColor;
  353. }
  354. .home .site-footer-container .wp-block-group:before {
  355. content: "";
  356. background-color: var(--wp--custom--color--tertiary);
  357. -webkit-clip-path: polygon(41vw 49vw, 100vw 68vw, 100vw 100vw, 18vw 100vw);
  358. clip-path: polygon(41vw 49vw, 100vw 68vw, 100vw 100vw, 18vw 100vw);
  359. position: absolute;
  360. height: 100vw;
  361. bottom: 0;
  362. left: 0;
  363. right: 0;
  364. z-index: -1;
  365. }
  366. .wp-site-blocks {
  367. position: relative;
  368. }
  369. .wp-site-blocks .site-header:before {
  370. content: "";
  371. background-color: var(--wp--custom--color--tertiary);
  372. position: absolute;
  373. bottom: 0;
  374. top: 0;
  375. left: 0;
  376. right: 0;
  377. z-index: -1;
  378. }
  379. @media (max-width: 599px) {
  380. .wp-site-blocks .site-header:before {
  381. -webkit-clip-path: polygon(0 0, 100vw 0, 100vw 50vw, 52vw 83vw, 0 20vw);
  382. clip-path: polygon(0 0, 100vw 0, 100vw 50vw, 52vw 83vw, 0 20vw);
  383. }
  384. }
  385. @media (min-width: 600px) {
  386. .wp-site-blocks .site-header:before {
  387. -webkit-clip-path: polygon(0 0, 100vw 0, 100vw 37vw, 52vw 70vw, 0 5vw);
  388. clip-path: polygon(0 0, 100vw 0, 100vw 37vw, 52vw 70vw, 0 5vw);
  389. }
  390. }
  391. @media (min-width: 960px) {
  392. .wp-site-blocks .site-header:before {
  393. -webkit-clip-path: polygon(13vw 0, 100vw 0, 100vw 16vw, 50vw 51vw);
  394. clip-path: polygon(13vw 0, 100vw 0, 100vw 16vw, 50vw 51vw);
  395. }
  396. }
  397. .wp-block-post-featured-image {
  398. margin-top: 0;
  399. }
  400. /* Add some extra space if there's no post title present. */
  401. .wp-block-post-date + .wp-block-group > .wp-block-post-featured-image,
  402. .wp-block-post-date + .wp-block-group > .wp-block-post-excerpt {
  403. margin-top: calc(2 * var(--wp--style--block-gap));
  404. }
  405. .post-meta {
  406. align-items: center;
  407. justify-content: center;
  408. }
  409. .post-meta.wp-block-group {
  410. gap: 0;
  411. }
  412. .post-meta > *:not(:first-child):before {
  413. color: var(--wp--custom--color--foreground);
  414. content: "·";
  415. margin-left: var(--wp--custom--gap--baseline);
  416. margin-right: var(--wp--custom--gap--baseline);
  417. }
  418. @media (max-width: 599px) {
  419. .post-meta {
  420. padding-top: 0 !important;
  421. margin-bottom: -20px;
  422. }
  423. }
  424. .wp-block-query .wp-block-post-featured-image {
  425. margin-top: calc(var(--wp--custom--gap--vertical) / 2);
  426. }
  427. /*# sourceMappingURL=theme.css.map */