You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1172 lines
19KB

  1. /*
  2. ! tailwindcss v3.2.7 | MIT License | https://tailwindcss.com
  3. *//*
  4. 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  5. 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
  6. */
  7. *,
  8. ::before,
  9. ::after {
  10. box-sizing: border-box; /* 1 */
  11. border-width: 0; /* 2 */
  12. border-style: solid; /* 2 */
  13. border-color: #e5e7eb; /* 2 */
  14. }
  15. ::before,
  16. ::after {
  17. --tw-content: '';
  18. }
  19. /*
  20. 1. Use a consistent sensible line-height in all browsers.
  21. 2. Prevent adjustments of font size after orientation changes in iOS.
  22. 3. Use a more readable tab size.
  23. 4. Use the user's configured `sans` font-family by default.
  24. 5. Use the user's configured `sans` font-feature-settings by default.
  25. */
  26. html {
  27. line-height: 1.5; /* 1 */
  28. -webkit-text-size-adjust: 100%; /* 2 */
  29. -moz-tab-size: 4; /* 3 */
  30. -o-tab-size: 4;
  31. tab-size: 4; /* 3 */
  32. font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  33. font-feature-settings: normal; /* 5 */
  34. }
  35. /*
  36. 1. Remove the margin in all browsers.
  37. 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
  38. */
  39. body {
  40. margin: 0; /* 1 */
  41. line-height: inherit; /* 2 */
  42. }
  43. /*
  44. 1. Add the correct height in Firefox.
  45. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  46. 3. Ensure horizontal rules are visible by default.
  47. */
  48. hr {
  49. height: 0; /* 1 */
  50. color: inherit; /* 2 */
  51. border-top-width: 1px; /* 3 */
  52. }
  53. /*
  54. Add the correct text decoration in Chrome, Edge, and Safari.
  55. */
  56. abbr:where([title]) {
  57. -webkit-text-decoration: underline dotted;
  58. text-decoration: underline dotted;
  59. }
  60. /*
  61. Remove the default font size and weight for headings.
  62. */
  63. h1,
  64. h2,
  65. h3,
  66. h4,
  67. h5,
  68. h6 {
  69. font-size: inherit;
  70. font-weight: inherit;
  71. }
  72. /*
  73. Reset links to optimize for opt-in styling instead of opt-out.
  74. */
  75. a {
  76. color: inherit;
  77. text-decoration: inherit;
  78. }
  79. /*
  80. Add the correct font weight in Edge and Safari.
  81. */
  82. b,
  83. strong {
  84. font-weight: bolder;
  85. }
  86. /*
  87. 1. Use the user's configured `mono` font family by default.
  88. 2. Correct the odd `em` font sizing in all browsers.
  89. */
  90. code,
  91. kbd,
  92. samp,
  93. pre {
  94. font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  95. font-size: 1em; /* 2 */
  96. }
  97. /*
  98. Add the correct font size in all browsers.
  99. */
  100. small {
  101. font-size: 80%;
  102. }
  103. /*
  104. Prevent `sub` and `sup` elements from affecting the line height in all browsers.
  105. */
  106. sub,
  107. sup {
  108. font-size: 75%;
  109. line-height: 0;
  110. position: relative;
  111. vertical-align: baseline;
  112. }
  113. sub {
  114. bottom: -0.25em;
  115. }
  116. sup {
  117. top: -0.5em;
  118. }
  119. /*
  120. 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  121. 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  122. 3. Remove gaps between table borders by default.
  123. */
  124. table {
  125. text-indent: 0; /* 1 */
  126. border-color: inherit; /* 2 */
  127. border-collapse: collapse; /* 3 */
  128. }
  129. /*
  130. 1. Change the font styles in all browsers.
  131. 2. Remove the margin in Firefox and Safari.
  132. 3. Remove default padding in all browsers.
  133. */
  134. button,
  135. input,
  136. optgroup,
  137. select,
  138. textarea {
  139. font-family: inherit; /* 1 */
  140. font-size: 100%; /* 1 */
  141. font-weight: inherit; /* 1 */
  142. line-height: inherit; /* 1 */
  143. color: inherit; /* 1 */
  144. margin: 0; /* 2 */
  145. padding: 0; /* 3 */
  146. }
  147. /*
  148. Remove the inheritance of text transform in Edge and Firefox.
  149. */
  150. button,
  151. select {
  152. text-transform: none;
  153. }
  154. /*
  155. 1. Correct the inability to style clickable types in iOS and Safari.
  156. 2. Remove default button styles.
  157. */
  158. button,
  159. [type='button'],
  160. [type='reset'],
  161. [type='submit'] {
  162. -webkit-appearance: button; /* 1 */
  163. background-color: transparent; /* 2 */
  164. background-image: none; /* 2 */
  165. }
  166. /*
  167. Use the modern Firefox focus style for all focusable elements.
  168. */
  169. :-moz-focusring {
  170. outline: auto;
  171. }
  172. /*
  173. Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
  174. */
  175. :-moz-ui-invalid {
  176. box-shadow: none;
  177. }
  178. /*
  179. Add the correct vertical alignment in Chrome and Firefox.
  180. */
  181. progress {
  182. vertical-align: baseline;
  183. }
  184. /*
  185. Correct the cursor style of increment and decrement buttons in Safari.
  186. */
  187. ::-webkit-inner-spin-button,
  188. ::-webkit-outer-spin-button {
  189. height: auto;
  190. }
  191. /*
  192. 1. Correct the odd appearance in Chrome and Safari.
  193. 2. Correct the outline style in Safari.
  194. */
  195. [type='search'] {
  196. -webkit-appearance: textfield; /* 1 */
  197. outline-offset: -2px; /* 2 */
  198. }
  199. /*
  200. Remove the inner padding in Chrome and Safari on macOS.
  201. */
  202. ::-webkit-search-decoration {
  203. -webkit-appearance: none;
  204. }
  205. /*
  206. 1. Correct the inability to style clickable types in iOS and Safari.
  207. 2. Change font properties to `inherit` in Safari.
  208. */
  209. ::-webkit-file-upload-button {
  210. -webkit-appearance: button; /* 1 */
  211. font: inherit; /* 2 */
  212. }
  213. /*
  214. Add the correct display in Chrome and Safari.
  215. */
  216. summary {
  217. display: list-item;
  218. }
  219. /*
  220. Removes the default spacing and border for appropriate elements.
  221. */
  222. blockquote,
  223. dl,
  224. dd,
  225. h1,
  226. h2,
  227. h3,
  228. h4,
  229. h5,
  230. h6,
  231. hr,
  232. figure,
  233. p,
  234. pre {
  235. margin: 0;
  236. }
  237. fieldset {
  238. margin: 0;
  239. padding: 0;
  240. }
  241. legend {
  242. padding: 0;
  243. }
  244. ol,
  245. ul,
  246. menu {
  247. list-style: none;
  248. margin: 0;
  249. padding: 0;
  250. }
  251. /*
  252. Prevent resizing textareas horizontally by default.
  253. */
  254. textarea {
  255. resize: vertical;
  256. }
  257. /*
  258. 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
  259. 2. Set the default placeholder color to the user's configured gray 400 color.
  260. */
  261. input::-moz-placeholder, textarea::-moz-placeholder {
  262. opacity: 1; /* 1 */
  263. color: #9ca3af; /* 2 */
  264. }
  265. input::placeholder,
  266. textarea::placeholder {
  267. opacity: 1; /* 1 */
  268. color: #9ca3af; /* 2 */
  269. }
  270. /*
  271. Set the default cursor for buttons.
  272. */
  273. button,
  274. [role="button"] {
  275. cursor: pointer;
  276. }
  277. /*
  278. Make sure disabled buttons don't get the pointer cursor.
  279. */
  280. :disabled {
  281. cursor: default;
  282. }
  283. /*
  284. 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  285. 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
  286. This can trigger a poorly considered lint error in some tools but is included by design.
  287. */
  288. img,
  289. svg,
  290. video,
  291. canvas,
  292. audio,
  293. iframe,
  294. embed,
  295. object {
  296. display: block; /* 1 */
  297. vertical-align: middle; /* 2 */
  298. }
  299. /*
  300. Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
  301. */
  302. img,
  303. video {
  304. max-width: 100%;
  305. height: auto;
  306. }
  307. /* Make elements with the HTML hidden attribute stay hidden by default */
  308. [hidden] {
  309. display: none;
  310. }
  311. *, ::before, ::after {
  312. --tw-border-spacing-x: 0;
  313. --tw-border-spacing-y: 0;
  314. --tw-translate-x: 0;
  315. --tw-translate-y: 0;
  316. --tw-rotate: 0;
  317. --tw-skew-x: 0;
  318. --tw-skew-y: 0;
  319. --tw-scale-x: 1;
  320. --tw-scale-y: 1;
  321. --tw-pan-x: ;
  322. --tw-pan-y: ;
  323. --tw-pinch-zoom: ;
  324. --tw-scroll-snap-strictness: proximity;
  325. --tw-ordinal: ;
  326. --tw-slashed-zero: ;
  327. --tw-numeric-figure: ;
  328. --tw-numeric-spacing: ;
  329. --tw-numeric-fraction: ;
  330. --tw-ring-inset: ;
  331. --tw-ring-offset-width: 0px;
  332. --tw-ring-offset-color: #fff;
  333. --tw-ring-color: rgb(59 130 246 / 0.5);
  334. --tw-ring-offset-shadow: 0 0 #0000;
  335. --tw-ring-shadow: 0 0 #0000;
  336. --tw-shadow: 0 0 #0000;
  337. --tw-shadow-colored: 0 0 #0000;
  338. --tw-blur: ;
  339. --tw-brightness: ;
  340. --tw-contrast: ;
  341. --tw-grayscale: ;
  342. --tw-hue-rotate: ;
  343. --tw-invert: ;
  344. --tw-saturate: ;
  345. --tw-sepia: ;
  346. --tw-drop-shadow: ;
  347. --tw-backdrop-blur: ;
  348. --tw-backdrop-brightness: ;
  349. --tw-backdrop-contrast: ;
  350. --tw-backdrop-grayscale: ;
  351. --tw-backdrop-hue-rotate: ;
  352. --tw-backdrop-invert: ;
  353. --tw-backdrop-opacity: ;
  354. --tw-backdrop-saturate: ;
  355. --tw-backdrop-sepia: ;
  356. }
  357. ::backdrop {
  358. --tw-border-spacing-x: 0;
  359. --tw-border-spacing-y: 0;
  360. --tw-translate-x: 0;
  361. --tw-translate-y: 0;
  362. --tw-rotate: 0;
  363. --tw-skew-x: 0;
  364. --tw-skew-y: 0;
  365. --tw-scale-x: 1;
  366. --tw-scale-y: 1;
  367. --tw-pan-x: ;
  368. --tw-pan-y: ;
  369. --tw-pinch-zoom: ;
  370. --tw-scroll-snap-strictness: proximity;
  371. --tw-ordinal: ;
  372. --tw-slashed-zero: ;
  373. --tw-numeric-figure: ;
  374. --tw-numeric-spacing: ;
  375. --tw-numeric-fraction: ;
  376. --tw-ring-inset: ;
  377. --tw-ring-offset-width: 0px;
  378. --tw-ring-offset-color: #fff;
  379. --tw-ring-color: rgb(59 130 246 / 0.5);
  380. --tw-ring-offset-shadow: 0 0 #0000;
  381. --tw-ring-shadow: 0 0 #0000;
  382. --tw-shadow: 0 0 #0000;
  383. --tw-shadow-colored: 0 0 #0000;
  384. --tw-blur: ;
  385. --tw-brightness: ;
  386. --tw-contrast: ;
  387. --tw-grayscale: ;
  388. --tw-hue-rotate: ;
  389. --tw-invert: ;
  390. --tw-saturate: ;
  391. --tw-sepia: ;
  392. --tw-drop-shadow: ;
  393. --tw-backdrop-blur: ;
  394. --tw-backdrop-brightness: ;
  395. --tw-backdrop-contrast: ;
  396. --tw-backdrop-grayscale: ;
  397. --tw-backdrop-hue-rotate: ;
  398. --tw-backdrop-invert: ;
  399. --tw-backdrop-opacity: ;
  400. --tw-backdrop-saturate: ;
  401. --tw-backdrop-sepia: ;
  402. }
  403. .container {
  404. width: 100%;
  405. }
  406. @media (min-width: 640px) {
  407. .container {
  408. max-width: 640px;
  409. }
  410. }
  411. @media (min-width: 768px) {
  412. .container {
  413. max-width: 768px;
  414. }
  415. }
  416. @media (min-width: 1024px) {
  417. .container {
  418. max-width: 1024px;
  419. }
  420. }
  421. @media (min-width: 1280px) {
  422. .container {
  423. max-width: 1280px;
  424. }
  425. }
  426. @media (min-width: 1536px) {
  427. .container {
  428. max-width: 1536px;
  429. }
  430. }
  431. .pointer-events-none {
  432. pointer-events: none;
  433. }
  434. .collapse {
  435. visibility: collapse;
  436. }
  437. .static {
  438. position: static;
  439. }
  440. .fixed {
  441. position: fixed;
  442. }
  443. .absolute {
  444. position: absolute;
  445. }
  446. .relative {
  447. position: relative;
  448. }
  449. .sticky {
  450. position: sticky;
  451. }
  452. .left-0 {
  453. left: 0px;
  454. }
  455. .right-10 {
  456. right: 2.5rem;
  457. }
  458. .top-0 {
  459. top: 0px;
  460. }
  461. .top-10 {
  462. top: 2.5rem;
  463. }
  464. .z-10 {
  465. z-index: 10;
  466. }
  467. .z-20 {
  468. z-index: 20;
  469. }
  470. .z-50 {
  471. z-index: 50;
  472. }
  473. .col-span-2 {
  474. grid-column: span 2 / span 2;
  475. }
  476. .col-span-3 {
  477. grid-column: span 3 / span 3;
  478. }
  479. .row-span-2 {
  480. grid-row: span 2 / span 2;
  481. }
  482. .row-span-3 {
  483. grid-row: span 3 / span 3;
  484. }
  485. .row-span-1 {
  486. grid-row: span 1 / span 1;
  487. }
  488. .row-start-1 {
  489. grid-row-start: 1;
  490. }
  491. .float-right {
  492. float: right;
  493. }
  494. .m-16 {
  495. margin: 4rem;
  496. }
  497. .my-4 {
  498. margin-top: 1rem;
  499. margin-bottom: 1rem;
  500. }
  501. .my-8 {
  502. margin-top: 2rem;
  503. margin-bottom: 2rem;
  504. }
  505. .mx-auto {
  506. margin-left: auto;
  507. margin-right: auto;
  508. }
  509. .mb-16 {
  510. margin-bottom: 4rem;
  511. }
  512. .mb-2 {
  513. margin-bottom: 0.5rem;
  514. }
  515. .mb-3 {
  516. margin-bottom: 0.75rem;
  517. }
  518. .mb-4 {
  519. margin-bottom: 1rem;
  520. }
  521. .mb-8 {
  522. margin-bottom: 2rem;
  523. }
  524. .mb-\[1em\] {
  525. margin-bottom: 1em;
  526. }
  527. .ml-4 {
  528. margin-left: 1rem;
  529. }
  530. .ml-auto {
  531. margin-left: auto;
  532. }
  533. .mr-8 {
  534. margin-right: 2rem;
  535. }
  536. .mr-auto {
  537. margin-right: auto;
  538. }
  539. .mt-20 {
  540. margin-top: 5rem;
  541. }
  542. .mt-3 {
  543. margin-top: 0.75rem;
  544. }
  545. .mt-4 {
  546. margin-top: 1rem;
  547. }
  548. .mr-2 {
  549. margin-right: 0.5rem;
  550. }
  551. .block {
  552. display: block;
  553. }
  554. .inline-block {
  555. display: inline-block;
  556. }
  557. .grid {
  558. display: grid;
  559. }
  560. .hidden {
  561. display: none;
  562. }
  563. .h-10 {
  564. height: 2.5rem;
  565. }
  566. .h-20 {
  567. height: 5rem;
  568. }
  569. .h-40 {
  570. height: 10rem;
  571. }
  572. .h-full {
  573. height: 100%;
  574. }
  575. .h-screen {
  576. height: 100vh;
  577. }
  578. .h-\[50rem\] {
  579. height: 50rem;
  580. }
  581. .h-\[25rem\] {
  582. height: 25rem;
  583. }
  584. .h-\[clamp\(20rem\2c 30rem\2c 40rem\)\] {
  585. height: clamp(20rem,30rem,40rem);
  586. }
  587. .h-12 {
  588. height: 3rem;
  589. }
  590. .max-h-\[30rem\] {
  591. max-height: 30rem;
  592. }
  593. .w-10 {
  594. width: 2.5rem;
  595. }
  596. .w-20 {
  597. width: 5rem;
  598. }
  599. .w-40 {
  600. width: 10rem;
  601. }
  602. .w-\[25rem\] {
  603. width: 25rem;
  604. }
  605. .w-\[30rem\] {
  606. width: 30rem;
  607. }
  608. .w-full {
  609. width: 100%;
  610. }
  611. .w-\[32rem\] {
  612. width: 32rem;
  613. }
  614. .w-60 {
  615. width: 15rem;
  616. }
  617. .w-52 {
  618. width: 13rem;
  619. }
  620. .min-w-\[35rem\] {
  621. min-width: 35rem;
  622. }
  623. .min-w-\[32rem\] {
  624. min-width: 32rem;
  625. }
  626. .max-w-\[30rem\] {
  627. max-width: 30rem;
  628. }
  629. .max-w-\[65ch\] {
  630. max-width: 65ch;
  631. }
  632. .max-w-\[20rem\] {
  633. max-width: 20rem;
  634. }
  635. .shrink-0 {
  636. flex-shrink: 0;
  637. }
  638. .rotate-\[15deg\] {
  639. --tw-rotate: 15deg;
  640. transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  641. }
  642. .cursor-pointer {
  643. cursor: pointer;
  644. }
  645. .grid-flow-col {
  646. grid-auto-flow: column;
  647. }
  648. .grid-cols-2 {
  649. grid-template-columns: repeat(2, minmax(0, 1fr));
  650. }
  651. .grid-cols-\[2fr\2c 1fr\] {
  652. grid-template-columns: 2fr 1fr;
  653. }
  654. .items-start {
  655. align-items: flex-start;
  656. }
  657. .justify-start {
  658. justify-content: flex-start;
  659. }
  660. .justify-between {
  661. justify-content: space-between;
  662. }
  663. .gap-8 {
  664. gap: 2rem;
  665. }
  666. .overflow-x-scroll {
  667. overflow-x: scroll;
  668. }
  669. .overflow-y-scroll {
  670. overflow-y: scroll;
  671. }
  672. .overscroll-none {
  673. overscroll-behavior: none;
  674. }
  675. .truncate {
  676. overflow: hidden;
  677. text-overflow: ellipsis;
  678. white-space: nowrap;
  679. }
  680. .border-2 {
  681. border-width: 2px;
  682. }
  683. .border-b-2 {
  684. border-bottom-width: 2px;
  685. }
  686. .border-b-\[2px\] {
  687. border-bottom-width: 2px;
  688. }
  689. .border-black {
  690. --tw-border-opacity: 1;
  691. border-color: rgb(0 0 0 / var(--tw-border-opacity));
  692. }
  693. .bg-black\/20 {
  694. background-color: rgb(0 0 0 / 0.2);
  695. }
  696. .bg-white {
  697. --tw-bg-opacity: 1;
  698. background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  699. }
  700. .object-contain {
  701. -o-object-fit: contain;
  702. object-fit: contain;
  703. }
  704. .p-1 {
  705. padding: 0.25rem;
  706. }
  707. .p-4 {
  708. padding: 1rem;
  709. }
  710. .py-3 {
  711. padding-top: 0.75rem;
  712. padding-bottom: 0.75rem;
  713. }
  714. .pb-8 {
  715. padding-bottom: 2rem;
  716. }
  717. .pl-44 {
  718. padding-left: 11rem;
  719. }
  720. .pl-20 {
  721. padding-left: 5rem;
  722. }
  723. .pl-24 {
  724. padding-left: 6rem;
  725. }
  726. .pl-16 {
  727. padding-left: 4rem;
  728. }
  729. .pt-3 {
  730. padding-top: 0.75rem;
  731. }
  732. .pt-4 {
  733. padding-top: 1rem;
  734. }
  735. .pl-12 {
  736. padding-left: 3rem;
  737. }
  738. .pb-16 {
  739. padding-bottom: 4rem;
  740. }
  741. .pb-12 {
  742. padding-bottom: 3rem;
  743. }
  744. .text-center {
  745. text-align: center;
  746. }
  747. .align-bottom {
  748. vertical-align: bottom;
  749. }
  750. .text-base {
  751. font-size: 1.25rem;
  752. line-height: 1.22;
  753. }
  754. .text-sm {
  755. font-size: 1rem;
  756. line-height: 1.35;
  757. }
  758. .text-xl {
  759. font-size: 1.25rem;
  760. line-height: 1.75rem;
  761. }
  762. .text-xs {
  763. font-size: 0.75rem;
  764. line-height: 1rem;
  765. }
  766. .uppercase {
  767. text-transform: uppercase;
  768. }
  769. .capitalize {
  770. text-transform: capitalize;
  771. }
  772. .italic {
  773. font-style: italic;
  774. }
  775. .grayscale {
  776. --tw-grayscale: grayscale(100%);
  777. filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  778. }
  779. .filter {
  780. filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  781. }
  782. .transition-opacity {
  783. transition-property: opacity;
  784. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  785. transition-duration: 150ms;
  786. }
  787. @font-face {
  788. font-family: 'ag';
  789. src: url('ApfelGrotezk-Regular.woff') format("woff");
  790. }
  791. @font-face {
  792. font-family: 'ag-brukt';
  793. src: url('ApfelGrotezk-Brukt.woff') format("woff");
  794. }
  795. @font-face {
  796. font-family: 'ag-fett';
  797. src: url('ApfelGrotezk-Fett.woff') format("woff");
  798. }
  799. @font-face {
  800. font-family: 'dauphine';
  801. src: url('Dauphine-Regular.ttf') format("truetype");
  802. }
  803. @font-face {
  804. font-family: 'dauphine';
  805. src: url('Dauphine-Italic.ttf') format("truetype");
  806. font-style: italic;
  807. }
  808. @font-face {
  809. font-family: 'robo';
  810. src: url('roboto-regular.ttf') format("truetype");
  811. }
  812. @font-face {
  813. font-family: 'robo';
  814. src: url('roboto-italic.ttf') format("truetype");
  815. font-style: italic;
  816. }
  817. @font-face {
  818. font-family: 'cirrus';
  819. src: url('CirrusCumulus.woff') format("woff");
  820. }
  821. body {
  822. font-family: 'dauphine';
  823. }
  824. strong {
  825. font-family: 'ag-fett';
  826. }
  827. .book {
  828. font-family: 'ag-fett', 'Arial Black';
  829. }
  830. .tool {
  831. font-family: 'robo';
  832. }
  833. .practice {
  834. font-family: 'cirrus';
  835. }
  836. .std-margin {
  837. padding: 0.5rem;
  838. }
  839. .cell-margin {
  840. padding: 1rem;
  841. }
  842. .block-margin {
  843. margin-bottom: 2rem;
  844. }
  845. .std-padding {
  846. padding: 0.5rem;
  847. }
  848. .std-grid {
  849. display: grid;
  850. }
  851. @media (min-width: 768px) {
  852. .std-grid {
  853. grid-template-columns: repeat(2, minmax(0, 1fr));
  854. }
  855. }
  856. @media (min-width: 1024px) {
  857. .std-grid {
  858. grid-template-columns: repeat(3, minmax(0, 1fr));
  859. }
  860. }
  861. .cell {
  862. position: relative;
  863. padding: 1rem;
  864. }
  865. .cell::before {
  866. content: '';
  867. position: absolute;
  868. top: 10px;
  869. right: 0px;
  870. width: 2px;
  871. height: calc(100% - 20px);
  872. background-color: black;
  873. }
  874. .cell::after {
  875. content: '';
  876. position: absolute;
  877. bottom: 0px;
  878. left: 8px;
  879. width: calc(100% - 20px);
  880. height: 2px;
  881. background-color: black;
  882. }
  883. .slash {
  884. position: relative;
  885. }
  886. .slash::after {
  887. content: '';
  888. position: absolute;
  889. bottom: 0px;
  890. left: 8px;
  891. width: calc(100% - 20px);
  892. height: 3px;
  893. background-color: black;
  894. transform-origin: 100% 100%;
  895. transform: rotate(45deg);
  896. }
  897. /* .meta {
  898. transform: rotate(-3.5deg);
  899. } */
  900. .facts {
  901. display: grid;
  902. gap: 1rem;
  903. }
  904. @media (min-width: 1024px) {
  905. .facts {
  906. grid-template-columns: repeat(2, minmax(0, 1fr));
  907. }
  908. }
  909. .facts h3 {
  910. }
  911. .facts > * {
  912. max-width: 65ch;
  913. }
  914. a:hover {
  915. opacity: 0.6;
  916. }
  917. h2,h3 {
  918. -webkit-hyphens: auto;
  919. hyphens: auto;
  920. }
  921. h2 {
  922. font-size: 2.8rem;
  923. line-height: 1;
  924. }
  925. h3 {
  926. font-size: 1.25rem;
  927. line-height: 1.75rem;
  928. letter-spacing: 0.025em;
  929. font-family: 'ag-fett';
  930. }
  931. .indent {
  932. margin-left: 1rem;
  933. margin-right: 1rem;
  934. margin-top: 1rem;
  935. margin-bottom: 1rem;
  936. }
  937. .text > h3 {
  938. margin-left: 1.5rem;
  939. margin-top: 2rem;
  940. }
  941. h2 + *,
  942. h3 + * {
  943. /* @apply ml-6 mt-1; */
  944. }
  945. p + p {
  946. margin-top: 1em;
  947. }
  948. .loading {
  949. opacity: 0;
  950. background-image: linear-gradient(to top, rgb(103, 48, 255,0.8), rgb(255, 255, 255, 0),rgb(255, 255, 255, 0));
  951. }
  952. .htmx-request .loading {
  953. transition: opacity 7000ms cubic-bezier(.16, .01, .31, .99);
  954. opacity: 1;
  955. display: block;
  956. }
  957. #modal-content main {
  958. opacity: 1;
  959. }
  960. .htmx-request #modal-content main {
  961. /* transition: opacity 0.2s ease; */
  962. opacity: 0;
  963. }
  964. .htmx-request .loading {
  965. opacity: 1;
  966. }
  967. .active {
  968. --tw-bg-opacity: 1;
  969. background-color: rgb(255 255 0 / var(--tw-bg-opacity));
  970. }
  971. .link:hover {
  972. --tw-bg-opacity: 1;
  973. background-color: rgb(255 255 0 / var(--tw-bg-opacity));
  974. }
  975. details[open]::details-content {
  976. display: contents;
  977. }
  978. .text a {
  979. /* font-family: 'ag-fett'; */
  980. text-decoration: underline;
  981. }
  982. #resources.expanded .filter-header::before {
  983. content:'- ';
  984. }
  985. #resources .filter-header::before {
  986. content:'+ ';
  987. }
  988. .hover\:opacity-60:hover {
  989. opacity: 0.6;
  990. }
  991. @media (min-width: 1024px) {
  992. .lg\:mt-16 {
  993. margin-top: 4rem;
  994. }
  995. .lg\:block {
  996. display: block;
  997. }
  998. .lg\:flex {
  999. display: flex;
  1000. }
  1001. .lg\:grid-cols-4 {
  1002. grid-template-columns: repeat(4, minmax(0, 1fr));
  1003. }
  1004. .lg\:grid-rows-3 {
  1005. grid-template-rows: repeat(3, minmax(0, 1fr));
  1006. }
  1007. .lg\:grid-rows-2 {
  1008. grid-template-rows: repeat(2, minmax(0, 1fr));
  1009. }
  1010. .lg\:grid-rows-\[1fr\2c 1fr\] {
  1011. grid-template-rows: 1fr 1fr;
  1012. }
  1013. .lg\:grid-rows-\[1fr\2c 1fr\2c 1fr\] {
  1014. grid-template-rows: 1fr 1fr 1fr;
  1015. }
  1016. .lg\:grid-rows-\[3fr\2c 1fr\2c 1fr\] {
  1017. grid-template-rows: 3fr 1fr 1fr;
  1018. }
  1019. .lg\:grid-rows-\[auto\2c auto\2c auto\] {
  1020. grid-template-rows: auto auto auto;
  1021. }
  1022. }