@nobak/design-system 1.0.0
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/LICENSE +73 -0
- package/README.md +142 -0
- package/lib/assets/icons.js +67 -0
- package/lib/components/AccountOverview/AccountOverview.js +122 -0
- package/lib/components/AdminPanel.js +58 -0
- package/lib/components/AssetExchange/AssetExchange.js +189 -0
- package/lib/components/AuthenticationFlow.js +216 -0
- package/lib/components/ConversationInterface/ConversationInterface.js +232 -0
- package/lib/components/DevFooter.js +38 -0
- package/lib/components/DevMenu.js +35 -0
- package/lib/components/DevSidebar.js +28 -0
- package/lib/components/DigitalDisplay.js +83 -0
- package/lib/components/Footer.js +45 -0
- package/lib/components/HeroContainer.js +10 -0
- package/lib/components/IntentRecognition/IntentRecognition.js +174 -0
- package/lib/components/Logo.js +259 -0
- package/lib/components/MenuBar.js +56 -0
- package/lib/components/NetworkSettings.js +223 -0
- package/lib/components/RecoverySetup/RecoverySetup.js +354 -0
- package/lib/components/RisingSun.js +122 -0
- package/lib/components/Symbol.js +226 -0
- package/lib/components/TransactionComposer/TransactionComposer.js +258 -0
- package/lib/components/TransactionConfirmation.js +184 -0
- package/lib/components/WalletMenu.js +33 -0
- package/lib/components/console/code/CodeBlock.js +150 -0
- package/lib/components/console/code/index.js +9 -0
- package/lib/components/console/data/DataTable.js +245 -0
- package/lib/components/console/data/MetricCard.js +79 -0
- package/lib/components/console/data/index.js +11 -0
- package/lib/components/console/documentation/index.js +10 -0
- package/lib/components/console/forms/APIKeyGenerator.js +261 -0
- package/lib/components/console/forms/SearchBar.js +210 -0
- package/lib/components/console/forms/index.js +10 -0
- package/lib/components/console/index.js +29 -0
- package/lib/components/console/layout/ConsoleCard.js +82 -0
- package/lib/components/console/layout/ConsoleLayout.js +86 -0
- package/lib/components/console/layout/index.js +10 -0
- package/lib/components/console/monitoring/StatusIndicator.js +128 -0
- package/lib/components/console/monitoring/index.js +9 -0
- package/lib/components/console/navigation/DevFooter.js +38 -0
- package/lib/components/console/navigation/DevMenu.js +35 -0
- package/lib/components/console/navigation/DevSidebar.js +28 -0
- package/lib/components/console/navigation/index.js +11 -0
- package/lib/components/console/settings/index.js +10 -0
- package/lib/components/index.js +12 -0
- package/lib/design/ColorPicker.stories.js +9 -0
- package/lib/design/HSLTool-V1.js +345 -0
- package/lib/design/HSLTool-V2.js +475 -0
- package/lib/design/HSLTool-V3.js +543 -0
- package/lib/design/HSLTool-V4.js +1139 -0
- package/lib/design/HSLTool.js +374 -0
- package/lib/design/OKLCHColorPicker.stories.js +24 -0
- package/lib/design/OKLCHTool.js +1014 -0
- package/lib/index.js +4 -0
- package/lib/shared/components/Avatar/Avatar.js +18 -0
- package/lib/shared/components/Avatar/index.js +1 -0
- package/lib/shared/components/Badge/Badge.js +34 -0
- package/lib/shared/components/Badge/index.js +1 -0
- package/lib/shared/components/Breadcrumb/Breadcrumb.js +13 -0
- package/lib/shared/components/Breadcrumb/index.js +1 -0
- package/lib/shared/components/Button/Button.js +184 -0
- package/lib/shared/components/Button/index.js +1 -0
- package/lib/shared/components/Calendar/Calendar.js +155 -0
- package/lib/shared/components/Calendar/CalendarDay.js +251 -0
- package/lib/shared/components/Calendar/CalendarHeader.js +88 -0
- package/lib/shared/components/Calendar/CalendarMonth.js +106 -0
- package/lib/shared/components/Calendar/CalendarWeek.js +267 -0
- package/lib/shared/components/Calendar/constants.js +73 -0
- package/lib/shared/components/Calendar/index.js +3 -0
- package/lib/shared/components/Calendar/types.d.js +0 -0
- package/lib/shared/components/Cartel/Cartel.js +44 -0
- package/lib/shared/components/Cartel/index.js +1 -0
- package/lib/shared/components/Cell/Cell.js +105 -0
- package/lib/shared/components/Cell/index.js +1 -0
- package/lib/shared/components/Checkbox/Checkbox.js +27 -0
- package/lib/shared/components/Checkbox/index.js +1 -0
- package/lib/shared/components/Clock/Clock.js +6 -0
- package/lib/shared/components/Clock/index.js +1 -0
- package/lib/shared/components/ColorChecker/ColorChecker.js +89 -0
- package/lib/shared/components/ColorChecker/index.js +2 -0
- package/lib/shared/components/ColorChecker/utils.js +159 -0
- package/lib/shared/components/Command/Command.js +95 -0
- package/lib/shared/components/Command/index.js +1 -0
- package/lib/shared/components/Container/Container.js +18 -0
- package/lib/shared/components/Container/index.js +1 -0
- package/lib/shared/components/Cover/Cover.js +17 -0
- package/lib/shared/components/Cover/index.js +1 -0
- package/lib/shared/components/DatePicker/DatePicker.js +52 -0
- package/lib/shared/components/DatePicker/components/Calendar.js +125 -0
- package/lib/shared/components/DatePicker/components/CalendarDay.js +23 -0
- package/lib/shared/components/DatePicker/components/DateWrapper.js +15 -0
- package/lib/shared/components/DatePicker/components/index.js +2 -0
- package/lib/shared/components/DatePicker/index.js +1 -0
- package/lib/shared/components/DateTime/DateTime.js +51 -0
- package/lib/shared/components/DateTime/index.js +1 -0
- package/lib/shared/components/Debug/Debug.js +12 -0
- package/lib/shared/components/Debug/index.js +1 -0
- package/lib/shared/components/Disclosure/Disclosure.js +31 -0
- package/lib/shared/components/Disclosure/index.js +1 -0
- package/lib/shared/components/Dropdown/Dropdown.js +91 -0
- package/lib/shared/components/Dropdown/index.js +1 -0
- package/lib/shared/components/EmptyState/EmptyState.js +40 -0
- package/lib/shared/components/EmptyState/index.js +1 -0
- package/lib/shared/components/Form/Form.js +41 -0
- package/lib/shared/components/Form/components/DynamicForm.js +66 -0
- package/lib/shared/components/Form/components/StepperForm.js +266 -0
- package/lib/shared/components/Form/components/index.js +2 -0
- package/lib/shared/components/Form/context/Form.js +164 -0
- package/lib/shared/components/Form/context/index.js +1 -0
- package/lib/shared/components/Form/index.js +1 -0
- package/lib/shared/components/Form/types.d.js +1 -0
- package/lib/shared/components/Form/utils/index.js +31 -0
- package/lib/shared/components/GroupItems/GroupItems.js +17 -0
- package/lib/shared/components/GroupItems/index.js +1 -0
- package/lib/shared/components/Header/Header.js +26 -0
- package/lib/shared/components/Header/index.js +1 -0
- package/lib/shared/components/Heading/Heading.js +5 -0
- package/lib/shared/components/Heading/index.js +1 -0
- package/lib/shared/components/Icon/Icon.js +28 -0
- package/lib/shared/components/Icon/index.js +1 -0
- package/lib/shared/components/Identicons/Identicons.js +6 -0
- package/lib/shared/components/Identicons/index.d.js +0 -0
- package/lib/shared/components/Identicons/index.js +1 -0
- package/lib/shared/components/Image/Image.js +22 -0
- package/lib/shared/components/Image/index.js +1 -0
- package/lib/shared/components/Input/Input.js +201 -0
- package/lib/shared/components/Input/components/CheckBoxInput.js +81 -0
- package/lib/shared/components/Input/components/DateInput.js +89 -0
- package/lib/shared/components/Input/components/DefaultInput.js +102 -0
- package/lib/shared/components/Input/components/FileReaderInput.js +88 -0
- package/lib/shared/components/Input/components/NumberInput.js +141 -0
- package/lib/shared/components/Input/components/PickerInput.js +122 -0
- package/lib/shared/components/Input/components/RCInput.js +112 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxBasic.js +56 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxCard.js +27 -0
- package/lib/shared/components/Input/components/Radiobox/RadioboxFull.js +44 -0
- package/lib/shared/components/Input/components/Radiobox/index.js +3 -0
- package/lib/shared/components/Input/components/RadioboxInput.js +102 -0
- package/lib/shared/components/Input/components/SelectInput.js +70 -0
- package/lib/shared/components/Input/components/TextAreaInput.js +67 -0
- package/lib/shared/components/Input/components/TextInput.js +139 -0
- package/lib/shared/components/Input/components/TimeInput.js +37 -0
- package/lib/shared/components/Input/components/UploadFileInput.js +123 -0
- package/lib/shared/components/Input/components/index.js +13 -0
- package/lib/shared/components/Input/components/types.d.js +0 -0
- package/lib/shared/components/Input/index.js +1 -0
- package/lib/shared/components/Input/types.d.js +0 -0
- package/lib/shared/components/Layout/Layout.js +13 -0
- package/lib/shared/components/Layout/index.js +1 -0
- package/lib/shared/components/List/List.js +30 -0
- package/lib/shared/components/List/index.js +1 -0
- package/lib/shared/components/Loader/Loader.js +27 -0
- package/lib/shared/components/Loader/index.js +1 -0
- package/lib/shared/components/Modal/Modal.js +102 -0
- package/lib/shared/components/Modal/index.js +1 -0
- package/lib/shared/components/Notification/Notification.js +39 -0
- package/lib/shared/components/Notification/index.js +1 -0
- package/lib/shared/components/Person/Person.js +81 -0
- package/lib/shared/components/Person/index.js +1 -0
- package/lib/shared/components/Popover/Popover.js +39 -0
- package/lib/shared/components/Popover/index.js +1 -0
- package/lib/shared/components/QRCode/QRCode.js +329 -0
- package/lib/shared/components/QRCode/index.js +1 -0
- package/lib/shared/components/RadioGroup/RadioGroup.js +35 -0
- package/lib/shared/components/RadioGroup/components/DefaultGroup.js +71 -0
- package/lib/shared/components/RadioGroup/components/VerticalGroup.js +83 -0
- package/lib/shared/components/RadioGroup/components/index.js +2 -0
- package/lib/shared/components/RadioGroup/index.js +1 -0
- package/lib/shared/components/Search/Search.js +12 -0
- package/lib/shared/components/Search/index.js +1 -0
- package/lib/shared/components/Select/Select.js +90 -0
- package/lib/shared/components/Select/index.js +1 -0
- package/lib/shared/components/Sidebar/Sidebar.js +42 -0
- package/lib/shared/components/Sidebar/index.js +1 -0
- package/lib/shared/components/SlideOver/SlideOver.js +81 -0
- package/lib/shared/components/SlideOver/index.js +1 -0
- package/lib/shared/components/Slider/Slider.js +80 -0
- package/lib/shared/components/Slider/index.js +1 -0
- package/lib/shared/components/Stepper/Stepper.js +32 -0
- package/lib/shared/components/Stepper/index.js +1 -0
- package/lib/shared/components/Steps/Steps.js +53 -0
- package/lib/shared/components/Steps/index.js +1 -0
- package/lib/shared/components/Switch/Switch.js +26 -0
- package/lib/shared/components/Switch/index.js +1 -0
- package/lib/shared/components/Tab/Tab.js +59 -0
- package/lib/shared/components/Tab/index.js +1 -0
- package/lib/shared/components/Table/Table.js +47 -0
- package/lib/shared/components/Table/index.js +1 -0
- package/lib/shared/components/Text/Text.js +11 -0
- package/lib/shared/components/Text/index.js +1 -0
- package/lib/shared/components/TextList/TextList.js +15 -0
- package/lib/shared/components/TextList/index.js +1 -0
- package/lib/shared/components/TimePicker/TimePicker.js +161 -0
- package/lib/shared/components/TimePicker/index.js +1 -0
- package/lib/shared/components/Tooltip/Tooltip.js +13 -0
- package/lib/shared/components/Tooltip/index.js +1 -0
- package/lib/shared/components/Uploader/Uploader.js +63 -0
- package/lib/shared/components/Uploader/index.js +1 -0
- package/lib/shared/components/Video/Video.js +20 -0
- package/lib/shared/components/Video/index.js +1 -0
- package/lib/shared/components/index.d.js +0 -0
- package/lib/shared/components/index.js +50 -0
- package/lib/shared/elements/Color/ColorPallet.js +20 -0
- package/lib/shared/elements/Color/index.js +1 -0
- package/lib/shared/elements/Text.js +37 -0
- package/lib/shared/elements/index.js +1 -0
- package/lib/shared/helpers/FakeLink.js +8 -0
- package/lib/shared/helpers/constants.js +359 -0
- package/lib/shared/helpers/index.js +2 -0
- package/lib/shared/helpers/isEqual.js +56 -0
- package/lib/shared/index.d.js +0 -0
- package/lib/shared/index.js +1 -0
- package/lib/shared/stories/components/Avatar.stories.js +17 -0
- package/lib/shared/stories/components/Badge.stories.dev.js +37 -0
- package/lib/shared/stories/components/Button.stories.js +553 -0
- package/lib/shared/stories/components/Calendar.stories.js +62 -0
- package/lib/shared/stories/components/Cartel.stories.js +32 -0
- package/lib/shared/stories/components/Checkbox.stories.js +15 -0
- package/lib/shared/stories/components/ColorChecker.stories.dev.js +16 -0
- package/lib/shared/stories/components/DateTime.stories.js +27 -0
- package/lib/shared/stories/components/Disclosure.stories.js +30 -0
- package/lib/shared/stories/components/Dropdown.stories.js +39 -0
- package/lib/shared/stories/components/Form/Default.stories.js +201 -0
- package/lib/shared/stories/components/Form/DummyForm.stories.js +48 -0
- package/lib/shared/stories/components/Form/DynamicForm.stories.js +155 -0
- package/lib/shared/stories/components/Form/StepperForm.stories.js +138 -0
- package/lib/shared/stories/components/Form/ValidateForm.stories.js +70 -0
- package/lib/shared/stories/components/Form/Validation.stories.js +184 -0
- package/lib/shared/stories/components/GroupItems.stories.js +23 -0
- package/lib/shared/stories/components/Header.stories.js +29 -0
- package/lib/shared/stories/components/Heading.stories.js +27 -0
- package/lib/shared/stories/components/Icon.stories.js +22 -0
- package/lib/shared/stories/components/Image.stories.js +23 -0
- package/lib/shared/stories/components/Input/Checkbox.stories.js +45 -0
- package/lib/shared/stories/components/Input/DatePicker.stories.js +23 -0
- package/lib/shared/stories/components/Input/Defaut.stories.js +24 -0
- package/lib/shared/stories/components/Input/Number.stories.js +24 -0
- package/lib/shared/stories/components/Input/RCI.stories.js +59 -0
- package/lib/shared/stories/components/Input/Radiobox.stories.dev.js +28 -0
- package/lib/shared/stories/components/Input/Select.stories.dev.js +27 -0
- package/lib/shared/stories/components/Input/SelectMultiple.stories.dev.js +510 -0
- package/lib/shared/stories/components/Input/Textarea.stories.js +24 -0
- package/lib/shared/stories/components/List.stories.js +34 -0
- package/lib/shared/stories/components/Loader.stories.js +15 -0
- package/lib/shared/stories/components/Modal.stories.js +50 -0
- package/lib/shared/stories/components/Notification.stories.js +22 -0
- package/lib/shared/stories/components/Person.stories.js +41 -0
- package/lib/shared/stories/components/Picker.stories.js +15 -0
- package/lib/shared/stories/components/Popover.stories.js +36 -0
- package/lib/shared/stories/components/QRCode.stories.js +20 -0
- package/lib/shared/stories/components/RadioGroup.stories.js +56 -0
- package/lib/shared/stories/components/Select.stories.js +50 -0
- package/lib/shared/stories/components/Sidebar.stories.js +35 -0
- package/lib/shared/stories/components/Slider.stories.dev.js +48 -0
- package/lib/shared/stories/components/Stepper/Stepper.stories.js +38 -0
- package/lib/shared/stories/components/Steps.stories.js +15 -0
- package/lib/shared/stories/components/Switch.stories.js +15 -0
- package/lib/shared/stories/components/Tab.stories.js +15 -0
- package/lib/shared/stories/components/Table.stories.js +95 -0
- package/lib/shared/stories/components/TextList.stories.js +23 -0
- package/lib/shared/stories/components/Tooltip.stories.dev.js +40 -0
- package/lib/shared/stories/elements/Color.stories.js +269 -0
- package/lib/shared/stories/elements/Text.stories.js +45 -0
- package/lib/shared/types/index.js +1 -0
- package/lib/stories/Foundation/BrandIdentity.prod.stories.js +510 -0
- package/lib/stories/Foundation/Logo.stories.js +19 -0
- package/lib/stories/Foundation/RisingSun.stories.js +16 -0
- package/lib/stories/Foundation/Shadows.stories.js +601 -0
- package/lib/stories/Foundation/Symbol.stories.js +18 -0
- package/lib/stories/HeroContainer.stories.js +18 -0
- package/lib/styles/accessibilityTokens.js +72 -0
- package/lib/styles/borderWidth.js +10 -0
- package/lib/styles/colors.js +303 -0
- package/lib/styles/elevation.js +240 -0
- package/lib/styles/icons.js +218 -0
- package/lib/styles/index.js +29 -0
- package/lib/styles/motion.js +668 -0
- package/lib/styles/opacity.js +10 -0
- package/lib/styles/radius.js +11 -0
- package/lib/styles/sizing.js +35 -0
- package/lib/styles/space.js +24 -0
- package/lib/styles/theme/darkTheme.js +471 -0
- package/lib/styles/theme/index.js +44 -0
- package/lib/styles/theme/lightTheme.js +480 -0
- package/lib/styles/theme/themeTypes.js +1 -0
- package/lib/styles/theme/themeUtils.js +63 -0
- package/lib/styles/typography-advanced.js +510 -0
- package/lib/styles/typography.js +1419 -0
- package/lib/styles/zIndex.js +19 -0
- package/lib/tokens/borders.js +161 -0
- package/lib/tokens/colors.js +426 -0
- package/lib/tokens/components.js +499 -0
- package/lib/tokens/index.js +84 -0
- package/lib/tokens/lighting.js +384 -0
- package/lib/tokens/motion.js +284 -0
- package/lib/tokens/semantic.js +367 -0
- package/lib/tokens/shadows.js +114 -0
- package/lib/tokens/spacing.js +189 -0
- package/lib/tokens/typography.js +268 -0
- package/package.json +176 -0
- package/styles/generated-tokens.css +677 -0
- package/styles/index.css +2 -0
- package/styles/main.css +610 -0
- package/tailwind.config.js +64 -0
package/styles/main.css
ADDED
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
|
|
3
|
+
/* ============================================================================
|
|
4
|
+
TAILWIND V4 THEME CONFIGURATION
|
|
5
|
+
Migrated from tailwind.config.js to CSS-based configuration
|
|
6
|
+
============================================================================ */
|
|
7
|
+
|
|
8
|
+
@theme {
|
|
9
|
+
/* Font Families */
|
|
10
|
+
--font-sans: arboria, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
11
|
+
--font-arboria: arboria, sans-serif;
|
|
12
|
+
|
|
13
|
+
/* Custom Colors - Using CSS Variables */
|
|
14
|
+
--color-primary-100: var(--color-primary-100);
|
|
15
|
+
--color-primary-200: var(--color-primary-200);
|
|
16
|
+
--color-primary-300: var(--color-primary-300);
|
|
17
|
+
--color-primary-400: var(--color-primary-400);
|
|
18
|
+
--color-primary-500: var(--color-primary-500);
|
|
19
|
+
--color-primary-600: var(--color-primary-600);
|
|
20
|
+
--color-primary-700: var(--color-primary-700);
|
|
21
|
+
--color-primary-800: var(--color-primary-800);
|
|
22
|
+
--color-primary-900: var(--color-primary-900);
|
|
23
|
+
--color-primary-1000: var(--color-primary-1000);
|
|
24
|
+
--color-primary-1100: var(--color-primary-1100);
|
|
25
|
+
--color-primary-1200: var(--color-primary-1200);
|
|
26
|
+
--color-primary-1300: var(--color-primary-1300);
|
|
27
|
+
--color-primary-1400: var(--color-primary-1400);
|
|
28
|
+
--color-primary-1500: var(--color-primary-1500);
|
|
29
|
+
--color-primary-1600: var(--color-primary-1600);
|
|
30
|
+
--color-primary-1700: var(--color-primary-1700);
|
|
31
|
+
--color-primary-1800: var(--color-primary-1800);
|
|
32
|
+
--color-primary-1900: var(--color-primary-1900);
|
|
33
|
+
--color-primary-2000: var(--color-primary-2000);
|
|
34
|
+
--color-primary-2100: var(--color-primary-2100);
|
|
35
|
+
--color-primary-2200: var(--color-primary-2200);
|
|
36
|
+
--color-primary-2300: var(--color-primary-2300);
|
|
37
|
+
--color-primary-2400: var(--color-primary-2400);
|
|
38
|
+
--color-primary-2500: var(--color-primary-2500);
|
|
39
|
+
--color-primary-2600: var(--color-primary-2600);
|
|
40
|
+
--color-primary-2700: var(--color-primary-2700);
|
|
41
|
+
|
|
42
|
+
--color-neutral-100: var(--color-neutral-100);
|
|
43
|
+
--color-neutral-200: var(--color-neutral-200);
|
|
44
|
+
--color-neutral-300: var(--color-neutral-300);
|
|
45
|
+
--color-neutral-400: var(--color-neutral-400);
|
|
46
|
+
--color-neutral-500: var(--color-neutral-500);
|
|
47
|
+
--color-neutral-600: var(--color-neutral-600);
|
|
48
|
+
--color-neutral-700: var(--color-neutral-700);
|
|
49
|
+
--color-neutral-800: var(--color-neutral-800);
|
|
50
|
+
--color-neutral-900: var(--color-neutral-900);
|
|
51
|
+
--color-neutral-1000: var(--color-neutral-1000);
|
|
52
|
+
--color-neutral-1100: var(--color-neutral-1100);
|
|
53
|
+
--color-neutral-1200: var(--color-neutral-1200);
|
|
54
|
+
--color-neutral-1300: var(--color-neutral-1300);
|
|
55
|
+
--color-neutral-1400: var(--color-neutral-1400);
|
|
56
|
+
--color-neutral-1500: var(--color-neutral-1500);
|
|
57
|
+
--color-neutral-1600: var(--color-neutral-1600);
|
|
58
|
+
--color-neutral-1700: var(--color-neutral-1700);
|
|
59
|
+
--color-neutral-1800: var(--color-neutral-1800);
|
|
60
|
+
--color-neutral-1900: var(--color-neutral-1900);
|
|
61
|
+
--color-neutral-2000: var(--color-neutral-2000);
|
|
62
|
+
--color-neutral-2100: var(--color-neutral-2100);
|
|
63
|
+
--color-neutral-2200: var(--color-neutral-2200);
|
|
64
|
+
--color-neutral-2300: var(--color-neutral-2300);
|
|
65
|
+
--color-neutral-2400: var(--color-neutral-2400);
|
|
66
|
+
--color-neutral-2500: var(--color-neutral-2500);
|
|
67
|
+
--color-neutral-2600: var(--color-neutral-2600);
|
|
68
|
+
--color-neutral-2700: var(--color-neutral-2700);
|
|
69
|
+
|
|
70
|
+
--color-background: var(--color-background);
|
|
71
|
+
--color-silver: var(--color-silver);
|
|
72
|
+
|
|
73
|
+
/* Background Colors */
|
|
74
|
+
--color-glass: rgba(234, 236, 242, 0.30);
|
|
75
|
+
|
|
76
|
+
/* Box Shadows */
|
|
77
|
+
--shadow-glass: 0px 20px 80px 0px rgba(0, 0, 0, 0.20), 4px 4px 26px 0px rgba(255, 255, 255, 0.12) inset, 0px 4px 2px 0px rgba(255, 255, 255, 0.12) inset, 0px -4px 2px 0px rgba(0, 0, 0, 0.20) inset;
|
|
78
|
+
--shadow-soft-bevel: 0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
|
|
79
|
+
--shadow-hover: 2px 2px 4px 0px rgba(76, 0, 175, 0.25), 2px -2px 4px 0px rgba(201, 0, 59, 0.25), -2px -2px 4px 0px rgba(169, 115, 238, 0.25), -2px 2px 4px 0px rgba(166, 0, 49, 0.25);
|
|
80
|
+
--drop-shadow-short: 0 1px 1px rgba(0, 0, 0, 0.75);
|
|
81
|
+
|
|
82
|
+
/* Border Widths */
|
|
83
|
+
--border-width-05: 0.5px;
|
|
84
|
+
|
|
85
|
+
/* Border Radius */
|
|
86
|
+
--radius-48: 48px;
|
|
87
|
+
|
|
88
|
+
/* Font Sizes */
|
|
89
|
+
--font-size-button-tiny: 11.7px;
|
|
90
|
+
--font-size-button-small: 14px;
|
|
91
|
+
--font-size-button-medium: 16.8px;
|
|
92
|
+
--font-size-button-large: 20.2px;
|
|
93
|
+
|
|
94
|
+
/* Heights (Viewport) */
|
|
95
|
+
--height-golden: 61.8vh;
|
|
96
|
+
--height-v8: 8vh;
|
|
97
|
+
--height-v16: 16vh;
|
|
98
|
+
--height-v24: 24vh;
|
|
99
|
+
--height-v32: 32vh;
|
|
100
|
+
--height-v40: 40vh;
|
|
101
|
+
--height-v48: 48vh;
|
|
102
|
+
--height-v56: 56vh;
|
|
103
|
+
--height-v68: 68vh;
|
|
104
|
+
--height-v76: 76vh;
|
|
105
|
+
--height-v84: 84vh;
|
|
106
|
+
--height-v92: 92vh;
|
|
107
|
+
--height-safe: calc(100vh - env(safe-area-inset-bottom));
|
|
108
|
+
|
|
109
|
+
/* Animations */
|
|
110
|
+
--animate-marquee: marquee 60s linear infinite;
|
|
111
|
+
--animate-marquee-mirror: marquee-mirror 60s linear infinite;
|
|
112
|
+
--animate-show-hide: showHide 2s ease infinite;
|
|
113
|
+
--animate-endless-grid: endlessGrid 15s infinite linear;
|
|
114
|
+
--animate-endless: endless 10s infinite linear;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* Keyframes for animations */
|
|
118
|
+
@keyframes marquee {
|
|
119
|
+
0% { transform: translateX(0%); }
|
|
120
|
+
100% { transform: translateX(-100%); }
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@keyframes marquee-mirror {
|
|
124
|
+
0% { transform: translateX(100%); }
|
|
125
|
+
100% { transform: translateX(0%); }
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@keyframes showHide {
|
|
129
|
+
0% { opacity: 0; }
|
|
130
|
+
5% { opacity: 1; }
|
|
131
|
+
95% { opacity: 1; }
|
|
132
|
+
100% { opacity: 0; }
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@keyframes endlessGrid {
|
|
136
|
+
0% { background-position: 0px -200px, 0px 0px; }
|
|
137
|
+
100% { background-position: 0px 0px, 0px 0px; }
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@keyframes endless {
|
|
141
|
+
0% { transform: rotateX(45deg) translateY(-50%); }
|
|
142
|
+
100% { transform: rotateX(45deg) translateY(0); }
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* ============================================================================
|
|
146
|
+
CUSTOM UTILITIES - FRACTIONAL WIDTHS
|
|
147
|
+
Required for Layout component's dynamic column spans
|
|
148
|
+
============================================================================ */
|
|
149
|
+
|
|
150
|
+
.w-1\/12 { width: 8.333333%; }
|
|
151
|
+
.w-2\/12 { width: 16.666667%; }
|
|
152
|
+
.w-3\/12 { width: 25%; }
|
|
153
|
+
.w-4\/12 { width: 33.333333%; }
|
|
154
|
+
.w-5\/12 { width: 41.666667%; }
|
|
155
|
+
.w-6\/12 { width: 50%; }
|
|
156
|
+
.w-7\/12 { width: 58.333333%; }
|
|
157
|
+
.w-8\/12 { width: 66.666667%; }
|
|
158
|
+
.w-9\/12 { width: 75%; }
|
|
159
|
+
.w-10\/12 { width: 83.333333%; }
|
|
160
|
+
.w-11\/12 { width: 91.666667%; }
|
|
161
|
+
|
|
162
|
+
/* ============================================================================
|
|
163
|
+
TYPEKIT FONTS
|
|
164
|
+
============================================================================ */
|
|
165
|
+
|
|
166
|
+
/*
|
|
167
|
+
* The Typekit service used to deliver this font or fonts for use on websites
|
|
168
|
+
* is provided by Adobe and is subject to these Terms of Use
|
|
169
|
+
* http://www.adobe.com/products/eulas/tou_typekit. For font license
|
|
170
|
+
* information, see the list below.
|
|
171
|
+
*
|
|
172
|
+
* arboria:
|
|
173
|
+
* - http://typekit.com/eulas/00000000000000003b9b011a
|
|
174
|
+
* - http://typekit.com/eulas/00000000000000003b9b011c
|
|
175
|
+
* - http://typekit.com/eulas/00000000000000003b9b011d
|
|
176
|
+
* - http://typekit.com/eulas/00000000000000003b9b011e
|
|
177
|
+
* - http://typekit.com/eulas/00000000000000003b9b011f
|
|
178
|
+
* - http://typekit.com/eulas/00000000000000003b9b0120
|
|
179
|
+
* - http://typekit.com/eulas/00000000000000003b9b0121
|
|
180
|
+
* - http://typekit.com/eulas/00000000000000003b9b0122
|
|
181
|
+
* - http://typekit.com/eulas/00000000000000003b9b0123
|
|
182
|
+
*
|
|
183
|
+
* © 2009-2023 Adobe Systems Incorporated. All Rights Reserved.
|
|
184
|
+
*/
|
|
185
|
+
/*{"last_published":"2023-08-01 02:18:15 UTC"}*/
|
|
186
|
+
|
|
187
|
+
@import url("https://p.typekit.net/p.css?s=1&k=vmt3skp&ht=tk&f=34860.34862.34863.34864.34865.34866.34867.34868.34869&a=46063616&app=typekit&e=css");
|
|
188
|
+
|
|
189
|
+
@font-face {
|
|
190
|
+
font-family:"arboria";
|
|
191
|
+
src:url("https://use.typekit.net/af/8ad5fe/00000000000000003b9b011a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"),url("https://use.typekit.net/af/8ad5fe/00000000000000003b9b011a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"),url("https://use.typekit.net/af/8ad5fe/00000000000000003b9b011a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
|
|
192
|
+
font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
@font-face {
|
|
196
|
+
font-family:"arboria";
|
|
197
|
+
src:url("https://use.typekit.net/af/2ed003/00000000000000003b9b011c/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),url("https://use.typekit.net/af/2ed003/00000000000000003b9b011c/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),url("https://use.typekit.net/af/2ed003/00000000000000003b9b011c/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
|
|
198
|
+
font-display:auto;font-style:italic;font-weight:400;font-stretch:normal;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@font-face {
|
|
202
|
+
font-family:"arboria";
|
|
203
|
+
src:url("https://use.typekit.net/af/f350ae/00000000000000003b9b011d/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/f350ae/00000000000000003b9b011d/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/f350ae/00000000000000003b9b011d/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
|
|
204
|
+
font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
@font-face {
|
|
208
|
+
font-family:"arboria";
|
|
209
|
+
src:url("https://use.typekit.net/af/69ac60/00000000000000003b9b011e/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"),url("https://use.typekit.net/af/69ac60/00000000000000003b9b011e/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"),url("https://use.typekit.net/af/69ac60/00000000000000003b9b011e/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
|
|
210
|
+
font-display:auto;font-style:normal;font-weight:500;font-stretch:normal;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
@font-face {
|
|
214
|
+
font-family:"arboria";
|
|
215
|
+
src:url("https://use.typekit.net/af/f89c37/00000000000000003b9b011f/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i5&v=3") format("woff2"),url("https://use.typekit.net/af/f89c37/00000000000000003b9b011f/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i5&v=3") format("woff"),url("https://use.typekit.net/af/f89c37/00000000000000003b9b011f/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i5&v=3") format("opentype");
|
|
216
|
+
font-display:auto;font-style:italic;font-weight:500;font-stretch:normal;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
@font-face {
|
|
220
|
+
font-family:"arboria";
|
|
221
|
+
src:url("https://use.typekit.net/af/7c0289/00000000000000003b9b0120/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/7c0289/00000000000000003b9b0120/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/7c0289/00000000000000003b9b0120/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
|
|
222
|
+
font-display:auto;font-style:normal;font-weight:700;font-stretch:normal;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
@font-face {
|
|
226
|
+
font-family:"arboria";
|
|
227
|
+
src:url("https://use.typekit.net/af/1f8fa9/00000000000000003b9b0121/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"),url("https://use.typekit.net/af/1f8fa9/00000000000000003b9b0121/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"),url("https://use.typekit.net/af/1f8fa9/00000000000000003b9b0121/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
|
|
228
|
+
font-display:auto;font-style:italic;font-weight:700;font-stretch:normal;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@font-face {
|
|
232
|
+
font-family:"arboria";
|
|
233
|
+
src:url("https://use.typekit.net/af/1ad443/00000000000000003b9b0122/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2"),url("https://use.typekit.net/af/1ad443/00000000000000003b9b0122/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff"),url("https://use.typekit.net/af/1ad443/00000000000000003b9b0122/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("opentype");
|
|
234
|
+
font-display:auto;font-style:normal;font-weight:900;font-stretch:normal;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
@font-face {
|
|
238
|
+
font-family:"arboria";
|
|
239
|
+
src:url("https://use.typekit.net/af/fce9bd/00000000000000003b9b0123/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i9&v=3") format("woff2"),url("https://use.typekit.net/af/fce9bd/00000000000000003b9b0123/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i9&v=3") format("woff"),url("https://use.typekit.net/af/fce9bd/00000000000000003b9b0123/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i9&v=3") format("opentype");
|
|
240
|
+
font-display:auto;font-style:italic;font-weight:900;font-stretch:normal;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.tk-arboria { font-family: "arboria",sans-serif; }
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
/* Custom Typography Classes */
|
|
249
|
+
.text-display-bold {
|
|
250
|
+
font-size: 72.2px;
|
|
251
|
+
font-weight: 700;
|
|
252
|
+
}
|
|
253
|
+
.text-display-semi-bold {
|
|
254
|
+
font-size: 72.2px;
|
|
255
|
+
font-weight: 600;
|
|
256
|
+
}
|
|
257
|
+
.text-display-extra-bold {
|
|
258
|
+
font-size: 72.2px;
|
|
259
|
+
font-weight: 800;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.text-h1-bold {
|
|
263
|
+
font-size: 60.2px;
|
|
264
|
+
font-weight: 700;
|
|
265
|
+
}
|
|
266
|
+
.text-h1-semi-bold {
|
|
267
|
+
font-size: 60.2px;
|
|
268
|
+
font-weight: 600;
|
|
269
|
+
}
|
|
270
|
+
.text-h1-extra-bold {
|
|
271
|
+
font-size: 60.2px;
|
|
272
|
+
font-weight: 800;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.text-h2-bold {
|
|
276
|
+
font-size: 41.8px;
|
|
277
|
+
font-weight: 700;
|
|
278
|
+
}
|
|
279
|
+
.text-h2-semi-bold {
|
|
280
|
+
font-size: 41.8px;
|
|
281
|
+
font-weight: 600;
|
|
282
|
+
}
|
|
283
|
+
.text-h2-extra-bold {
|
|
284
|
+
font-size: 41.8px;
|
|
285
|
+
font-weight: 800;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.text-h3-bold {
|
|
289
|
+
font-size: 34.8px;
|
|
290
|
+
font-weight: 700;
|
|
291
|
+
}
|
|
292
|
+
.text-h3-semi-bold {
|
|
293
|
+
font-size: 34.8px;
|
|
294
|
+
font-weight: 600;
|
|
295
|
+
}
|
|
296
|
+
.text-h3-extra-bold {
|
|
297
|
+
font-size: 34.8px;
|
|
298
|
+
font-weight: 800;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.text-h4-bold {
|
|
302
|
+
font-size: 29px;
|
|
303
|
+
font-weight: 700;
|
|
304
|
+
}
|
|
305
|
+
.text-h4-semi-bold {
|
|
306
|
+
font-size: 29px;
|
|
307
|
+
font-weight: 600;
|
|
308
|
+
}
|
|
309
|
+
.text-h4-extra-bold {
|
|
310
|
+
font-size: 29px;
|
|
311
|
+
font-weight: 800;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.text-subheading-medium {
|
|
315
|
+
font-size: 24.2px;
|
|
316
|
+
font-weight: 500;
|
|
317
|
+
}
|
|
318
|
+
.text-subheading-bold {
|
|
319
|
+
font-size: 24.2px;
|
|
320
|
+
font-weight: 700;
|
|
321
|
+
}
|
|
322
|
+
.text-subheading-underlined {
|
|
323
|
+
font-size: 24.2px;
|
|
324
|
+
text-decoration: underline;
|
|
325
|
+
}
|
|
326
|
+
.text-subheading-light {
|
|
327
|
+
font-size: 24.2px;
|
|
328
|
+
font-weight: 300;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.text-p1-medium {
|
|
332
|
+
font-size: 20.2px;
|
|
333
|
+
font-weight: 500;
|
|
334
|
+
}
|
|
335
|
+
.text-p1-bold {
|
|
336
|
+
font-size: 20.2px;
|
|
337
|
+
font-weight: 700;
|
|
338
|
+
}
|
|
339
|
+
.text-p1-underlined {
|
|
340
|
+
font-size: 20.2px;
|
|
341
|
+
text-decoration: underline;
|
|
342
|
+
}
|
|
343
|
+
.text-p1-light {
|
|
344
|
+
font-size: 20.2px;
|
|
345
|
+
font-weight: 300;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.text-p2-medium {
|
|
349
|
+
font-size: 16.8px;
|
|
350
|
+
font-weight: 500;
|
|
351
|
+
}
|
|
352
|
+
.text-p2-bold {
|
|
353
|
+
font-size: 16.8px;
|
|
354
|
+
font-weight: 700;
|
|
355
|
+
}
|
|
356
|
+
.text-p2-underlined {
|
|
357
|
+
font-size: 16.8px;
|
|
358
|
+
text-decoration: underline;
|
|
359
|
+
}
|
|
360
|
+
.text-p2-light {
|
|
361
|
+
font-size: 16.8px;
|
|
362
|
+
font-weight: 300;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.text-p3-medium {
|
|
366
|
+
font-size: 14px;
|
|
367
|
+
font-weight: 500;
|
|
368
|
+
}
|
|
369
|
+
.text-p3-bold {
|
|
370
|
+
font-size: 14px;
|
|
371
|
+
font-weight: 700;
|
|
372
|
+
}
|
|
373
|
+
.text-p3-underlined {
|
|
374
|
+
font-size: 14px;
|
|
375
|
+
text-decoration: underline;
|
|
376
|
+
}
|
|
377
|
+
.text-p3-light {
|
|
378
|
+
font-size: 14px;
|
|
379
|
+
font-weight: 300;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.text-caption-medium {
|
|
383
|
+
font-size: 11.7px;
|
|
384
|
+
font-weight: 500;
|
|
385
|
+
}
|
|
386
|
+
.text-caption-bold {
|
|
387
|
+
font-size: 11.7px;
|
|
388
|
+
font-weight: 700;
|
|
389
|
+
}
|
|
390
|
+
.text-caption-underlined {
|
|
391
|
+
font-size: 11.7px;
|
|
392
|
+
text-decoration: underline;
|
|
393
|
+
}
|
|
394
|
+
.text-caption-light {
|
|
395
|
+
font-size: 11.7px;
|
|
396
|
+
font-weight: 300;
|
|
397
|
+
}
|
|
398
|
+
.text-caption-bold-underlined {
|
|
399
|
+
font-size: 11.7px;
|
|
400
|
+
font-weight: 700;
|
|
401
|
+
text-decoration: underline;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.text-footer-medium {
|
|
405
|
+
font-size: 9.7px;
|
|
406
|
+
font-weight: 500;
|
|
407
|
+
}
|
|
408
|
+
.text-footer-bold {
|
|
409
|
+
font-size: 9.7px;
|
|
410
|
+
font-weight: 700;
|
|
411
|
+
}
|
|
412
|
+
.text-footer-underlined {
|
|
413
|
+
font-size: 9.7px;
|
|
414
|
+
text-decoration: underline;
|
|
415
|
+
}
|
|
416
|
+
.text-footer-light {
|
|
417
|
+
font-size: 9.7px;
|
|
418
|
+
font-weight: 300;
|
|
419
|
+
}
|
|
420
|
+
.text-footer-bold-underlined {
|
|
421
|
+
font-size: 9.7px;
|
|
422
|
+
font-weight: 700;
|
|
423
|
+
text-decoration: underline;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
html {
|
|
427
|
+
scroll-behavior: smooth;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
body {
|
|
431
|
+
font-family: "arboria";
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
@keyframes play-hero {
|
|
435
|
+
0% {
|
|
436
|
+
transform: rotateX(45deg) translateY(-50%);
|
|
437
|
+
}
|
|
438
|
+
100% {
|
|
439
|
+
transform: rotateX(45deg) translateY(0);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
a[disabled] {
|
|
444
|
+
pointer-events: none;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
::-webkit-scrollbar {
|
|
448
|
+
width: 0px;
|
|
449
|
+
height: 0px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.scrollbar-none {
|
|
453
|
+
scrollbar-width: none;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.bt-primary-default {
|
|
457
|
+
background-image: linear-gradient(90deg, #DADEF3 0%, #CBD4DC 99.7%)
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.bt-secondary-default {
|
|
461
|
+
background-image: linear-gradient(270deg, #717E8B 0.49%, #626D79 98.93%);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.bt-neutral-default {
|
|
465
|
+
background-image: linear-gradient(270deg, #E0E3E6 0.3%, #DADEF3 100%)
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.light {
|
|
469
|
+
--color-primary-100: #E6E6E7;
|
|
470
|
+
--color-primary-200: #E0E3E6;
|
|
471
|
+
--color-primary-300: #DADFE3;
|
|
472
|
+
--color-primary-400: #D3DAE1;
|
|
473
|
+
--color-primary-500: #CBD4DC;
|
|
474
|
+
--color-primary-600: #C6CFDA;
|
|
475
|
+
--color-primary-700: #BAC5D1;
|
|
476
|
+
--color-primary-800: #B1BDCA;
|
|
477
|
+
--color-primary-900: #A1AEBD;
|
|
478
|
+
--color-primary-1000: #93A0AF;
|
|
479
|
+
--color-primary-1100: #8390A0;
|
|
480
|
+
--color-primary-1200: #717E8B;
|
|
481
|
+
--color-primary-1300: #626D79;
|
|
482
|
+
--color-primary-1400: #505A64;
|
|
483
|
+
--color-primary-1500: #424A52;
|
|
484
|
+
--color-primary-1600: #343B41;
|
|
485
|
+
--color-primary-1700: #2A2F35;
|
|
486
|
+
--color-primary-1800: #212428;
|
|
487
|
+
--color-primary-1900: #1A1D1F;
|
|
488
|
+
--color-primary-2000: #121416;
|
|
489
|
+
--color-primary-2100: #101012;
|
|
490
|
+
--color-primary-2200: #0C0C0D;
|
|
491
|
+
--color-primary-2300: #0A0A0B;
|
|
492
|
+
--color-primary-2400: #080909;
|
|
493
|
+
--color-primary-2500: #080809;
|
|
494
|
+
--color-primary-2600: #070707;
|
|
495
|
+
--color-primary-2700: #060607;
|
|
496
|
+
|
|
497
|
+
--color-neutral-100: #E6E6E7;
|
|
498
|
+
--color-neutral-200: #E0E3E6;
|
|
499
|
+
--color-neutral-300: #DADFE3;
|
|
500
|
+
--color-neutral-400: #D3DAE1;
|
|
501
|
+
--color-neutral-500: #CBD4DC;
|
|
502
|
+
--color-neutral-600: #C6CFDA;
|
|
503
|
+
--color-neutral-700: #BAC5D1;
|
|
504
|
+
--color-neutral-800: #B1BDCA;
|
|
505
|
+
--color-neutral-900: #A1AEBD;
|
|
506
|
+
--color-neutral-1000: #93A0AF;
|
|
507
|
+
--color-neutral-1100: #8390A0;
|
|
508
|
+
--color-neutral-1200: #717E8B;
|
|
509
|
+
--color-neutral-1300: #626D79;
|
|
510
|
+
--color-neutral-1400: #505A64;
|
|
511
|
+
--color-neutral-1500: #424A52;
|
|
512
|
+
--color-neutral-1600: #343B41;
|
|
513
|
+
--color-neutral-1700: #2A2F35;
|
|
514
|
+
--color-neutral-1800: #212428;
|
|
515
|
+
--color-neutral-1900: #1A1D1F;
|
|
516
|
+
--color-neutral-2000: #121416;
|
|
517
|
+
--color-neutral-2100: #101012;
|
|
518
|
+
--color-neutral-2200: #0C0C0D;
|
|
519
|
+
--color-neutral-2300: #0A0A0B;
|
|
520
|
+
--color-neutral-2400: #080909;
|
|
521
|
+
--color-neutral-2500: #080809;
|
|
522
|
+
--color-neutral-2600: #070707;
|
|
523
|
+
--color-neutral-2700: #060607;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
.midnight {
|
|
528
|
+
--color-primary-100: #E6E6E7;
|
|
529
|
+
--color-primary-200: #E0E3E6;
|
|
530
|
+
--color-primary-300: #DADFE3;
|
|
531
|
+
--color-primary-400: #D3DAE1;
|
|
532
|
+
--color-primary-500: #CBD4DC;
|
|
533
|
+
--color-primary-600: #C6CFDA;
|
|
534
|
+
--color-primary-700: #BAC5D1;
|
|
535
|
+
--color-primary-800: #B1BDCA;
|
|
536
|
+
--color-primary-900: #A1AEBD;
|
|
537
|
+
--color-primary-1000: #93A0AF;
|
|
538
|
+
--color-primary-1100: #8390A0;
|
|
539
|
+
--color-primary-1200: #717E8B;
|
|
540
|
+
--color-primary-1300: #626D79;
|
|
541
|
+
--color-primary-1400: #505A64;
|
|
542
|
+
--color-primary-1500: #424A52;
|
|
543
|
+
--color-primary-1600: #343B41;
|
|
544
|
+
--color-primary-1700: #2A2F35;
|
|
545
|
+
--color-primary-1800: #212428;
|
|
546
|
+
--color-primary-1900: #1A1D1F;
|
|
547
|
+
--color-primary-2000: #121416;
|
|
548
|
+
--color-primary-2100: #101012;
|
|
549
|
+
--color-primary-2200: #0C0C0D;
|
|
550
|
+
--color-primary-2300: #0A0A0B;
|
|
551
|
+
--color-primary-2400: #080909;
|
|
552
|
+
--color-primary-2500: #080809;
|
|
553
|
+
--color-primary-2600: #070707;
|
|
554
|
+
--color-primary-2700: #060607;
|
|
555
|
+
|
|
556
|
+
--color-neutral-100: #E6E6E7;
|
|
557
|
+
--color-neutral-200: #E0E3E6;
|
|
558
|
+
--color-neutral-300: #DADEF3;
|
|
559
|
+
--color-neutral-400: #D3DAE1;
|
|
560
|
+
--color-neutral-500: #CBD4DC;
|
|
561
|
+
--color-neutral-600: #C2CCD5;
|
|
562
|
+
--color-neutral-700: #BAC5D1;
|
|
563
|
+
--color-neutral-800: #ADBBC8;
|
|
564
|
+
--color-neutral-900: #A1AEBD;
|
|
565
|
+
--color-neutral-1000: #93A0AF;
|
|
566
|
+
--color-neutral-1100: #8390A0;
|
|
567
|
+
--color-neutral-1200: #717E8B;
|
|
568
|
+
--color-neutral-1300: #626D79;
|
|
569
|
+
--color-neutral-1400: #505A64;
|
|
570
|
+
--color-neutral-1500: #424A52;
|
|
571
|
+
--color-neutral-1600: #343B41;
|
|
572
|
+
--color-neutral-1700: #2A2F35;
|
|
573
|
+
--color-neutral-1800: #212428;
|
|
574
|
+
--color-neutral-1900: #1A1D1F;
|
|
575
|
+
--color-neutral-2000: #121416;
|
|
576
|
+
--color-neutral-2100: #101012;
|
|
577
|
+
--color-neutral-2200: #0C0C0D;
|
|
578
|
+
--color-neutral-2300: #0A0A0B;
|
|
579
|
+
--color-neutral-2400: #080909;
|
|
580
|
+
--color-neutral-2500: #080809;
|
|
581
|
+
--color-neutral-2600: #070707;
|
|
582
|
+
--color-neutral-2700: #070707;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.rising-sun-container {
|
|
586
|
+
position: relative;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
.hero-container {
|
|
591
|
+
position: absolute;
|
|
592
|
+
top: 50%;
|
|
593
|
+
left: 50%;
|
|
594
|
+
transform: translate(-50%, -50%);
|
|
595
|
+
display: flex;
|
|
596
|
+
flex-direction: column;
|
|
597
|
+
align-items: center;
|
|
598
|
+
justify-content: center;
|
|
599
|
+
width: 80%; /* Adjust width as needed */
|
|
600
|
+
max-width: 600px; /* Optional: for better control on larger screens */
|
|
601
|
+
margin: 0 auto;
|
|
602
|
+
padding: 20px;
|
|
603
|
+
box-sizing: border-box;
|
|
604
|
+
z-index: 1000; /* Ensure it's above other elements */
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.rising-sun-canvas {
|
|
608
|
+
display: block;
|
|
609
|
+
background-color: '#080909'
|
|
610
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// Tailwind CSS v4 Configuration
|
|
2
|
+
// Minimal config for content detection and safelist
|
|
3
|
+
|
|
4
|
+
/** @type {import('tailwindcss').Config} */
|
|
5
|
+
export default {
|
|
6
|
+
// Dark mode configuration
|
|
7
|
+
darkMode: 'class',
|
|
8
|
+
|
|
9
|
+
// Content paths for class detection
|
|
10
|
+
content: [
|
|
11
|
+
'./src/**/*.{js,jsx,ts,tsx}',
|
|
12
|
+
'./lib/**/*.{js,jsx,ts,tsx}',
|
|
13
|
+
'./.storybook/**/*.{js,jsx,ts,tsx,mdx}',
|
|
14
|
+
],
|
|
15
|
+
|
|
16
|
+
// Safelist classes that are dynamically generated or required
|
|
17
|
+
safelist: [
|
|
18
|
+
// Layout component fractional widths
|
|
19
|
+
'w-1/12', 'w-2/12', 'w-3/12', 'w-4/12', 'w-5/12', 'w-6/12',
|
|
20
|
+
'w-7/12', 'w-8/12', 'w-9/12', 'w-10/12', 'w-11/12', 'w-full',
|
|
21
|
+
|
|
22
|
+
// Flex utilities
|
|
23
|
+
'flex', 'flex-row', 'flex-col', 'flex-wrap', 'flex-nowrap',
|
|
24
|
+
|
|
25
|
+
// Alignment utilities
|
|
26
|
+
'items-start', 'items-center', 'items-end', 'items-stretch',
|
|
27
|
+
'justify-start', 'justify-center', 'justify-end',
|
|
28
|
+
'justify-between', 'justify-around', 'justify-evenly',
|
|
29
|
+
|
|
30
|
+
// Common utilities used across components
|
|
31
|
+
'w-auto', 'mx-auto', 'w-full',
|
|
32
|
+
'max-w-sm', 'max-w-screen-sm', 'max-w-screen-md',
|
|
33
|
+
'max-w-screen-lg', 'max-w-screen-xl', 'max-w-screen-2xl',
|
|
34
|
+
'sm:max-w-sm', 'sm:max-w-screen-sm', 'sm:max-w-screen-lg', 'sm:max-w-screen-2xl',
|
|
35
|
+
|
|
36
|
+
// Padding and margin
|
|
37
|
+
'p-0', 'p-4', 'p-6', 'p-8',
|
|
38
|
+
|
|
39
|
+
// Grid classes
|
|
40
|
+
'grid', 'grid-cols-1', 'grid-cols-2', 'grid-cols-3', 'grid-cols-4',
|
|
41
|
+
'grid-cols-5', 'grid-cols-6', 'grid-cols-7', 'grid-cols-8',
|
|
42
|
+
'grid-cols-9', 'grid-cols-10', 'grid-cols-11', 'grid-cols-12',
|
|
43
|
+
'gap-4', 'gap-8',
|
|
44
|
+
|
|
45
|
+
// Typography classes (custom)
|
|
46
|
+
'text-display-bold', 'text-display-semi-bold', 'text-display-extra-bold',
|
|
47
|
+
'text-h1-bold', 'text-h1-semi-bold', 'text-h1-extra-bold',
|
|
48
|
+
'text-h2-bold', 'text-h2-semi-bold', 'text-h2-extra-bold',
|
|
49
|
+
'text-h3-bold', 'text-h3-semi-bold', 'text-h3-extra-bold',
|
|
50
|
+
'text-h4-bold', 'text-h4-semi-bold', 'text-h4-extra-bold',
|
|
51
|
+
'text-subheading-medium', 'text-subheading-bold', 'text-subheading-underlined',
|
|
52
|
+
'text-p1-medium', 'text-p1-bold', 'text-p2-medium', 'text-p2-bold',
|
|
53
|
+
'text-p3-medium', 'text-p3-bold', 'text-caption-medium', 'text-caption-bold',
|
|
54
|
+
'text-footer-medium', 'text-footer-bold',
|
|
55
|
+
|
|
56
|
+
// Border utilities
|
|
57
|
+
'border', 'border-b', 'border-none', 'border-solid',
|
|
58
|
+
'rounded', 'rounded-lg',
|
|
59
|
+
|
|
60
|
+
// Height utilities
|
|
61
|
+
'h-auto', 'h-screen', 'h-full', 'h-64',
|
|
62
|
+
'h-golden', 'h-v56',
|
|
63
|
+
],
|
|
64
|
+
};
|