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.

1479 lines
24KB

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