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.

1425 lines
23KB

  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. .static {
  435. position: static;
  436. }
  437. .fixed {
  438. position: fixed;
  439. }
  440. .absolute {
  441. position: absolute;
  442. }
  443. .sticky {
  444. position: sticky;
  445. }
  446. .left-0 {
  447. left: 0px;
  448. }
  449. .right-10 {
  450. right: 2.5rem;
  451. }
  452. .top-0 {
  453. top: 0px;
  454. }
  455. .top-10 {
  456. top: 2.5rem;
  457. }
  458. .z-10 {
  459. z-index: 10;
  460. }
  461. .z-20 {
  462. z-index: 20;
  463. }
  464. .z-30 {
  465. z-index: 30;
  466. }
  467. .z-50 {
  468. z-index: 50;
  469. }
  470. .z-\[60\] {
  471. z-index: 60;
  472. }
  473. .col-span-2 {
  474. grid-column: span 2 / span 2;
  475. }
  476. .row-start-1 {
  477. grid-row-start: 1;
  478. }
  479. .float-right {
  480. float: right;
  481. }
  482. .m-16 {
  483. margin: 4rem;
  484. }
  485. .m-4 {
  486. margin: 1rem;
  487. }
  488. .mx-2 {
  489. margin-left: 0.5rem;
  490. margin-right: 0.5rem;
  491. }
  492. .my-8 {
  493. margin-top: 2rem;
  494. margin-bottom: 2rem;
  495. }
  496. .mb-2 {
  497. margin-bottom: 0.5rem;
  498. }
  499. .mb-3 {
  500. margin-bottom: 0.75rem;
  501. }
  502. .mb-4 {
  503. margin-bottom: 1rem;
  504. }
  505. .mb-8 {
  506. margin-bottom: 2rem;
  507. }
  508. .mb-\[1em\] {
  509. margin-bottom: 1em;
  510. }
  511. .ml-3 {
  512. margin-left: 0.75rem;
  513. }
  514. .ml-auto {
  515. margin-left: auto;
  516. }
  517. .mr-2 {
  518. margin-right: 0.5rem;
  519. }
  520. .mr-auto {
  521. margin-right: auto;
  522. }
  523. .mt-16 {
  524. margin-top: 4rem;
  525. }
  526. .mt-20 {
  527. margin-top: 5rem;
  528. }
  529. .mt-3 {
  530. margin-top: 0.75rem;
  531. }
  532. .block {
  533. display: block;
  534. }
  535. .inline-block {
  536. display: inline-block;
  537. }
  538. .flex {
  539. display: flex;
  540. }
  541. .grid {
  542. display: grid;
  543. }
  544. .hidden {
  545. display: none;
  546. }
  547. .h-10 {
  548. height: 2.5rem;
  549. }
  550. .h-14 {
  551. height: 3.5rem;
  552. }
  553. .h-20 {
  554. height: 5rem;
  555. }
  556. .h-40 {
  557. height: 10rem;
  558. }
  559. .h-fit {
  560. height: -moz-fit-content;
  561. height: fit-content;
  562. }
  563. .h-full {
  564. height: 100%;
  565. }
  566. .h-screen {
  567. height: 100vh;
  568. }
  569. .w-10 {
  570. width: 2.5rem;
  571. }
  572. .w-20 {
  573. width: 5rem;
  574. }
  575. .w-40 {
  576. width: 10rem;
  577. }
  578. .w-48 {
  579. width: 12rem;
  580. }
  581. .w-\[25rem\] {
  582. width: 25rem;
  583. }
  584. .w-\[28vw\] {
  585. width: 28vw;
  586. }
  587. .w-\[30rem\] {
  588. width: 30rem;
  589. }
  590. .w-\[35rem\] {
  591. width: 35rem;
  592. }
  593. .w-fit {
  594. width: -moz-fit-content;
  595. width: fit-content;
  596. }
  597. .w-full {
  598. width: 100%;
  599. }
  600. .min-w-\[5rem\] {
  601. min-width: 5rem;
  602. }
  603. .max-w-\[30rem\] {
  604. max-width: 30rem;
  605. }
  606. .max-w-\[65ch\] {
  607. max-width: 65ch;
  608. }
  609. .-rotate-12 {
  610. --tw-rotate: -12deg;
  611. 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));
  612. }
  613. .rotate-\[15deg\] {
  614. --tw-rotate: 15deg;
  615. 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));
  616. }
  617. .cursor-pointer {
  618. cursor: pointer;
  619. }
  620. .grid-flow-col {
  621. grid-auto-flow: column;
  622. }
  623. .grid-rows-1 {
  624. grid-template-rows: repeat(1, minmax(0, 1fr));
  625. }
  626. .content-start {
  627. align-content: flex-start;
  628. }
  629. .items-center {
  630. align-items: center;
  631. }
  632. .items-stretch {
  633. align-items: stretch;
  634. }
  635. .justify-center {
  636. justify-content: center;
  637. }
  638. .justify-between {
  639. justify-content: space-between;
  640. }
  641. .gap-8 {
  642. gap: 2rem;
  643. }
  644. .overflow-x-auto {
  645. overflow-x: auto;
  646. }
  647. .overflow-y-auto {
  648. overflow-y: auto;
  649. }
  650. .overflow-y-scroll {
  651. overflow-y: scroll;
  652. }
  653. .overscroll-none {
  654. overscroll-behavior: none;
  655. }
  656. .truncate {
  657. overflow: hidden;
  658. text-overflow: ellipsis;
  659. white-space: nowrap;
  660. }
  661. .rounded-full {
  662. border-radius: 9999px;
  663. }
  664. .border-b-2 {
  665. border-bottom-width: 2px;
  666. }
  667. .border-b-\[2px\] {
  668. border-bottom-width: 2px;
  669. }
  670. .border-l-2 {
  671. border-left-width: 2px;
  672. }
  673. .border-r-2 {
  674. border-right-width: 2px;
  675. }
  676. .border-black {
  677. --tw-border-opacity: 1;
  678. border-color: rgb(0 0 0 / var(--tw-border-opacity));
  679. }
  680. .bg-black {
  681. --tw-bg-opacity: 1;
  682. background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  683. }
  684. .bg-white {
  685. --tw-bg-opacity: 1;
  686. background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  687. }
  688. .bg-red-400 {
  689. --tw-bg-opacity: 1;
  690. background-color: rgb(248 113 113 / var(--tw-bg-opacity));
  691. }
  692. .object-contain {
  693. -o-object-fit: contain;
  694. object-fit: contain;
  695. }
  696. .p-4 {
  697. padding: 1rem;
  698. }
  699. .px-4 {
  700. padding-left: 1rem;
  701. padding-right: 1rem;
  702. }
  703. .px-8 {
  704. padding-left: 2rem;
  705. padding-right: 2rem;
  706. }
  707. .py-1 {
  708. padding-top: 0.25rem;
  709. padding-bottom: 0.25rem;
  710. }
  711. .py-3 {
  712. padding-top: 0.75rem;
  713. padding-bottom: 0.75rem;
  714. }
  715. .py-6 {
  716. padding-top: 1.5rem;
  717. padding-bottom: 1.5rem;
  718. }
  719. .py-8 {
  720. padding-top: 2rem;
  721. padding-bottom: 2rem;
  722. }
  723. .pl-1 {
  724. padding-left: 0.25rem;
  725. }
  726. .pr-40 {
  727. padding-right: 10rem;
  728. }
  729. .pr-8 {
  730. padding-right: 2rem;
  731. }
  732. .text-center {
  733. text-align: center;
  734. }
  735. .text-right {
  736. text-align: right;
  737. }
  738. .text-base {
  739. font-size: 1.1rem;
  740. line-height: 1.22;
  741. }
  742. .text-sm {
  743. font-size: 0.95rem;
  744. line-height: 1.35;
  745. }
  746. .text-xs {
  747. font-size: 0.75rem;
  748. line-height: 1rem;
  749. }
  750. .capitalize {
  751. text-transform: capitalize;
  752. }
  753. .italic {
  754. font-style: italic;
  755. }
  756. .text-\[\#f52d2d\] {
  757. --tw-text-opacity: 1;
  758. color: rgb(245 45 45 / var(--tw-text-opacity));
  759. }
  760. .text-white {
  761. --tw-text-opacity: 1;
  762. color: rgb(255 255 255 / var(--tw-text-opacity));
  763. }
  764. .grayscale {
  765. --tw-grayscale: grayscale(100%);
  766. 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);
  767. }
  768. .filter {
  769. 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);
  770. }
  771. .transition-opacity {
  772. transition-property: opacity;
  773. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  774. transition-duration: 150ms;
  775. }
  776. @font-face {
  777. font-family: 'ag';
  778. src: url('ApfelGrotezk-Regular.woff') format("woff");
  779. }
  780. @font-face {
  781. font-family: 'ag-brukt';
  782. src: url('ApfelGrotezk-Brukt.woff') format("woff");
  783. }
  784. @font-face {
  785. font-family: 'ag-fett';
  786. src: url('ApfelGrotezk-Fett.woff') format("woff");
  787. }
  788. @font-face {
  789. font-family: 'dauphine';
  790. src: url('Dauphine-Regular.ttf') format("truetype");
  791. }
  792. @font-face {
  793. font-family: 'dauphine';
  794. src: url('Dauphine-Italic.ttf') format("truetype");
  795. font-style: italic;
  796. }
  797. @font-face {
  798. font-family: 'robo';
  799. src: url('roboto-regular.ttf') format("truetype");
  800. }
  801. @font-face {
  802. font-family: 'robo';
  803. src: url('roboto-italic.ttf') format("truetype");
  804. font-style: italic;
  805. }
  806. @font-face {
  807. font-family: 'cirrus';
  808. src: url('CirrusCumulus.woff') format("woff");
  809. }
  810. body {
  811. font-family: 'dauphine';
  812. }
  813. strong {
  814. font-family: 'ag-fett';
  815. }
  816. b,strong {
  817. font-weight: normal !important;
  818. }
  819. select {
  820. padding: 0.25rem;
  821. }
  822. .book {
  823. font-family: 'ag-fett', 'Arial Black';
  824. }
  825. .tool {
  826. font-family: 'robo';
  827. }
  828. .practice {
  829. font-family: 'cirrus';
  830. }
  831. .std-margin {
  832. padding: 0.5rem;
  833. }
  834. .cell {
  835. min-width: 14rem;
  836. overflow: hidden;
  837. }
  838. .cell.size-1 {
  839. min-width: 30rem;
  840. }
  841. .related {
  842. width: 6rem;
  843. padding-left: 0.5rem;
  844. padding-right: 0.5rem;
  845. padding-top: 1rem;
  846. padding-bottom: 1rem;
  847. text-align: right;
  848. }
  849. @media (min-width: 1024px) {
  850. .related {
  851. width: 12rem;
  852. padding: 1.25rem;
  853. padding-left: 4rem;
  854. }
  855. }
  856. .cell-margin {
  857. padding: 1rem;
  858. }
  859. .block-margin {
  860. margin-bottom: 2rem;
  861. }
  862. .std-padding {
  863. padding: 0.5rem;
  864. }
  865. .std-padding-x {
  866. padding-left: 0.5rem;
  867. padding-right: 0.5rem;
  868. }
  869. .std-grid {
  870. display: grid;
  871. }
  872. @media (min-width: 768px) {
  873. .std-grid {
  874. grid-template-columns: repeat(2, minmax(0, 1fr));
  875. }
  876. }
  877. @media (min-width: 1024px) {
  878. .std-grid {
  879. grid-template-columns: repeat(3, minmax(0, 1fr));
  880. }
  881. }
  882. .cell {
  883. position: relative;
  884. padding: 1rem;
  885. }
  886. .cell::before {
  887. content: '';
  888. position: absolute;
  889. top: 10px;
  890. right: 0px;
  891. width: 2px;
  892. height: calc(100% - 20px);
  893. background-color: black;
  894. }
  895. .cell::after {
  896. content: '';
  897. position: absolute;
  898. bottom: 0px;
  899. left: 8px;
  900. width: calc(100% - 20px);
  901. height: 2px;
  902. background-color: black;
  903. }
  904. .slash {
  905. position: relative;
  906. }
  907. .slash::after {
  908. content: '';
  909. position: absolute;
  910. bottom: 0px;
  911. left: 8px;
  912. width: calc(100% - 20px);
  913. height: 3px;
  914. background-color: black;
  915. transform-origin: 100% 100%;
  916. transform: rotate(45deg);
  917. }
  918. /* .meta {
  919. transform: rotate(-3.5deg);
  920. } */
  921. .facts {
  922. display: grid;
  923. gap: 1rem;
  924. }
  925. @media (min-width: 1024px) {
  926. .facts {
  927. grid-template-columns: repeat(2, minmax(0, 1fr));
  928. }
  929. }
  930. .facts h3 {
  931. }
  932. .facts > * {
  933. max-width: 65ch;
  934. }
  935. a:hover {
  936. opacity: 0.9;
  937. }
  938. h2,h3 {
  939. -webkit-hyphens: auto;
  940. hyphens: auto;
  941. }
  942. h3 {
  943. font-family: 'ag-fett';
  944. }
  945. .huge-title {
  946. font-size: 3rem;
  947. line-height: 1;
  948. }
  949. @media (min-width: 1024px) {
  950. .huge-title {
  951. font-size: 4.2rem;
  952. line-height: 0.9;
  953. }
  954. }
  955. .big-title {
  956. font-size: 2rem;
  957. line-height: 1;
  958. }
  959. @media (min-width: 1024px) {
  960. .big-title {
  961. font-size: 3rem;
  962. line-height: 1;
  963. }
  964. }
  965. .medium-title {
  966. font-size: 1.85rem;
  967. line-height: 1;
  968. }
  969. @media (min-width: 1024px) {
  970. .medium-title {
  971. font-size: 2rem;
  972. line-height: 1;
  973. }
  974. }
  975. .small-title {
  976. font-size: 1.5rem;
  977. line-height: 1.1;
  978. }
  979. @media (min-width: 1024px) {
  980. .small-title {
  981. font-size: 1.85rem;
  982. line-height: 1;
  983. }
  984. }
  985. .big-text {
  986. font-size: 1.5rem;
  987. line-height: 1.1;
  988. }
  989. .small-text {
  990. font-size: 1.1rem;
  991. line-height: 1.22;
  992. }
  993. .indent {
  994. margin-left: 1rem;
  995. margin-right: 1rem;
  996. margin-top: 1rem;
  997. margin-bottom: 1rem;
  998. }
  999. .text > h3 {
  1000. margin-left: 1.5rem;
  1001. margin-top: 2rem;
  1002. }
  1003. h2 + *,
  1004. h3 + * {
  1005. /* @apply ml-6 mt-1; */
  1006. }
  1007. p + p {
  1008. margin-top: 1em;
  1009. }
  1010. .loading {
  1011. }
  1012. /* .loading .bg-white {
  1013. @apply bg-white/90;
  1014. opacity: 0;
  1015. transform: opacity 0.2s;
  1016. }
  1017. .htmx-request .bg-white {
  1018. opacity: 1;
  1019. } */
  1020. .loading .bg {
  1021. opacity: 0;
  1022. background-image: linear-gradient(to top, rgb(103, 48, 255,0.8), rgb(255, 255, 255, 0),rgb(255, 255, 255, 0));
  1023. }
  1024. .htmx-request .loading .bg {
  1025. transition: opacity 4000ms ease;
  1026. /* transition: opacity 4000ms cubic-bezier(.16, .01, .31, .99); */
  1027. opacity: 1;
  1028. }
  1029. .loading .spinner .inner {
  1030. opacity:0;
  1031. transition: opacity 0.4s ease;
  1032. width:-moz-min-content;
  1033. width:min-content;
  1034. height:-moz-min-content;
  1035. height:min-content;
  1036. /* height:200px; */
  1037. }
  1038. .htmx-request .loading .spinner .inner {
  1039. opacity:1;
  1040. }
  1041. #modal-content main {
  1042. opacity: 1;
  1043. }
  1044. .htmx-request #modal-content main {
  1045. /* transition: opacity 0.2s ease; */
  1046. opacity: 0;
  1047. }
  1048. .htmx-request .loading {
  1049. opacity: 1;
  1050. }
  1051. #modal-content {
  1052. transition: box-shadow 0.3s ease;
  1053. box-shadow: 0 0 4rem rgba(103, 48, 255, 0.8)
  1054. }
  1055. .htmx-request #modal-content {
  1056. box-shadow: 0 0 4rem rgba(103, 48, 255, 0.0)
  1057. }
  1058. .active {
  1059. background-color: rgba(103, 48, 255,0.8);
  1060. --tw-text-opacity: 1;
  1061. color: rgb(255 255 255 / var(--tw-text-opacity));
  1062. /* background-image: linear-gradient(to top, purple, transparent) ; */
  1063. }
  1064. .link:hover {
  1065. background-color: rgba(103, 48, 255,0.8);
  1066. --tw-text-opacity: 1;
  1067. color: rgb(255 255 255 / var(--tw-text-opacity));
  1068. }
  1069. details[open]::details-content {
  1070. display: contents;
  1071. }
  1072. .text a {
  1073. /* font-family: 'ag-fett'; */
  1074. text-decoration: underline;
  1075. }
  1076. #resources.expanded .filter-header::before {
  1077. content:'- ';
  1078. }
  1079. #resources .filter-header::before {
  1080. content:'+ ';
  1081. }
  1082. .fade-right {
  1083. position: relative;
  1084. }
  1085. .fade-right::after {
  1086. pointer-events: none;
  1087. position: absolute;
  1088. top: 0px;
  1089. right: 0px;
  1090. height: 100%;
  1091. width: 3rem;
  1092. }
  1093. @media (min-width: 1024px) {
  1094. .fade-right::after {
  1095. width: 10rem;
  1096. }
  1097. }
  1098. .fade-right::after {
  1099. content: '';
  1100. background-image: linear-gradient(to left,#fff 0%, #fff 5%, rgba(255,255,255,0) 100%);
  1101. }
  1102. .menuitem {
  1103. align-items: center;
  1104. padding-left: 1rem;
  1105. padding-right: 1rem;
  1106. padding-top: 0.5rem;
  1107. padding-bottom: 0.5rem;
  1108. }
  1109. .menuitem:hover {
  1110. background-color: rgba(103, 48, 255,0.8);
  1111. --tw-text-opacity: 1;
  1112. color: rgb(255 255 255 / var(--tw-text-opacity));
  1113. }
  1114. /* The switch - the box around the slider */
  1115. .switch {
  1116. position: relative;
  1117. display: inline-block;
  1118. width: 60px;
  1119. height: 34px;
  1120. }
  1121. /* Hide default HTML checkbox */
  1122. .switch input {
  1123. opacity: 0;
  1124. width: 0;
  1125. height: 0;
  1126. }
  1127. /* The slider */
  1128. .slider {
  1129. position: absolute;
  1130. cursor: pointer;
  1131. top: 0;
  1132. left: 0;
  1133. right: 0;
  1134. bottom: 0;
  1135. background-color: #000000;
  1136. transition: .4s;
  1137. }
  1138. .slider:before {
  1139. position: absolute;
  1140. content: "";
  1141. height: 26px;
  1142. width: 26px;
  1143. left: 4px;
  1144. bottom: 4px;
  1145. background-color: white;
  1146. transition: .4s;
  1147. }
  1148. input:checked+.slider {
  1149. background-color: #000000;
  1150. }
  1151. input:focus+.slider {
  1152. box-shadow: 0 0 1px #000000;
  1153. }
  1154. input:checked+.slider:before {
  1155. transform: translateX(26px);
  1156. }
  1157. /* Rounded sliders */
  1158. .slider.round {
  1159. border-radius: 34px;
  1160. }
  1161. .slider.round:before {
  1162. border-radius: 50%;
  1163. }
  1164. .hover\:opacity-60:hover {
  1165. opacity: 0.6;
  1166. }
  1167. @media (min-width: 1024px) {
  1168. .lg\:row-span-3 {
  1169. grid-row: span 3 / span 3;
  1170. }
  1171. .lg\:ml-\[13rem\] {
  1172. margin-left: 13rem;
  1173. }
  1174. .lg\:mt-0 {
  1175. margin-top: 0px;
  1176. }
  1177. .lg\:block {
  1178. display: block;
  1179. }
  1180. .lg\:flex {
  1181. display: flex;
  1182. }
  1183. .lg\:hidden {
  1184. display: none;
  1185. }
  1186. .lg\:w-\[10\.5rem\] {
  1187. width: 10.5rem;
  1188. }
  1189. .lg\:w-\[32rem\] {
  1190. width: 32rem;
  1191. }
  1192. .lg\:max-w-\[30rem\] {
  1193. max-width: 30rem;
  1194. }
  1195. .lg\:grid-cols-2 {
  1196. grid-template-columns: repeat(2, minmax(0, 1fr));
  1197. }
  1198. .lg\:grid-cols-3 {
  1199. grid-template-columns: repeat(3, minmax(0, 1fr));
  1200. }
  1201. .lg\:grid-cols-\[52rem\2c 30rem\] {
  1202. grid-template-columns: 52rem 30rem;
  1203. }
  1204. .lg\:grid-rows-1 {
  1205. grid-template-rows: repeat(1, minmax(0, 1fr));
  1206. }
  1207. .lg\:grid-rows-\[auto\2c auto\2c auto\] {
  1208. grid-template-rows: auto auto auto;
  1209. }
  1210. .lg\:border-r-2 {
  1211. border-right-width: 2px;
  1212. }
  1213. .lg\:border-black {
  1214. --tw-border-opacity: 1;
  1215. border-color: rgb(0 0 0 / var(--tw-border-opacity));
  1216. }
  1217. .lg\:p-0 {
  1218. padding: 0px;
  1219. }
  1220. .lg\:pr-8 {
  1221. padding-right: 2rem;
  1222. }
  1223. .lg\:text-center {
  1224. text-align: center;
  1225. }
  1226. }