trepur_components 2.3.3 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.cjs +43 -0
- package/.husky/pre-commit +4 -0
- package/.prettierrc.json +22 -0
- package/archive/Breadcrumbs/Breadcrumbs.stories.tsx +46 -0
- package/archive/Breadcrumbs/index.tsx +42 -0
- package/archive/BreadcrumbsBordered/BreadcrumbsBordered.stories.tsx +52 -0
- package/archive/BreadcrumbsBordered/index.tsx +44 -0
- package/archive/BreadcrumbsItem/BreadcrumbsItem.stories.tsx +40 -0
- package/archive/BreadcrumbsItem/index.tsx +149 -0
- package/archive/Button/Button.stories.tsx +150 -0
- package/archive/Button/index.tsx +111 -0
- package/archive/Button/style.module.css +76 -0
- package/archive/Calendar/Calendar.stories.tsx +82 -0
- package/archive/Calendar/index.tsx +76 -0
- package/archive/Calendar/style.css +233 -0
- package/archive/Card/Card.stories.tsx +75 -0
- package/archive/Card/index.tsx +102 -0
- package/archive/Card/style.module.css +75 -0
- package/archive/CardWithTopImage/CardWithTopImage.stories.tsx +50 -0
- package/archive/CardWithTopImage/index.tsx +39 -0
- package/archive/CardWithTopImage/style.module.css +11 -0
- package/archive/Carousel/Carousel.stories.tsx +451 -0
- package/archive/Carousel/index.tsx +388 -0
- package/archive/Carousel/style.module.css +99 -0
- package/archive/CarouselThumbnail/CarouselThumbnail.stories.tsx +350 -0
- package/archive/CarouselThumbnail/index.tsx +302 -0
- package/archive/CarouselThumbnail/style.module.css +67 -0
- package/archive/Checkbox/Checkbox.mdx +33 -0
- package/archive/Checkbox/Checkbox.stories.tsx +34 -0
- package/archive/Checkbox/index.tsx +51 -0
- package/archive/Checkbox/style.module.css +15 -0
- package/archive/Collapsible/Collapsible.stories.tsx +67 -0
- package/archive/Collapsible/index.tsx +116 -0
- package/archive/Collapsible/style.module.css +47 -0
- package/archive/Column/Column.stories.tsx +89 -0
- package/archive/Column/index.tsx +119 -0
- package/archive/Column/style.module.css +151 -0
- package/archive/ComponentWrapper/ComponentWrapper.stories.tsx +40 -0
- package/archive/ComponentWrapper/index.tsx +55 -0
- package/archive/ComponentWrapper/style.module.css +40 -0
- package/archive/Container/Container.stories.tsx +40 -0
- package/archive/Container/index.tsx +24 -0
- package/archive/Container/style.module.css +4 -0
- package/archive/Counter/Counter.stories.tsx +19 -0
- package/archive/Counter/index.tsx +66 -0
- package/archive/Counter/style.module.css +19 -0
- package/archive/DetailUpdater/DetailUpdater.stories.tsx +96 -0
- package/archive/DetailUpdater/index.tsx +112 -0
- package/archive/DetailUpdater/style.module.css +31 -0
- package/archive/Dialog/Dialog.stories.tsx +131 -0
- package/archive/Dialog/index.tsx +91 -0
- package/archive/Dialog/style.module.css +44 -0
- package/archive/DropdownMenu/DropdownMenu.stories.tsx +59 -0
- package/archive/DropdownMenu/index.tsx +51 -0
- package/archive/DropdownMenu/style.module.css +38 -0
- package/archive/DynamicTextSection/DynamicTextSection.stories.tsx +74 -0
- package/archive/DynamicTextSection/index.tsx +36 -0
- package/archive/DynamicTextSection/style.module.css +0 -0
- package/archive/FileUploader/FilePreview.tsx +48 -0
- package/archive/FileUploader/FileUploader.stories.tsx +28 -0
- package/archive/FileUploader/index.tsx +135 -0
- package/archive/FileUploader/style.module.css +54 -0
- package/archive/FilterItem/FilterItem.stories.tsx +33 -0
- package/archive/FilterItem/index.tsx +101 -0
- package/archive/FilterItem/style.module.css +27 -0
- package/archive/Footer/Footer.stories.tsx +59 -0
- package/archive/Footer/index.tsx +50 -0
- package/archive/Footer/style.module.css +19 -0
- package/archive/FooterNav/FooterNav.stories.tsx +125 -0
- package/archive/FooterNav/index.tsx +57 -0
- package/archive/FooterNav/style.module.css +32 -0
- package/archive/FooterNavItem/FooterNavItem.stories.tsx +53 -0
- package/archive/FooterNavItem/index.tsx +80 -0
- package/archive/FooterNavItem/style.module.css +139 -0
- package/archive/Form/Form.stories.tsx +86 -0
- package/archive/Form/index.tsx +61 -0
- package/archive/Form/style.module.css +0 -0
- package/archive/FyreCard/FyreCard.stories.tsx +31 -0
- package/archive/FyreCard/index.tsx +52 -0
- package/archive/FyreCard/style.module.css +19 -0
- package/archive/Greeting/Greeting.stories.tsx +41 -0
- package/archive/Greeting/index.tsx +32 -0
- package/archive/HamburgerIcon/HamburgerIcon.stories.tsx +32 -0
- package/archive/HamburgerIcon/index.tsx +103 -0
- package/archive/HamburgerIcon/style.module.css +85 -0
- package/archive/HorizontalLine/HorizontalLine.stories.tsx +54 -0
- package/archive/HorizontalLine/index.tsx +40 -0
- package/archive/HorizontalLine/style.module.css +55 -0
- package/archive/Icon/Icon.stories.tsx +164 -0
- package/archive/Icon/index.tsx +115 -0
- package/archive/Icon/style.module.css +253 -0
- package/archive/IconCard/IconCard.stories.tsx +46 -0
- package/archive/IconCard/index.tsx +57 -0
- package/archive/IconCard/style.module.css +18 -0
- package/archive/Image/Image.stories.tsx +87 -0
- package/archive/Image/index.tsx +132 -0
- package/archive/Image/style.module.css +109 -0
- package/archive/ImageInfo/ImageInfo.stories.tsx +39 -0
- package/archive/ImageInfo/index.tsx +95 -0
- package/archive/ImageInfo/style.module.css +47 -0
- package/archive/ImageLink/ImageLink.stories.tsx +37 -0
- package/archive/ImageLink/index.tsx +49 -0
- package/archive/ImageLink/style.module.css +23 -0
- package/archive/ImageLinkList/ImageLinkList.stories.tsx +34 -0
- package/archive/ImageLinkList/index.tsx +33 -0
- package/archive/ImageLinkList/style.module.css +3 -0
- package/archive/InformationIcon/InformationIcon.stories.tsx +83 -0
- package/archive/InformationIcon/index.tsx +128 -0
- package/archive/InformationIcon/style.module.css +71 -0
- package/archive/InformationIconBlock/InformationIconBlock.stories.tsx +32 -0
- package/archive/InformationIconBlock/index.tsx +63 -0
- package/archive/InformationIconBlock/style.module.css +7 -0
- package/archive/Input/Input.stories.tsx +84 -0
- package/archive/Input/index.tsx +131 -0
- package/archive/Input/style.module.css +60 -0
- package/archive/Jumbotron/Jumbotron.stories.tsx +21 -0
- package/archive/Jumbotron/index.tsx +31 -0
- package/archive/Jumbotron/style.module.css +8 -0
- package/archive/MenuButton/MenuButton.stories.tsx +46 -0
- package/archive/MenuButton/index.tsx +82 -0
- package/archive/MenuButton/style.module.css +45 -0
- package/archive/Modal/Modal.stories.tsx +86 -0
- package/archive/Modal/index.tsx +74 -0
- package/archive/Modal/style.module.css +35 -0
- package/archive/NavItem/NavItem.stories.tsx +90 -0
- package/archive/NavItem/index.tsx +65 -0
- package/archive/NavItem/style.module.css +71 -0
- package/archive/NavOld/NavOld.stories.tsx +193 -0
- package/archive/NavOld/StickyNav.tsx +191 -0
- package/archive/NavOld/index.tsx +273 -0
- package/archive/NavOld/style.module.css +156 -0
- package/archive/NavTwo/Dropdown.tsx +35 -0
- package/archive/NavTwo/Nav.stories.tsx +38 -0
- package/archive/NavTwo/Sidebar.tsx +34 -0
- package/archive/NavTwo/StickyNav.tsx +34 -0
- package/archive/NavTwo/index.tsx +45 -0
- package/archive/NavTwo/style.module.css +35 -0
- package/archive/NewsCard/NewsCard.stories.tsx +72 -0
- package/archive/NewsCard/index.tsx +57 -0
- package/archive/NewsCard/style.module.css +15 -0
- package/archive/Pill/Pill.stories.tsx +44 -0
- package/archive/Pill/index.tsx +64 -0
- package/archive/Pill/style.module.css +32 -0
- package/archive/ProductCard/ProductCard.stories.tsx +61 -0
- package/archive/ProductCard/index.tsx +111 -0
- package/archive/ProductCard/style.module.css +53 -0
- package/archive/ProductCardV2/ProductCardV2.stories.tsx +50 -0
- package/archive/ProductCardV2/index.tsx +119 -0
- package/archive/ProductCardV2/style.module.css +59 -0
- package/archive/Proficiencies/Proficiencies.stories.tsx +50 -0
- package/archive/Proficiencies/index.tsx +63 -0
- package/archive/Proficiencies/style.module.css +31 -0
- package/archive/Profile/Profile.stories.tsx +49 -0
- package/archive/Profile/index.tsx +103 -0
- package/archive/Profile/style.module.css +47 -0
- package/archive/Row/Row.stories.tsx +53 -0
- package/archive/Row/index.tsx +23 -0
- package/archive/Row/style.module.css +3 -0
- package/archive/Search/Search.stories.tsx +63 -0
- package/archive/Search/index.tsx +68 -0
- package/archive/Search/style.module.css +23 -0
- package/archive/Select/Select.stories.tsx +56 -0
- package/archive/Select/index.tsx +106 -0
- package/archive/Select/style.module.css +52 -0
- package/archive/Showcase/Showcase.stories.tsx +30 -0
- package/archive/Showcase/index.tsx +75 -0
- package/archive/Showcase/style.module.css +47 -0
- package/archive/SideNav/SideNav.stories.tsx +50 -0
- package/archive/SideNav/index.tsx +46 -0
- package/archive/SideNav/style.module.css +43 -0
- package/archive/SocialBlock/SocialBlock.stories.tsx +58 -0
- package/archive/SocialBlock/index.tsx +63 -0
- package/archive/SocialButton/SocialButton.stories.tsx +88 -0
- package/archive/SocialButton/index.tsx +71 -0
- package/archive/SocialButton/style.module.css +77 -0
- package/archive/StarRating/StarRating.stories.tsx +23 -0
- package/archive/StarRating/index.tsx +71 -0
- package/archive/Testimonial/Testimonial.stories.tsx +110 -0
- package/archive/Testimonial/index.tsx +61 -0
- package/archive/Testimonial/style.module.css +27 -0
- package/archive/TextAndTitle/TextAndTitle.stories.tsx +70 -0
- package/archive/TextAndTitle/index.tsx +123 -0
- package/archive/TextAndTitle/style.module.css +75 -0
- package/archive/TextArea/TextArea.stories.tsx +55 -0
- package/archive/TextArea/index.tsx +125 -0
- package/archive/TextArea/style.module.css +60 -0
- package/archive/Timeline/Timeline.stories.tsx +92 -0
- package/archive/Timeline/index.tsx +254 -0
- package/archive/Timeline/style.module.css +134 -0
- package/archive/TimelineV2/TimelineV2.stories.tsx +95 -0
- package/archive/TimelineV2/index.tsx +70 -0
- package/archive/TimelineV2/style.module.css +28 -0
- package/archive/Tubestops/Tubestops.stories.tsx +42 -0
- package/archive/Tubestops/index.tsx +58 -0
- package/archive/Tubestops/style.module.css +54 -0
- package/archive/UserIcon/UserIcon.stories.tsx +52 -0
- package/archive/UserIcon/index.tsx +46 -0
- package/archive/UserIcon/style.module.css +19 -0
- package/archive/Video/Video.stories.tsx +23 -0
- package/archive/Video/index.tsx +47 -0
- package/archive/fonts/Sora/OFL.txt +93 -0
- package/archive/fonts/Sora/README.txt +70 -0
- package/archive/fonts/Sora/Sora-VariableFont_wght.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-Bold.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-ExtraBold.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-ExtraLight.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-Light.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-Medium.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-Regular.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-SemiBold.ttf +0 -0
- package/archive/fonts/Sora/static/Sora-Thin.ttf +0 -0
- package/archive/theme.ts +39 -0
- package/archive/typography/Fonts/Fonts.stories.tsx +14 -0
- package/archive/typography/Fonts/Fonts.tsx +181 -0
- package/lib/components/Accordion/index.js +10 -10
- package/lib/components/AlertBar/index.js +10 -10
- package/lib/components/index.d.ts +4 -0
- package/lib/index.js +1 -7
- package/package.json +6 -8
- package/src/components/Accordion/Accordion.stories.tsx +116 -0
- package/src/components/Accordion/index.tsx +30 -0
- package/src/components/AlertBar/AlertBar.stories.tsx +95 -0
- package/src/components/AlertBar/index.tsx +115 -0
- package/src/components/Avatar/Avatar.stories.tsx +19 -0
- package/src/components/Avatar/index.tsx +495 -0
- package/src/components/index.ts +119 -0
- package/src/documentation/Colours.mdx +192 -0
- package/src/documentation/Introduction.mdx +9 -0
- package/src/index.ts +1 -0
- package/src/styles/base.css +116 -0
- package/src/utils/controls.ts +44 -0
- package/src/utils/matchMedia.ts +9 -0
- package/src/utils/screens.ts +7 -0
- package/storybook-build/assets/Accordion.stories-Cn994N1H.js +103 -0
- package/storybook-build/assets/AlertBar.stories-BkzNXFBh.js +202 -0
- package/storybook-build/assets/Avatar.stories-CpH6xVwM.js +418 -0
- package/storybook-build/assets/Color-6VNJS4EI-DQV2onvt.js +1378 -0
- package/storybook-build/assets/Colours-r29qjFlW.js +324 -0
- package/storybook-build/assets/DocsRenderer-NNNQARDV-OgWasCIs.js +44 -0
- package/storybook-build/assets/Introduction-Bs1PgnBZ.js +40 -0
- package/storybook-build/assets/WithTooltip-V3YHNWJZ-vi2V5TOO.js +15 -0
- package/storybook-build/assets/_commonjsHelpers-LQfde5yM.js +35 -0
- package/storybook-build/assets/axe-DnFZVv9V.js +32561 -0
- package/storybook-build/assets/chunk-EIRT5I3Z-DFD8udmD.js +480 -0
- package/storybook-build/assets/context-CIRBAiUz.js +20 -0
- package/storybook-build/assets/controls-DJSGrQKd.js +23 -0
- package/storybook-build/assets/entry-preview-DmlPV4-3.js +41 -0
- package/storybook-build/assets/entry-preview-docs-D46Drugi.js +11861 -0
- package/storybook-build/assets/formatter-SWP5E3XI-BWIasvKP.js +14427 -0
- package/storybook-build/assets/iframe-Dzzzanqi.js +144 -0
- package/storybook-build/assets/index-0FT4HXk-.js +7222 -0
- package/storybook-build/assets/index-B9Tccxv4.js +107 -0
- package/storybook-build/assets/index-BdOSk9or.js +41 -0
- package/storybook-build/assets/index-CU7cYjZD.js +9604 -0
- package/storybook-build/assets/index-Clz-aGG3.js +39 -0
- package/storybook-build/assets/index-CpyNLP69.js +63 -0
- package/storybook-build/assets/index-DM9bPmif.js +319 -0
- package/storybook-build/assets/index-ex9_VrIg.js +3734 -0
- package/storybook-build/assets/jsx-runtime-D2-sc1j1.js +35 -0
- package/storybook-build/assets/preview-3kSipVgK.js +430 -0
- package/storybook-build/assets/preview-B4rAxPmB.js +27 -0
- package/storybook-build/assets/preview-BMkwWyrh.js +2920 -0
- package/storybook-build/assets/preview-BeQelhbu.js +204 -0
- package/storybook-build/assets/preview-BiG-rflf.js +2444 -0
- package/storybook-build/assets/preview-BiYUJ7TP.js +22 -0
- package/storybook-build/assets/preview-C4ItOQzM.js +34 -0
- package/storybook-build/assets/preview-CWyhKACi.css +886 -0
- package/storybook-build/assets/preview-CtOV68TG.js +10 -0
- package/storybook-build/assets/preview-De9E9xaR.js +140 -0
- package/storybook-build/assets/preview-bL4x2zrN.js +99 -0
- package/storybook-build/assets/preview-gxqyGMHu.js +323 -0
- package/storybook-build/assets/react-18-B-gfo82w.js +29 -0
- package/storybook-build/assets/syntaxhighlighter-B5GMVT5T-DrY_Dc6-.js +15 -0
- package/storybook-build/favicon.svg +7 -0
- package/storybook-build/iframe.html +458 -0
- package/storybook-build/index.html +163 -0
- package/storybook-build/index.json +1 -0
- package/storybook-build/preview-stats.json +172 -0
- package/storybook-build/project.json +1 -0
- package/storybook-build/sb-addons/a11y-9/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/a11y-9/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
- package/storybook-build/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-controls-1/manager-bundle.js +63 -0
- package/storybook-build/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +18 -0
- package/storybook-build/sb-addons/essentials-measure-6/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-outline-7/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-toolbars-5/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/essentials-viewport-4/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/interactions-8/manager-bundle.js +12 -0
- package/storybook-build/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/links-0/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/storybook-12/manager-bundle.js +151 -0
- package/storybook-build/sb-addons/storybook-12/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/storybook-react-i18next-11/manager-bundle.js +3 -0
- package/storybook-build/sb-addons/storybook-react-i18next-11/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-addons/themes-10/register-bundle.js +5 -0
- package/storybook-build/sb-addons/themes-10/register-bundle.js.LEGAL.txt +0 -0
- package/storybook-build/sb-common-assets/fonts.css +31 -0
- package/storybook-build/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-build/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-build/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-build/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-build/sb-manager/WithTooltip-V3YHNWJZ-TRLNWEGW.js +1 -0
- package/storybook-build/sb-manager/chunk-4IYAVH3S.js +348 -0
- package/storybook-build/sb-manager/chunk-CXYKRFSY.js +9 -0
- package/storybook-build/sb-manager/chunk-KZYAAUOR.js +406 -0
- package/storybook-build/sb-manager/chunk-LVLAH4SI.js +7 -0
- package/storybook-build/sb-manager/chunk-ZEU7PDD3.js +1 -0
- package/storybook-build/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
- package/storybook-build/sb-manager/globals-module-info.js +1 -0
- package/storybook-build/sb-manager/globals.js +1 -0
- package/storybook-build/sb-manager/index.js +1 -0
- package/storybook-build/sb-manager/runtime.js +1 -0
- package/storybook-build/sb-manager/syntaxhighlighter-B5GMVT5T-EA5ASEYD.js +1 -0
- package/storybook-build/sb-preview/globals.js +1 -0
- package/storybook-build/sb-preview/runtime.js +112 -0
- package/storybook-build/src/components/Accordion/Accordion.stories.d.ts +94 -0
- package/storybook-build/src/components/Accordion/index.d.ts +9 -0
- package/storybook-build/src/components/AlertBar/AlertBar.stories.d.ts +162 -0
- package/storybook-build/src/components/AlertBar/index.d.ts +13 -0
- package/storybook-build/src/components/Avatar/Avatar.stories.d.ts +44 -0
- package/storybook-build/src/components/Avatar/index.d.ts +4 -0
- package/storybook-build/src/index.d.ts +1 -0
- package/storybook-build/src/utils/controls.d.ts +36 -0
- package/storybook-build/src/utils/matchMedia.d.ts +2 -0
- package/storybook-build/src/utils/screens.d.ts +7 -0
- package/storybook-build/src/utils/theme.d.ts +3 -0
- package/storybook-build/stories.json +1 -0
- package/storybook-build/styles/base.css +116 -0
- package/svg.d.ts +4 -0
- package/tailwind.config.ts +81 -0
- package/tsconfig.json +43 -0
- package/tsconfig.node.json +12 -0
- package/vite.config.mjs +64 -0
- package/lib/archive/Breadcrumbs/index.js +0 -12
- package/lib/archive/BreadcrumbsBordered/index.js +0 -25
- package/lib/archive/BreadcrumbsItem/index.js +0 -117
- /package/lib/{src/components → components}/Accordion/Accordion.stories.d.ts +0 -0
- /package/lib/{src/components → components}/Accordion/index.d.ts +0 -0
- /package/lib/{src/components → components}/AlertBar/AlertBar.stories.d.ts +0 -0
- /package/lib/{src/components → components}/AlertBar/index.d.ts +0 -0
- /package/lib/{src/components → components}/Avatar/Avatar.stories.d.ts +0 -0
- /package/lib/{src/components → components}/Avatar/index.d.ts +0 -0
- /package/lib/{src/index.d.ts → index.d.ts} +0 -0
- /package/lib/{src/utils → utils}/controls.d.ts +0 -0
- /package/lib/{src/utils → utils}/matchMedia.d.ts +0 -0
- /package/lib/{src/utils → utils}/screens.d.ts +0 -0
- /package/{lib → storybook-build}/src/components/index.d.ts +0 -0
|
@@ -0,0 +1,886 @@
|
|
|
1
|
+
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css');
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
9
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
*,
|
|
13
|
+
::before,
|
|
14
|
+
::after {
|
|
15
|
+
box-sizing: border-box; /* 1 */
|
|
16
|
+
border-width: 0; /* 2 */
|
|
17
|
+
border-style: solid; /* 2 */
|
|
18
|
+
border-color: currentColor; /* 2 */
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
::before,
|
|
22
|
+
::after {
|
|
23
|
+
--tw-content: '';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/*
|
|
27
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
28
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
29
|
+
3. Use a more readable tab size.
|
|
30
|
+
4. Use the user's configured `sans` font-family by default.
|
|
31
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
32
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
|
33
|
+
7. Disable tap highlights on iOS
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
html,
|
|
37
|
+
:host {
|
|
38
|
+
line-height: 1.5; /* 1 */
|
|
39
|
+
-webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
|
|
40
|
+
tab-size: 4; /* 3 */
|
|
41
|
+
font-family: Sora, sans-serif; /* 4 */
|
|
42
|
+
font-feature-settings: normal; /* 5 */
|
|
43
|
+
font-variation-settings: normal; /* 6 */
|
|
44
|
+
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/*
|
|
48
|
+
1. Remove the margin in all browsers.
|
|
49
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
body {
|
|
53
|
+
margin: 0; /* 1 */
|
|
54
|
+
line-height: inherit; /* 2 */
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/*
|
|
58
|
+
1. Add the correct height in Firefox.
|
|
59
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
60
|
+
3. Ensure horizontal rules are visible by default.
|
|
61
|
+
*/
|
|
62
|
+
|
|
63
|
+
hr {
|
|
64
|
+
height: 0; /* 1 */
|
|
65
|
+
color: inherit; /* 2 */
|
|
66
|
+
border-top-width: 1px; /* 3 */
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/*
|
|
70
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
71
|
+
*/
|
|
72
|
+
|
|
73
|
+
abbr:where([title]) {
|
|
74
|
+
-webkit-text-decoration: underline dotted;
|
|
75
|
+
text-decoration: underline dotted;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/*
|
|
79
|
+
Remove the default font size and weight for headings.
|
|
80
|
+
*/
|
|
81
|
+
|
|
82
|
+
h1,
|
|
83
|
+
h2,
|
|
84
|
+
h3,
|
|
85
|
+
h4,
|
|
86
|
+
h5,
|
|
87
|
+
h6 {
|
|
88
|
+
font-size: inherit;
|
|
89
|
+
font-weight: inherit;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/*
|
|
93
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
|
94
|
+
*/
|
|
95
|
+
|
|
96
|
+
a {
|
|
97
|
+
color: inherit;
|
|
98
|
+
text-decoration: inherit;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/*
|
|
102
|
+
Add the correct font weight in Edge and Safari.
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
b,
|
|
106
|
+
strong {
|
|
107
|
+
font-weight: bolder;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/*
|
|
111
|
+
1. Use the user's configured `mono` font-family by default.
|
|
112
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
|
113
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
|
114
|
+
4. Correct the odd `em` font sizing in all browsers.
|
|
115
|
+
*/
|
|
116
|
+
|
|
117
|
+
code,
|
|
118
|
+
kbd,
|
|
119
|
+
samp,
|
|
120
|
+
pre {
|
|
121
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
122
|
+
font-feature-settings: normal; /* 2 */
|
|
123
|
+
font-variation-settings: normal; /* 3 */
|
|
124
|
+
font-size: 1em; /* 4 */
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/*
|
|
128
|
+
Add the correct font size in all browsers.
|
|
129
|
+
*/
|
|
130
|
+
|
|
131
|
+
small {
|
|
132
|
+
font-size: 80%;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/*
|
|
136
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
137
|
+
*/
|
|
138
|
+
|
|
139
|
+
sub,
|
|
140
|
+
sup {
|
|
141
|
+
font-size: 75%;
|
|
142
|
+
line-height: 0;
|
|
143
|
+
position: relative;
|
|
144
|
+
vertical-align: baseline;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
sub {
|
|
148
|
+
bottom: -0.25em;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
sup {
|
|
152
|
+
top: -0.5em;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/*
|
|
156
|
+
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)
|
|
157
|
+
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)
|
|
158
|
+
3. Remove gaps between table borders by default.
|
|
159
|
+
*/
|
|
160
|
+
|
|
161
|
+
table {
|
|
162
|
+
text-indent: 0; /* 1 */
|
|
163
|
+
border-color: inherit; /* 2 */
|
|
164
|
+
border-collapse: collapse; /* 3 */
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/*
|
|
168
|
+
1. Change the font styles in all browsers.
|
|
169
|
+
2. Remove the margin in Firefox and Safari.
|
|
170
|
+
3. Remove default padding in all browsers.
|
|
171
|
+
*/
|
|
172
|
+
|
|
173
|
+
button,
|
|
174
|
+
input,
|
|
175
|
+
optgroup,
|
|
176
|
+
select,
|
|
177
|
+
textarea {
|
|
178
|
+
font-family: inherit; /* 1 */
|
|
179
|
+
font-feature-settings: inherit; /* 1 */
|
|
180
|
+
font-variation-settings: inherit; /* 1 */
|
|
181
|
+
font-size: 100%; /* 1 */
|
|
182
|
+
font-weight: inherit; /* 1 */
|
|
183
|
+
line-height: inherit; /* 1 */
|
|
184
|
+
letter-spacing: inherit; /* 1 */
|
|
185
|
+
color: inherit; /* 1 */
|
|
186
|
+
margin: 0; /* 2 */
|
|
187
|
+
padding: 0; /* 3 */
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/*
|
|
191
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
192
|
+
*/
|
|
193
|
+
|
|
194
|
+
button,
|
|
195
|
+
select {
|
|
196
|
+
text-transform: none;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/*
|
|
200
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
201
|
+
2. Remove default button styles.
|
|
202
|
+
*/
|
|
203
|
+
|
|
204
|
+
button,
|
|
205
|
+
input:where([type='button']),
|
|
206
|
+
input:where([type='reset']),
|
|
207
|
+
input:where([type='submit']) {
|
|
208
|
+
-webkit-appearance: button; /* 1 */
|
|
209
|
+
background-color: transparent; /* 2 */
|
|
210
|
+
background-image: none; /* 2 */
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/*
|
|
214
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
215
|
+
*/
|
|
216
|
+
|
|
217
|
+
:-moz-focusring {
|
|
218
|
+
outline: auto;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/*
|
|
222
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
223
|
+
*/
|
|
224
|
+
|
|
225
|
+
:-moz-ui-invalid {
|
|
226
|
+
box-shadow: none;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/*
|
|
230
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
231
|
+
*/
|
|
232
|
+
|
|
233
|
+
progress {
|
|
234
|
+
vertical-align: baseline;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/*
|
|
238
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
239
|
+
*/
|
|
240
|
+
|
|
241
|
+
::-webkit-inner-spin-button,
|
|
242
|
+
::-webkit-outer-spin-button {
|
|
243
|
+
height: auto;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/*
|
|
247
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
248
|
+
2. Correct the outline style in Safari.
|
|
249
|
+
*/
|
|
250
|
+
|
|
251
|
+
[type='search'] {
|
|
252
|
+
-webkit-appearance: textfield; /* 1 */
|
|
253
|
+
outline-offset: -2px; /* 2 */
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/*
|
|
257
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
258
|
+
*/
|
|
259
|
+
|
|
260
|
+
::-webkit-search-decoration {
|
|
261
|
+
-webkit-appearance: none;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/*
|
|
265
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
266
|
+
2. Change font properties to `inherit` in Safari.
|
|
267
|
+
*/
|
|
268
|
+
|
|
269
|
+
::-webkit-file-upload-button {
|
|
270
|
+
-webkit-appearance: button; /* 1 */
|
|
271
|
+
font: inherit; /* 2 */
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/*
|
|
275
|
+
Add the correct display in Chrome and Safari.
|
|
276
|
+
*/
|
|
277
|
+
|
|
278
|
+
summary {
|
|
279
|
+
display: list-item;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/*
|
|
283
|
+
Removes the default spacing and border for appropriate elements.
|
|
284
|
+
*/
|
|
285
|
+
|
|
286
|
+
blockquote,
|
|
287
|
+
dl,
|
|
288
|
+
dd,
|
|
289
|
+
h1,
|
|
290
|
+
h2,
|
|
291
|
+
h3,
|
|
292
|
+
h4,
|
|
293
|
+
h5,
|
|
294
|
+
h6,
|
|
295
|
+
hr,
|
|
296
|
+
figure,
|
|
297
|
+
p,
|
|
298
|
+
pre {
|
|
299
|
+
margin: 0;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
fieldset {
|
|
303
|
+
margin: 0;
|
|
304
|
+
padding: 0;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
legend {
|
|
308
|
+
padding: 0;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
ol,
|
|
312
|
+
ul,
|
|
313
|
+
menu {
|
|
314
|
+
list-style: none;
|
|
315
|
+
margin: 0;
|
|
316
|
+
padding: 0;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/*
|
|
320
|
+
Reset default styling for dialogs.
|
|
321
|
+
*/
|
|
322
|
+
|
|
323
|
+
dialog {
|
|
324
|
+
padding: 0;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/*
|
|
328
|
+
Prevent resizing textareas horizontally by default.
|
|
329
|
+
*/
|
|
330
|
+
|
|
331
|
+
textarea {
|
|
332
|
+
resize: vertical;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/*
|
|
336
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
337
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
338
|
+
*/
|
|
339
|
+
|
|
340
|
+
input::placeholder,
|
|
341
|
+
textarea::placeholder {
|
|
342
|
+
opacity: 1; /* 1 */
|
|
343
|
+
color: #9ca3af; /* 2 */
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/*
|
|
347
|
+
Set the default cursor for buttons.
|
|
348
|
+
*/
|
|
349
|
+
|
|
350
|
+
button,
|
|
351
|
+
[role="button"] {
|
|
352
|
+
cursor: pointer;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
/*
|
|
356
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
357
|
+
*/
|
|
358
|
+
|
|
359
|
+
:disabled {
|
|
360
|
+
cursor: default;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/*
|
|
364
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
365
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
366
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
367
|
+
*/
|
|
368
|
+
|
|
369
|
+
img,
|
|
370
|
+
svg,
|
|
371
|
+
video,
|
|
372
|
+
canvas,
|
|
373
|
+
audio,
|
|
374
|
+
iframe,
|
|
375
|
+
embed,
|
|
376
|
+
object {
|
|
377
|
+
display: block; /* 1 */
|
|
378
|
+
vertical-align: middle; /* 2 */
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/*
|
|
382
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
383
|
+
*/
|
|
384
|
+
|
|
385
|
+
img,
|
|
386
|
+
video {
|
|
387
|
+
max-width: 100%;
|
|
388
|
+
height: auto;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
392
|
+
|
|
393
|
+
[hidden] {
|
|
394
|
+
display: none;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
*, ::before, ::after{
|
|
398
|
+
--tw-border-spacing-x: 0;
|
|
399
|
+
--tw-border-spacing-y: 0;
|
|
400
|
+
--tw-translate-x: 0;
|
|
401
|
+
--tw-translate-y: 0;
|
|
402
|
+
--tw-rotate: 0;
|
|
403
|
+
--tw-skew-x: 0;
|
|
404
|
+
--tw-skew-y: 0;
|
|
405
|
+
--tw-scale-x: 1;
|
|
406
|
+
--tw-scale-y: 1;
|
|
407
|
+
--tw-pan-x: ;
|
|
408
|
+
--tw-pan-y: ;
|
|
409
|
+
--tw-pinch-zoom: ;
|
|
410
|
+
--tw-scroll-snap-strictness: proximity;
|
|
411
|
+
--tw-gradient-from-position: ;
|
|
412
|
+
--tw-gradient-via-position: ;
|
|
413
|
+
--tw-gradient-to-position: ;
|
|
414
|
+
--tw-ordinal: ;
|
|
415
|
+
--tw-slashed-zero: ;
|
|
416
|
+
--tw-numeric-figure: ;
|
|
417
|
+
--tw-numeric-spacing: ;
|
|
418
|
+
--tw-numeric-fraction: ;
|
|
419
|
+
--tw-ring-inset: ;
|
|
420
|
+
--tw-ring-offset-width: 0px;
|
|
421
|
+
--tw-ring-offset-color: #fff;
|
|
422
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
423
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
424
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
425
|
+
--tw-shadow: 0 0 #0000;
|
|
426
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
427
|
+
--tw-blur: ;
|
|
428
|
+
--tw-brightness: ;
|
|
429
|
+
--tw-contrast: ;
|
|
430
|
+
--tw-grayscale: ;
|
|
431
|
+
--tw-hue-rotate: ;
|
|
432
|
+
--tw-invert: ;
|
|
433
|
+
--tw-saturate: ;
|
|
434
|
+
--tw-sepia: ;
|
|
435
|
+
--tw-drop-shadow: ;
|
|
436
|
+
--tw-backdrop-blur: ;
|
|
437
|
+
--tw-backdrop-brightness: ;
|
|
438
|
+
--tw-backdrop-contrast: ;
|
|
439
|
+
--tw-backdrop-grayscale: ;
|
|
440
|
+
--tw-backdrop-hue-rotate: ;
|
|
441
|
+
--tw-backdrop-invert: ;
|
|
442
|
+
--tw-backdrop-opacity: ;
|
|
443
|
+
--tw-backdrop-saturate: ;
|
|
444
|
+
--tw-backdrop-sepia: ;
|
|
445
|
+
--tw-contain-size: ;
|
|
446
|
+
--tw-contain-layout: ;
|
|
447
|
+
--tw-contain-paint: ;
|
|
448
|
+
--tw-contain-style: ;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
::backdrop{
|
|
452
|
+
--tw-border-spacing-x: 0;
|
|
453
|
+
--tw-border-spacing-y: 0;
|
|
454
|
+
--tw-translate-x: 0;
|
|
455
|
+
--tw-translate-y: 0;
|
|
456
|
+
--tw-rotate: 0;
|
|
457
|
+
--tw-skew-x: 0;
|
|
458
|
+
--tw-skew-y: 0;
|
|
459
|
+
--tw-scale-x: 1;
|
|
460
|
+
--tw-scale-y: 1;
|
|
461
|
+
--tw-pan-x: ;
|
|
462
|
+
--tw-pan-y: ;
|
|
463
|
+
--tw-pinch-zoom: ;
|
|
464
|
+
--tw-scroll-snap-strictness: proximity;
|
|
465
|
+
--tw-gradient-from-position: ;
|
|
466
|
+
--tw-gradient-via-position: ;
|
|
467
|
+
--tw-gradient-to-position: ;
|
|
468
|
+
--tw-ordinal: ;
|
|
469
|
+
--tw-slashed-zero: ;
|
|
470
|
+
--tw-numeric-figure: ;
|
|
471
|
+
--tw-numeric-spacing: ;
|
|
472
|
+
--tw-numeric-fraction: ;
|
|
473
|
+
--tw-ring-inset: ;
|
|
474
|
+
--tw-ring-offset-width: 0px;
|
|
475
|
+
--tw-ring-offset-color: #fff;
|
|
476
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
477
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
478
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
479
|
+
--tw-shadow: 0 0 #0000;
|
|
480
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
481
|
+
--tw-blur: ;
|
|
482
|
+
--tw-brightness: ;
|
|
483
|
+
--tw-contrast: ;
|
|
484
|
+
--tw-grayscale: ;
|
|
485
|
+
--tw-hue-rotate: ;
|
|
486
|
+
--tw-invert: ;
|
|
487
|
+
--tw-saturate: ;
|
|
488
|
+
--tw-sepia: ;
|
|
489
|
+
--tw-drop-shadow: ;
|
|
490
|
+
--tw-backdrop-blur: ;
|
|
491
|
+
--tw-backdrop-brightness: ;
|
|
492
|
+
--tw-backdrop-contrast: ;
|
|
493
|
+
--tw-backdrop-grayscale: ;
|
|
494
|
+
--tw-backdrop-hue-rotate: ;
|
|
495
|
+
--tw-backdrop-invert: ;
|
|
496
|
+
--tw-backdrop-opacity: ;
|
|
497
|
+
--tw-backdrop-saturate: ;
|
|
498
|
+
--tw-backdrop-sepia: ;
|
|
499
|
+
--tw-contain-size: ;
|
|
500
|
+
--tw-contain-layout: ;
|
|
501
|
+
--tw-contain-paint: ;
|
|
502
|
+
--tw-contain-style: ;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.theme-local {
|
|
506
|
+
--color-primary: #0036a0;
|
|
507
|
+
--color-secondary: #e2e2e2;
|
|
508
|
+
--color-tertiary: #921457;
|
|
509
|
+
--color-ink: #495863;
|
|
510
|
+
--color-transparent: transparent;
|
|
511
|
+
--color-white: #ffffff;
|
|
512
|
+
--color-black: #000000;
|
|
513
|
+
--color-red: #bb0a1e;
|
|
514
|
+
--color-grey: #2c373b;
|
|
515
|
+
--color-light-grey: #495c63;
|
|
516
|
+
--color-lightest-grey: #f5f5f5;
|
|
517
|
+
--color-primary-strict: #ff007d;
|
|
518
|
+
--color-border: #d0d0d0;
|
|
519
|
+
--color-border-lightest: #eeeeee;
|
|
520
|
+
--color-border-light: #d8d8d8;
|
|
521
|
+
--color-border-dark: #616161;
|
|
522
|
+
--color-error-light: #ffd9d9;
|
|
523
|
+
--color-success-light: #e7f5e7;
|
|
524
|
+
--color-facebook: #3b5999;
|
|
525
|
+
--color-whatsapp: #25d366;
|
|
526
|
+
--color-twitter: #55acee;
|
|
527
|
+
--color-linkedin: #0a66c2;
|
|
528
|
+
--color-email: #c71610;
|
|
529
|
+
--color-github: #171515;
|
|
530
|
+
--color-instagram: #8a3ab9;
|
|
531
|
+
--color-interactive-facebook: #2d4474;
|
|
532
|
+
--color-interactive-whatsapp: #25d566;
|
|
533
|
+
--color-interactive-twitter: #55acee;
|
|
534
|
+
--color-interactive-linkedin: #0a66c2;
|
|
535
|
+
--color-interactive-instagram: #6d2e92;
|
|
536
|
+
--color-interactive-email: #9f110c;
|
|
537
|
+
--color-interactive-github: #000000;
|
|
538
|
+
--color-gold: #e2b13c;
|
|
539
|
+
--color-error: #b11013;
|
|
540
|
+
--color-warning: #ffd35c;
|
|
541
|
+
--color-success: #69c364;
|
|
542
|
+
--color-info-light: #d8eaf5;
|
|
543
|
+
--color-linkedin: #0e76a8;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.absolute{
|
|
547
|
+
position: absolute;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.right-0{
|
|
551
|
+
right: 0px;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.mx-auto{
|
|
555
|
+
margin-left: auto;
|
|
556
|
+
margin-right: auto;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.flex{
|
|
560
|
+
display: flex;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.table{
|
|
564
|
+
display: table;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.grid{
|
|
568
|
+
display: grid;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.hidden{
|
|
572
|
+
display: none;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.h-6{
|
|
576
|
+
height: 1.5rem;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.w-full{
|
|
580
|
+
width: 100%;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.transform{
|
|
584
|
+
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));
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.cursor-pointer{
|
|
588
|
+
cursor: pointer;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.grid-cols-1{
|
|
592
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.grid-cols-4{
|
|
596
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.gap-1{
|
|
600
|
+
gap: 0.25rem;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.gap-12{
|
|
604
|
+
gap: 3rem;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.gap-6{
|
|
608
|
+
gap: 1.5rem;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.rounded-md{
|
|
612
|
+
border-radius: 0.375rem;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.bg-black{
|
|
616
|
+
background-color: var(--color-black);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.bg-border{
|
|
620
|
+
background-color: var(--color-border);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.bg-border-dark{
|
|
624
|
+
background-color: var(--color-border-dark);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.bg-border-light{
|
|
628
|
+
background-color: var(--color-border-light);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.bg-border-lightest{
|
|
632
|
+
background-color: var(--color-border-lightest);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.bg-email{
|
|
636
|
+
background-color: var(--color-email);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.bg-error{
|
|
640
|
+
background-color: var(--color-error);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.bg-error-light{
|
|
644
|
+
background-color: var(--color-error-light);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.bg-facebook{
|
|
648
|
+
background-color: var(--color-facebook);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.bg-github{
|
|
652
|
+
background-color: var(--color-github);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.bg-gold{
|
|
656
|
+
background-color: var(--color-gold);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.bg-grey{
|
|
660
|
+
background-color: var(--color-grey);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.bg-info-light{
|
|
664
|
+
background-color: var(--color-info-light);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.bg-ink{
|
|
668
|
+
background-color: var(--color-ink);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.bg-instagram{
|
|
672
|
+
background-color: var(--color-instagram);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.bg-interactive-email{
|
|
676
|
+
background-color: var(--color-interactive-email);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.bg-interactive-facebook{
|
|
680
|
+
background-color: var(--color-interactive-facebook);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.bg-interactive-github{
|
|
684
|
+
background-color: var(--color-interactive-github);
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.bg-interactive-linkedin{
|
|
688
|
+
background-color: var(--color-interactive-linkedin);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.bg-interactive-twitter{
|
|
692
|
+
background-color: var(--color-interactive-twitter);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.bg-interactive-whatsapp{
|
|
696
|
+
background-color: var(--color-interactive-whatsapp);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.bg-light-grey{
|
|
700
|
+
background-color: var(--color-light-grey);
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.bg-lightest-grey{
|
|
704
|
+
background-color: var(--color-lightest-grey);
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.bg-linkedin{
|
|
708
|
+
background-color: var(--color-linkedin);
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.bg-primary{
|
|
712
|
+
background-color: var(--color-primary);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.bg-primary-strict{
|
|
716
|
+
background-color: var(--color-primary-strict);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.bg-red{
|
|
720
|
+
background-color: var(--color-red);
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.bg-secondary{
|
|
724
|
+
background-color: var(--color-secondary);
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.bg-success{
|
|
728
|
+
background-color: var(--color-success);
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.bg-success-light{
|
|
732
|
+
background-color: var(--color-success-light);
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.bg-third{
|
|
736
|
+
background-color: var(--color-third);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.bg-twitter{
|
|
740
|
+
background-color: var(--color-twitter);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.bg-warning{
|
|
744
|
+
background-color: var(--color-warning);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.bg-whatsapp{
|
|
748
|
+
background-color: var(--color-whatsapp);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.bg-white{
|
|
752
|
+
background-color: var(--color-white);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.px-4{
|
|
756
|
+
padding-left: 1rem;
|
|
757
|
+
padding-right: 1rem;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.py-2{
|
|
761
|
+
padding-top: 0.5rem;
|
|
762
|
+
padding-bottom: 0.5rem;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.py-3{
|
|
766
|
+
padding-top: 0.75rem;
|
|
767
|
+
padding-bottom: 0.75rem;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.py-4{
|
|
771
|
+
padding-top: 1rem;
|
|
772
|
+
padding-bottom: 1rem;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.pl-20{
|
|
776
|
+
padding-left: 5rem;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.pl-4{
|
|
780
|
+
padding-left: 1rem;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.pl-8{
|
|
784
|
+
padding-left: 2rem;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.pr-8{
|
|
788
|
+
padding-right: 2rem;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.pt-3{
|
|
792
|
+
padding-top: 0.75rem;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.text-center{
|
|
796
|
+
text-align: center;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.text-white{
|
|
800
|
+
color: var(--color-white);
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.opacity-0{
|
|
804
|
+
opacity: 0;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.opacity-100{
|
|
808
|
+
opacity: 1;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.duration-700{
|
|
812
|
+
transition-duration: 700ms;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
@font-face {
|
|
816
|
+
font-family: 'Sora';
|
|
817
|
+
src: url('../fonts/Sora/static/Sora-Thin.ttf') format('truetype');
|
|
818
|
+
font-weight: 100;
|
|
819
|
+
font-style: normal;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
@font-face {
|
|
823
|
+
font-family: 'Sora';
|
|
824
|
+
src: url('../fonts/Sora/static/Sora-ExtraLight.ttf') format('truetype');
|
|
825
|
+
font-weight: 200;
|
|
826
|
+
font-style: normal;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
@font-face {
|
|
830
|
+
font-family: 'Sora';
|
|
831
|
+
src: url('../fonts/Sora/static/Sora-Light.ttf') format('truetype');
|
|
832
|
+
font-weight: 300;
|
|
833
|
+
font-style: normal;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
@font-face {
|
|
837
|
+
font-family: 'Sora';
|
|
838
|
+
src: url('../fonts/Sora/static/Sora-Regular.ttf') format('truetype');
|
|
839
|
+
font-weight: 400;
|
|
840
|
+
font-style: normal;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
@font-face {
|
|
844
|
+
font-family: 'Sora';
|
|
845
|
+
src: url('../fonts/Sora/static/Sora-Medium.ttf') format('truetype');
|
|
846
|
+
font-weight: 500;
|
|
847
|
+
font-style: normal;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
@font-face {
|
|
851
|
+
font-family: 'Sora';
|
|
852
|
+
src: url('../fonts/Sora/static/Sora-SemiBold.ttf') format('truetype');
|
|
853
|
+
font-weight: 600;
|
|
854
|
+
font-style: normal;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
@font-face {
|
|
858
|
+
font-family: 'Sora';
|
|
859
|
+
src: url('../fonts/Sora/static/Sora-Bold.ttf') format('truetype');
|
|
860
|
+
font-weight: 700;
|
|
861
|
+
font-style: normal;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
@font-face {
|
|
865
|
+
font-family: 'Sora';
|
|
866
|
+
src: url('../fonts/Sora/static/Sora-ExtraBold.ttf') format('truetype');
|
|
867
|
+
font-weight: 800;
|
|
868
|
+
font-style: normal;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.slick-track {
|
|
872
|
+
display: flex !important;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.slick-slide {
|
|
876
|
+
height: inherit !important;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.slick-slide > div {
|
|
880
|
+
height: 100%;
|
|
881
|
+
display: flex;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.hover\:cursor-pointer:hover{
|
|
885
|
+
cursor: pointer;
|
|
886
|
+
}
|