@shohojdhara/atomix 0.2.1 → 0.2.3
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/README.md +1 -28
- package/dist/atomix.css +1500 -241
- package/dist/atomix.min.css +6 -6
- package/dist/index.d.ts +1052 -194
- package/dist/index.esm.js +12201 -6066
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5481 -2827
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/themes/boomdevs.css +1500 -301
- package/dist/themes/boomdevs.min.css +60 -8
- package/dist/themes/esrar.css +1500 -241
- package/dist/themes/esrar.min.css +6 -6
- package/dist/themes/mashroom.css +1496 -237
- package/dist/themes/mashroom.min.css +8 -8
- package/dist/themes/shaj-default.css +1451 -192
- package/dist/themes/shaj-default.min.css +6 -6
- package/package.json +66 -15
- package/src/components/Accordion/Accordion.stories.tsx +137 -0
- package/src/components/Accordion/Accordion.tsx +33 -3
- package/src/components/AtomixGlass/AtomixGlass.stories.tsx +3011 -0
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +199 -0
- package/src/components/AtomixGlass/AtomixGlass.tsx +1281 -0
- package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +1369 -0
- package/src/components/AtomixGlass/README.md +134 -0
- package/src/components/AtomixGlass/index.ts +10 -0
- package/src/components/AtomixGlass/shader-utils.ts +140 -0
- package/src/components/AtomixGlass/utils.ts +8 -0
- package/src/components/Badge/Badge.stories.tsx +169 -0
- package/src/components/Badge/Badge.tsx +27 -2
- package/src/components/Button/Button.stories.tsx +345 -0
- package/src/components/Button/Button.tsx +35 -3
- package/src/components/Button/README.md +216 -0
- package/src/components/Callout/Callout.stories.tsx +813 -78
- package/src/components/Callout/Callout.test.tsx +368 -0
- package/src/components/Callout/Callout.tsx +26 -7
- package/src/components/Callout/README.md +409 -0
- package/src/components/Card/Card.stories.tsx +140 -0
- package/src/components/Card/Card.tsx +19 -3
- package/src/components/DatePicker/DatePicker copy.tsx +551 -0
- package/src/components/DatePicker/DatePicker.stories.tsx +188 -0
- package/src/components/DatePicker/DatePicker.tsx +379 -332
- package/src/components/DatePicker/readme.md +110 -1
- package/src/components/DatePicker/types.ts +8 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +145 -0
- package/src/components/Dropdown/Dropdown.tsx +34 -5
- package/src/components/Footer/Footer.stories.tsx +388 -0
- package/src/components/Footer/Footer.tsx +197 -0
- package/src/components/Footer/FooterLink.tsx +72 -0
- package/src/components/Footer/FooterSection.tsx +87 -0
- package/src/components/Footer/FooterSocialLink.tsx +117 -0
- package/src/components/Footer/README.md +261 -0
- package/src/components/Footer/index.ts +13 -0
- package/src/components/Form/Checkbox.stories.tsx +101 -0
- package/src/components/Form/Checkbox.tsx +26 -2
- package/src/components/Form/Input.stories.tsx +124 -0
- package/src/components/Form/Input.tsx +36 -7
- package/src/components/Form/Radio.stories.tsx +139 -0
- package/src/components/Form/Radio.tsx +26 -2
- package/src/components/Form/Select.stories.tsx +110 -0
- package/src/components/Form/Select.tsx +26 -2
- package/src/components/Form/Textarea.stories.tsx +104 -0
- package/src/components/Form/Textarea.tsx +36 -7
- package/src/components/Hero/Hero.stories.tsx +54 -1
- package/src/components/Hero/Hero.tsx +70 -11
- package/src/components/Modal/Modal.stories.tsx +235 -0
- package/src/components/Modal/Modal.tsx +64 -35
- package/src/components/Pagination/Pagination.stories.tsx +101 -0
- package/src/components/Pagination/Pagination.tsx +25 -1
- package/src/components/Popover/Popover.stories.tsx +94 -0
- package/src/components/Popover/Popover.tsx +30 -4
- package/src/components/Rating/Rating.stories.tsx +112 -0
- package/src/components/Rating/Rating.tsx +25 -1
- package/src/components/SectionIntro/SectionIntro.tsx +9 -11
- package/src/components/Slider/Slider.stories.tsx +634 -50
- package/src/components/Slider/Slider.tsx +5 -3
- package/src/components/Steps/Steps.stories.tsx +119 -0
- package/src/components/Steps/Steps.tsx +32 -1
- package/src/components/Tab/Tab.stories.tsx +88 -0
- package/src/components/Tab/Tab.tsx +32 -1
- package/src/components/Toggle/Toggle.stories.tsx +92 -0
- package/src/components/Toggle/Toggle.tsx +32 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +131 -0
- package/src/components/Tooltip/Tooltip.tsx +43 -7
- package/src/components/VideoPlayer/VideoPlayer.stories.tsx +1002 -196
- package/src/components/VideoPlayer/VideoPlayer.tsx +161 -4
- package/src/components/index.ts +14 -0
- package/src/layouts/Grid/Grid.stories.tsx +226 -159
- package/src/lib/composables/index.ts +4 -0
- package/src/lib/composables/useAtomixGlass.ts +71 -0
- package/src/lib/composables/useButton.ts +3 -1
- package/src/lib/composables/useCallout.ts +4 -1
- package/src/lib/composables/useFooter.ts +85 -0
- package/src/lib/composables/useGlassContainer.ts +168 -0
- package/src/lib/composables/useSlider.ts +191 -4
- package/src/lib/constants/components.ts +173 -0
- package/src/lib/types/components.ts +622 -0
- package/src/lib/utils/displacement-generator.ts +86 -0
- package/src/styles/01-settings/_index.scss +1 -0
- package/src/styles/01-settings/_settings.accordion.scss +20 -19
- package/src/styles/01-settings/_settings.animations.scss +5 -5
- package/src/styles/01-settings/_settings.avatar-group.scss +1 -1
- package/src/styles/01-settings/_settings.avatar.scss +17 -18
- package/src/styles/01-settings/_settings.background.scss +10 -0
- package/src/styles/01-settings/_settings.badge.scss +1 -1
- package/src/styles/01-settings/_settings.breadcrumb.scss +8 -2
- package/src/styles/01-settings/_settings.callout.scss +7 -7
- package/src/styles/01-settings/_settings.card.scss +2 -2
- package/src/styles/01-settings/_settings.chart.scss +7 -7
- package/src/styles/01-settings/_settings.checkbox-group.scss +5 -2
- package/src/styles/01-settings/_settings.checkbox.scss +10 -4
- package/src/styles/01-settings/_settings.countdown.scss +6 -4
- package/src/styles/01-settings/_settings.dropdown.scss +9 -7
- package/src/styles/01-settings/_settings.edge-panel.scss +3 -2
- package/src/styles/01-settings/_settings.footer.scss +125 -0
- package/src/styles/01-settings/_settings.form-group.scss +3 -1
- package/src/styles/01-settings/_settings.form.scss +4 -2
- package/src/styles/01-settings/_settings.hero.scss +9 -7
- package/src/styles/01-settings/_settings.input.scss +9 -7
- package/src/styles/01-settings/_settings.list-group.scss +4 -2
- package/src/styles/01-settings/_settings.list.scss +4 -2
- package/src/styles/01-settings/_settings.menu.scss +10 -8
- package/src/styles/01-settings/_settings.messages.scss +19 -17
- package/src/styles/01-settings/_settings.modal.scss +6 -4
- package/src/styles/01-settings/_settings.nav.scss +6 -4
- package/src/styles/01-settings/_settings.navbar.scss +8 -5
- package/src/styles/01-settings/_settings.pagination.scss +5 -3
- package/src/styles/01-settings/_settings.popover.scss +6 -4
- package/src/styles/01-settings/_settings.rating.scss +5 -3
- package/src/styles/01-settings/_settings.river.scss +8 -6
- package/src/styles/01-settings/_settings.sectionintro.scss +8 -6
- package/src/styles/01-settings/_settings.select.scss +7 -5
- package/src/styles/01-settings/_settings.side-menu.scss +15 -13
- package/src/styles/01-settings/_settings.spacing.scss +4 -0
- package/src/styles/01-settings/_settings.steps.scss +7 -5
- package/src/styles/01-settings/_settings.tabs.scss +7 -5
- package/src/styles/01-settings/_settings.testimonials.scss +6 -4
- package/src/styles/01-settings/_settings.toggle.scss +3 -1
- package/src/styles/01-settings/_settings.tooltip.scss +5 -3
- package/src/styles/01-settings/_settings.upload.scss +22 -20
- package/src/styles/02-tools/_tools.animations.scss +19 -0
- package/src/styles/02-tools/_tools.background.scss +87 -0
- package/src/styles/02-tools/_tools.glass.scss +1 -0
- package/src/styles/02-tools/_tools.rem.scss +18 -5
- package/src/styles/02-tools/_tools.utility-api.scss +32 -26
- package/src/styles/03-generic/_generic.root.scss +15 -2
- package/src/styles/04-elements/_elements.body.scss +6 -0
- package/src/styles/06-components/_components.accordion.scss +24 -4
- package/src/styles/06-components/_components.atomix-glass.scss +0 -0
- package/src/styles/06-components/_components.avatar-group.scss +2 -1
- package/src/styles/06-components/_components.avatar.scss +2 -1
- package/src/styles/06-components/_components.badge.scss +36 -1
- package/src/styles/06-components/_components.breadcrumb.scss +2 -1
- package/src/styles/06-components/_components.button.scss +14 -3
- package/src/styles/06-components/_components.callout.scss +44 -4
- package/src/styles/06-components/_components.card.scss +21 -2
- package/src/styles/06-components/_components.chart.scss +3 -2
- package/src/styles/06-components/_components.checkbox.scss +2 -1
- package/src/styles/06-components/_components.color-mode-toggle.scss +3 -2
- package/src/styles/06-components/_components.countdown.scss +2 -1
- package/src/styles/06-components/_components.data-table.scss +7 -6
- package/src/styles/06-components/_components.datepicker.scss +20 -1
- package/src/styles/06-components/_components.dropdown.scss +11 -4
- package/src/styles/06-components/_components.edge-panel.scss +4 -3
- package/src/styles/06-components/_components.footer.scss +825 -0
- package/src/styles/06-components/_components.form-group.scss +1 -0
- package/src/styles/06-components/_components.hero.scss +4 -4
- package/src/styles/06-components/_components.image-gallery.scss +1 -0
- package/src/styles/06-components/_components.input.scss +33 -2
- package/src/styles/06-components/_components.list-group.scss +3 -2
- package/src/styles/06-components/_components.list.scss +2 -1
- package/src/styles/06-components/_components.menu.scss +5 -4
- package/src/styles/06-components/_components.messages.scss +8 -7
- package/src/styles/06-components/_components.modal.scss +3 -2
- package/src/styles/06-components/_components.nav.scss +6 -5
- package/src/styles/06-components/_components.navbar.scss +4 -3
- package/src/styles/06-components/_components.pagination.scss +2 -1
- package/src/styles/06-components/_components.photoviewer.scss +4 -3
- package/src/styles/06-components/_components.popover.scss +3 -2
- package/src/styles/06-components/_components.product-review.scss +3 -2
- package/src/styles/06-components/_components.progress.scss +3 -2
- package/src/styles/06-components/_components.river.scss +3 -2
- package/src/styles/06-components/_components.sectionintro.scss +2 -1
- package/src/styles/06-components/_components.select.scss +5 -4
- package/src/styles/06-components/_components.side-menu.scss +8 -7
- package/src/styles/06-components/_components.skeleton.scss +3 -2
- package/src/styles/06-components/_components.slider.scss +7 -6
- package/src/styles/06-components/_components.spinner.scss +1 -0
- package/src/styles/06-components/_components.steps.scss +3 -2
- package/src/styles/06-components/_components.tabs.scss +4 -3
- package/src/styles/06-components/_components.testimonials.scss +2 -1
- package/src/styles/06-components/_components.todo.scss +3 -2
- package/src/styles/06-components/_components.toggle.scss +5 -4
- package/src/styles/06-components/_components.tooltip.scss +3 -2
- package/src/styles/06-components/_components.upload.scss +4 -3
- package/src/styles/06-components/_components.video-player.scss +50 -27
- package/src/styles/06-components/_index.scss +2 -0
- package/src/styles/99-utilities/_utilities.glass-fixes.scss +48 -0
- package/dist/themes/yabai.css +0 -13711
- package/dist/themes/yabai.min.css +0 -189
|
@@ -480,6 +480,23 @@
|
|
|
480
480
|
background-position: 0 50%;
|
|
481
481
|
}
|
|
482
482
|
}
|
|
483
|
+
@keyframes backgroundMoving {
|
|
484
|
+
0% {
|
|
485
|
+
background-position: 0 0%;
|
|
486
|
+
}
|
|
487
|
+
250% {
|
|
488
|
+
background-position: 100% 100%;
|
|
489
|
+
}
|
|
490
|
+
50% {
|
|
491
|
+
background-position: 100% 0%;
|
|
492
|
+
}
|
|
493
|
+
75% {
|
|
494
|
+
background-position: 0% 100%;
|
|
495
|
+
}
|
|
496
|
+
100% {
|
|
497
|
+
background-position: 100% 100%;
|
|
498
|
+
}
|
|
499
|
+
}
|
|
483
500
|
@keyframes component-spin {
|
|
484
501
|
0% {
|
|
485
502
|
transform: rotate(0deg);
|
|
@@ -890,9 +907,17 @@ summary {
|
|
|
890
907
|
--atomix-success-hover: #15803d;
|
|
891
908
|
--atomix-warning-hover: #a16207;
|
|
892
909
|
--atomix-info-hover: #1d4ed8;
|
|
910
|
+
--atomix-primary-gradient: linear-gradient(135deg, #e0f2fe, #bae6fd, #7dd3fc);
|
|
911
|
+
--atomix-secondary-gradient: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);
|
|
912
|
+
--atomix-light-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
|
|
913
|
+
--atomix-dark-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
|
|
914
|
+
--atomix-success-gradient: linear-gradient(135deg, #dcfce7, #86efac, #4ade80);
|
|
915
|
+
--atomix-info-gradient: linear-gradient(135deg, #dbeafe, #bfdbfe, #60a5fa);
|
|
916
|
+
--atomix-warning-gradient: linear-gradient(135deg, #fef9c3, #fef08a, #facc15);
|
|
917
|
+
--atomix-error-gradient: linear-gradient(135deg, #fef2f2, #fee2e2, #fecaca);
|
|
918
|
+
--atomix-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
|
|
893
919
|
--atomix-font-sans-serif: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
894
920
|
--atomix-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
895
|
-
--atomix-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
|
896
921
|
--atomix-body-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
897
922
|
--atomix-body-font-size: 1rem;
|
|
898
923
|
--atomix-body-font-weight: 400;
|
|
@@ -986,6 +1011,15 @@ summary {
|
|
|
986
1011
|
--atomix-success-hover: #86efac;
|
|
987
1012
|
--atomix-warning-hover: #facc15;
|
|
988
1013
|
--atomix-info-hover: #93c5fd;
|
|
1014
|
+
--atomix-primary-gradient: linear-gradient(135deg, #0c4a6e, #075985, #0369a1);
|
|
1015
|
+
--atomix-secondary-gradient: linear-gradient(135deg, #374151, #6b7280, #d1d5db);
|
|
1016
|
+
--atomix-light-gradient: linear-gradient(135deg, #9ca3af, #6b7280, #9ca3af);
|
|
1017
|
+
--atomix-dark-gradient: linear-gradient(135deg, #000000, #4b5563, #1f2937);
|
|
1018
|
+
--atomix-success-gradient: linear-gradient(135deg, #14532d, #16a34a, #166534);
|
|
1019
|
+
--atomix-info-gradient: linear-gradient(135deg, #1e3a8a, #1d4ed8, #1e40af);
|
|
1020
|
+
--atomix-warning-gradient: linear-gradient(135deg, #713f12, #a16207, #854d0e);
|
|
1021
|
+
--atomix-error-gradient: linear-gradient(135deg, #7f1d1d, #dc2626, #7f1d1d);
|
|
1022
|
+
--atomix-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
|
|
989
1023
|
--atomix-box-shadow: 0px 8px 40px -8px rgba(30, 30, 30, 0.7), 0px 4px 20px 0px rgba(30, 30, 30, 0.8);
|
|
990
1024
|
--atomix-box-shadow-xs: 0px 1px 2px 0px rgba(30, 30, 30, 0.5), 0px 2px 4px 0px rgba(30, 30, 30, 0.5);
|
|
991
1025
|
--atomix-box-shadow-sm: 0px 2px 4px -2px rgba(30, 30, 30, 0.5), 0px 4px 8px -2px rgba(30, 30, 30, 0.5);
|
|
@@ -2115,12 +2149,17 @@ a, a:hover {
|
|
|
2115
2149
|
display: flex;
|
|
2116
2150
|
align-items: center;
|
|
2117
2151
|
justify-content: space-between;
|
|
2152
|
+
width: 100%;
|
|
2118
2153
|
color: var(--atomix-accordion-header-color);
|
|
2119
2154
|
padding: var(--atomix-accordion-header-padding-y) var(--atomix-accordion-header-padding-x);
|
|
2120
|
-
background-color: var(--atomix-accordion-header-bg);
|
|
2121
2155
|
border: none;
|
|
2156
|
+
outline: none;
|
|
2122
2157
|
cursor: pointer;
|
|
2123
|
-
|
|
2158
|
+
transition-property: background;
|
|
2159
|
+
transition-duration: 0.2s;
|
|
2160
|
+
transition-timing-function: ease-in-out;
|
|
2161
|
+
transition-delay: 0s;
|
|
2162
|
+
background-color: var(--atomix-accordion-header-bg);
|
|
2124
2163
|
}
|
|
2125
2164
|
.c-accordion__header--icon-left {
|
|
2126
2165
|
flex-direction: row-reverse;
|
|
@@ -2154,8 +2193,8 @@ a, a:hover {
|
|
|
2154
2193
|
.c-accordion__body {
|
|
2155
2194
|
color: var(--atomix-accordion-body-color);
|
|
2156
2195
|
padding: var(--atomix-accordion-body-padding-y) var(--atomix-accordion-body-padding-x);
|
|
2157
|
-
background-color: var(--atomix-accordion-body-bg);
|
|
2158
2196
|
border-radius: 0 0 var(--atomix-accordion-border-radius) var(--atomix-accordion-border-radius);
|
|
2197
|
+
background-color: var(--atomix-accordion-body-bg);
|
|
2159
2198
|
}
|
|
2160
2199
|
.c-accordion:focus, .c-accordion.is-focused {
|
|
2161
2200
|
--atomix-accordion-border-color: var(--atomix-focus-border-color);
|
|
@@ -2172,6 +2211,15 @@ a, a:hover {
|
|
|
2172
2211
|
--atomix-accordion-body-color: var(--atomix-accordion-disable-color);
|
|
2173
2212
|
--atomix-accordion-icon-color: var(--atomix-accordion-disable-color);
|
|
2174
2213
|
}
|
|
2214
|
+
.c-accordion--glass {
|
|
2215
|
+
border-color: transparent;
|
|
2216
|
+
}
|
|
2217
|
+
.c-accordion--glass .c-accordion__header {
|
|
2218
|
+
background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
|
|
2219
|
+
}
|
|
2220
|
+
.c-accordion--glass .c-accordion__body {
|
|
2221
|
+
background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
|
|
2222
|
+
}
|
|
2175
2223
|
.c-avatar {
|
|
2176
2224
|
--atomix-avatar-fit: cover;
|
|
2177
2225
|
--atomix-avatar-size: 2.75rem;
|
|
@@ -2384,6 +2432,10 @@ a, a:hover {
|
|
|
2384
2432
|
.c-badge--lg {
|
|
2385
2433
|
--atomix-tag-padding-y: 8px;
|
|
2386
2434
|
}
|
|
2435
|
+
.c-badge--glass {
|
|
2436
|
+
background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 80%, transparent);
|
|
2437
|
+
border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 20%, transparent);
|
|
2438
|
+
}
|
|
2387
2439
|
.c-badge--primary {
|
|
2388
2440
|
--atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
|
|
2389
2441
|
--atomix-tag-color: var(--atomix-brand-text-emphasis);
|
|
@@ -2411,10 +2463,16 @@ a, a:hover {
|
|
|
2411
2463
|
.c-badge--light {
|
|
2412
2464
|
--atomix-tag-bg-color: var(--atomix-light);
|
|
2413
2465
|
--atomix-tag-color: var(--atomix-dark);
|
|
2466
|
+
border: 1px solid var(--atomix-light);
|
|
2414
2467
|
}
|
|
2415
2468
|
.c-badge--dark {
|
|
2416
2469
|
--atomix-tag-bg-color: var(--atomix-dark);
|
|
2417
2470
|
--atomix-tag-color: var(--atomix-light);
|
|
2471
|
+
border: 1px solid var(--atomix-dark);
|
|
2472
|
+
}
|
|
2473
|
+
.c-badge-glass {
|
|
2474
|
+
box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
|
|
2475
|
+
border-radius: 999px;
|
|
2418
2476
|
}
|
|
2419
2477
|
.c-breadcrumb {
|
|
2420
2478
|
--atomix-breadcrumb-font-size: 0.875rem;
|
|
@@ -2813,6 +2871,12 @@ a, a:hover {
|
|
|
2813
2871
|
border-color: var(--atomix-btn-disabled-border-color);
|
|
2814
2872
|
opacity: var(--atomix-btn-disabled-opacity);
|
|
2815
2873
|
}
|
|
2874
|
+
.c-btn--glass {
|
|
2875
|
+
background-color: color-mix(in srgb, var(--atomix-btn-bg) 50%, transparent);
|
|
2876
|
+
}
|
|
2877
|
+
.c-btn--glass:hover {
|
|
2878
|
+
background-color: color-mix(in srgb, var(--atomix-btn-hover-bg) 50%, transparent);
|
|
2879
|
+
}
|
|
2816
2880
|
.c-datepicker {
|
|
2817
2881
|
--atomix-datepicker-width: 22rem;
|
|
2818
2882
|
--atomix-datepicker-padding-x: 0.75rem;
|
|
@@ -2935,6 +2999,24 @@ a, a:hover {
|
|
|
2935
2999
|
.c-datepicker__calendar--right-end {
|
|
2936
3000
|
bottom: 0;
|
|
2937
3001
|
}
|
|
3002
|
+
.c-datepicker__calendar--glass {
|
|
3003
|
+
z-index: auto;
|
|
3004
|
+
z-index: initial;
|
|
3005
|
+
box-shadow: none;
|
|
3006
|
+
border: none;
|
|
3007
|
+
border-radius: 0;
|
|
3008
|
+
padding: 0;
|
|
3009
|
+
background: transparent;
|
|
3010
|
+
}
|
|
3011
|
+
.c-datepicker__glass-content {
|
|
3012
|
+
z-index: auto;
|
|
3013
|
+
z-index: initial;
|
|
3014
|
+
box-shadow: none;
|
|
3015
|
+
border: none;
|
|
3016
|
+
border-radius: var(--atomix-datepicker-border-radius);
|
|
3017
|
+
padding: var(--atomix-datepicker-padding-y) var(--atomix-datepicker-padding-x);
|
|
3018
|
+
background: color-mix(in srgb, var(--atomix-datepicker-bg) 50%, transparent 0%);
|
|
3019
|
+
}
|
|
2938
3020
|
.c-datepicker--inline {
|
|
2939
3021
|
--atomix-datepicker-width: calc(
|
|
2940
3022
|
var(--atomix-datepicker-width) + var(--atomix-datepicker-week-width)
|
|
@@ -3252,11 +3334,11 @@ a, a:hover {
|
|
|
3252
3334
|
padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
|
|
3253
3335
|
border: var(--atomix-card-border-width) solid var(--atomix-card-border-color);
|
|
3254
3336
|
border-radius: var(--atomix-card-border-radius);
|
|
3255
|
-
background-color: var(--atomix-card-bg);
|
|
3256
3337
|
transition-property: all;
|
|
3257
3338
|
transition-duration: 0.2s;
|
|
3258
3339
|
transition-timing-function: ease-in-out;
|
|
3259
3340
|
transition-delay: 0s;
|
|
3341
|
+
background-color: var(--atomix-card-bg);
|
|
3260
3342
|
}
|
|
3261
3343
|
.c-card__header {
|
|
3262
3344
|
margin-bottom: var(--atomix-card-header-spacer-y);
|
|
@@ -3337,6 +3419,21 @@ a, a:hover {
|
|
|
3337
3419
|
padding: var(--atomix-card-row-spacer-y) var(--atomix-card-row-spacer-x);
|
|
3338
3420
|
padding-top: 0;
|
|
3339
3421
|
}
|
|
3422
|
+
.c-card--glass {
|
|
3423
|
+
background-color: transparent;
|
|
3424
|
+
padding: 0;
|
|
3425
|
+
border: none;
|
|
3426
|
+
display: block;
|
|
3427
|
+
border-radius: 0;
|
|
3428
|
+
}
|
|
3429
|
+
.c-card--glass .c-card__glass-content {
|
|
3430
|
+
padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
|
|
3431
|
+
max-width: var(--atomix-card-width);
|
|
3432
|
+
border-radius: var(--atomix-card-border-radius);
|
|
3433
|
+
width: 100%;
|
|
3434
|
+
background-color: color-mix(in srgb, var(--atomix-card-bg) 50%, transparent);
|
|
3435
|
+
background-blend-mode: overlay;
|
|
3436
|
+
}
|
|
3340
3437
|
.is-elevated .c-card {
|
|
3341
3438
|
box-shadow: var(--atomix-box-shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.175));
|
|
3342
3439
|
z-index: 1;
|
|
@@ -3348,7 +3445,7 @@ a, a:hover {
|
|
|
3348
3445
|
--atomix-chart-border-radius: 0.625rem;
|
|
3349
3446
|
--atomix-chart-padding: 1rem;
|
|
3350
3447
|
--atomix-chart-gap: 0.5rem;
|
|
3351
|
-
--atomix-chart-border-width:
|
|
3448
|
+
--atomix-chart-border-width: var(--atomix-border-width);
|
|
3352
3449
|
--atomix-chart-border-color: var(--atomix-border-color);
|
|
3353
3450
|
--atomix-chart-bg: var(--atomix-body-bg);
|
|
3354
3451
|
--atomix-chart-min-height: 13rem;
|
|
@@ -3381,7 +3478,7 @@ a, a:hover {
|
|
|
3381
3478
|
border-color: var(--atomix-primary-border-subtle);
|
|
3382
3479
|
}
|
|
3383
3480
|
.c-chart:focus-visible {
|
|
3384
|
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0
|
|
3481
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 calc(var(--atomix-border-width) * 3) var(--atomix-primary-border-subtle);
|
|
3385
3482
|
}
|
|
3386
3483
|
.c-chart--xs {
|
|
3387
3484
|
--atomix-chart-min-height: 7rem;
|
|
@@ -3564,8 +3661,8 @@ a, a:hover {
|
|
|
3564
3661
|
.c-chart__header {
|
|
3565
3662
|
padding: var(--atomix-chart-padding);
|
|
3566
3663
|
border-bottom: var(--atomix-chart-border-width) solid var(--atomix-brand-bg-subtle);
|
|
3567
|
-
-webkit-backdrop-filter: blur(
|
|
3568
|
-
backdrop-filter: blur(
|
|
3664
|
+
-webkit-backdrop-filter: blur(0.75rem);
|
|
3665
|
+
backdrop-filter: blur(0.75rem);
|
|
3569
3666
|
position: relative;
|
|
3570
3667
|
display: flex;
|
|
3571
3668
|
align-items: flex-start;
|
|
@@ -3814,7 +3911,7 @@ a, a:hover {
|
|
|
3814
3911
|
right: 0;
|
|
3815
3912
|
bottom: 0;
|
|
3816
3913
|
background-image: radial-gradient(circle at 1px 1px, var(--atomix-primary-border-subtle) 1px, transparent 0);
|
|
3817
|
-
background-size:
|
|
3914
|
+
background-size: 1.25rem 1.25rem;
|
|
3818
3915
|
opacity: 0.03;
|
|
3819
3916
|
pointer-events: none;
|
|
3820
3917
|
z-index: 0;
|
|
@@ -3992,8 +4089,8 @@ a, a:hover {
|
|
|
3992
4089
|
position: fixed;
|
|
3993
4090
|
top: 0;
|
|
3994
4091
|
left: 0;
|
|
3995
|
-
-webkit-backdrop-filter: blur(
|
|
3996
|
-
backdrop-filter: blur(
|
|
4092
|
+
-webkit-backdrop-filter: blur(1rem);
|
|
4093
|
+
backdrop-filter: blur(1rem);
|
|
3997
4094
|
border-radius: 0.625rem;
|
|
3998
4095
|
padding: 0.75rem 1rem;
|
|
3999
4096
|
box-shadow: var(--atomix-box-shadow);
|
|
@@ -5071,7 +5168,7 @@ a, a:hover {
|
|
|
5071
5168
|
animation: none;
|
|
5072
5169
|
}
|
|
5073
5170
|
}
|
|
5074
|
-
.c-chart:focus-
|
|
5171
|
+
.c-chart:focus-within .c-chart__data-point:focus {
|
|
5075
5172
|
outline: 2px solid var(--atomix-primary-6);
|
|
5076
5173
|
outline-offset: 2px;
|
|
5077
5174
|
z-index: 10;
|
|
@@ -5511,7 +5608,6 @@ a, a:hover {
|
|
|
5511
5608
|
.c-dropdown__menu-wrapper {
|
|
5512
5609
|
position: absolute;
|
|
5513
5610
|
left: 0;
|
|
5514
|
-
z-index: 99;
|
|
5515
5611
|
display: flex;
|
|
5516
5612
|
opacity: 0;
|
|
5517
5613
|
visibility: hidden;
|
|
@@ -5593,11 +5689,16 @@ a, a:hover {
|
|
|
5593
5689
|
padding: var(--atomix-dropdown-padding-y) var(--atomix-dropdown-padding-x);
|
|
5594
5690
|
list-style: none;
|
|
5595
5691
|
margin-bottom: 0rem;
|
|
5692
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
5596
5693
|
background-color: var(--atomix-dropdown-bg);
|
|
5597
5694
|
border-radius: var(--atomix-dropdown-border-radius);
|
|
5598
5695
|
box-shadow: var(--atomix-dropdown-box-shadow);
|
|
5599
5696
|
overflow: hidden;
|
|
5600
5697
|
}
|
|
5698
|
+
.c-dropdown__menu--glass {
|
|
5699
|
+
background-color: color-mix(in srgb, var(--atomix-dropdown-bg) 50%, transparent);
|
|
5700
|
+
box-shadow: var(--atomix-dropdown-box-shadow);
|
|
5701
|
+
}
|
|
5601
5702
|
.c-dropdown__menu-item {
|
|
5602
5703
|
display: block;
|
|
5603
5704
|
width: 100%;
|
|
@@ -5717,7 +5818,7 @@ a, a:hover {
|
|
|
5717
5818
|
.c-edge-panel__backdrop {
|
|
5718
5819
|
position: absolute;
|
|
5719
5820
|
inset: 0;
|
|
5720
|
-
background: var(--atomix-edge-panel-backdrop-bg);
|
|
5821
|
+
background-color: var(--atomix-edge-panel-backdrop-bg);
|
|
5721
5822
|
-webkit-backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
|
|
5722
5823
|
backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
|
|
5723
5824
|
opacity: 0;
|
|
@@ -5877,84 +5978,1072 @@ a, a:hover {
|
|
|
5877
5978
|
width: 100%;
|
|
5878
5979
|
height: 100%;
|
|
5879
5980
|
}
|
|
5880
|
-
@keyframes fadeIn {
|
|
5881
|
-
from {
|
|
5882
|
-
opacity: 0;
|
|
5883
|
-
}
|
|
5884
|
-
to {
|
|
5885
|
-
opacity: var(--atomix-edge-panel-backdrop-opacity);
|
|
5886
|
-
}
|
|
5981
|
+
@keyframes fadeIn {
|
|
5982
|
+
from {
|
|
5983
|
+
opacity: 0;
|
|
5984
|
+
}
|
|
5985
|
+
to {
|
|
5986
|
+
opacity: var(--atomix-edge-panel-backdrop-opacity);
|
|
5987
|
+
}
|
|
5988
|
+
}
|
|
5989
|
+
@keyframes fadeOut {
|
|
5990
|
+
from {
|
|
5991
|
+
opacity: var(--atomix-edge-panel-backdrop-opacity);
|
|
5992
|
+
}
|
|
5993
|
+
to {
|
|
5994
|
+
opacity: 0;
|
|
5995
|
+
}
|
|
5996
|
+
}
|
|
5997
|
+
@keyframes slideInStart {
|
|
5998
|
+
from {
|
|
5999
|
+
transform: translateX(-100%);
|
|
6000
|
+
}
|
|
6001
|
+
to {
|
|
6002
|
+
transform: translateX(0);
|
|
6003
|
+
}
|
|
6004
|
+
}
|
|
6005
|
+
@keyframes slideOutStart {
|
|
6006
|
+
from {
|
|
6007
|
+
transform: translateX(0);
|
|
6008
|
+
}
|
|
6009
|
+
to {
|
|
6010
|
+
transform: translateX(-100%);
|
|
6011
|
+
}
|
|
6012
|
+
}
|
|
6013
|
+
@keyframes slideInEnd {
|
|
6014
|
+
from {
|
|
6015
|
+
transform: translateX(100%);
|
|
6016
|
+
}
|
|
6017
|
+
to {
|
|
6018
|
+
transform: translateX(0);
|
|
6019
|
+
}
|
|
6020
|
+
}
|
|
6021
|
+
@keyframes slideOutEnd {
|
|
6022
|
+
from {
|
|
6023
|
+
transform: translateX(0);
|
|
6024
|
+
}
|
|
6025
|
+
to {
|
|
6026
|
+
transform: translateX(100%);
|
|
6027
|
+
}
|
|
6028
|
+
}
|
|
6029
|
+
@keyframes slideInTop {
|
|
6030
|
+
from {
|
|
6031
|
+
transform: translateY(-100%);
|
|
6032
|
+
}
|
|
6033
|
+
to {
|
|
6034
|
+
transform: translateY(0);
|
|
6035
|
+
}
|
|
6036
|
+
}
|
|
6037
|
+
@keyframes slideOutTop {
|
|
6038
|
+
from {
|
|
6039
|
+
transform: translateY(0);
|
|
6040
|
+
}
|
|
6041
|
+
to {
|
|
6042
|
+
transform: translateY(-100%);
|
|
6043
|
+
}
|
|
6044
|
+
}
|
|
6045
|
+
@keyframes slideInBottom {
|
|
6046
|
+
from {
|
|
6047
|
+
transform: translateY(100%);
|
|
6048
|
+
}
|
|
6049
|
+
to {
|
|
6050
|
+
transform: translateY(0);
|
|
6051
|
+
}
|
|
6052
|
+
}
|
|
6053
|
+
@keyframes slideOutBottom {
|
|
6054
|
+
from {
|
|
6055
|
+
transform: translateY(0);
|
|
6056
|
+
}
|
|
6057
|
+
to {
|
|
6058
|
+
transform: translateY(100%);
|
|
6059
|
+
}
|
|
6060
|
+
}
|
|
6061
|
+
.c-footer {
|
|
6062
|
+
--atomix-footer-padding-x: 1rem;
|
|
6063
|
+
--atomix-footer-padding-y: 3rem;
|
|
6064
|
+
--atomix-footer-container-max-width: 1200px;
|
|
6065
|
+
--atomix-footer-bg: var(--atomix-surface);
|
|
6066
|
+
--atomix-footer-color: var(--atomix-text);
|
|
6067
|
+
--atomix-footer-border-width: 1px;
|
|
6068
|
+
--atomix-footer-border-color: var(--atomix-border);
|
|
6069
|
+
--atomix-footer-brand-margin-bottom: 1.5rem;
|
|
6070
|
+
--atomix-footer-section-margin-bottom: 2rem;
|
|
6071
|
+
--atomix-footer-social-gap: 0.75rem;
|
|
6072
|
+
--atomix-footer-newsletter-padding: 1.5rem;
|
|
6073
|
+
--atomix-footer-bottom-padding-top: 1.5rem;
|
|
6074
|
+
--atomix-footer-bottom-margin-top: 2rem;
|
|
6075
|
+
background-color: var(--atomix-footer-bg);
|
|
6076
|
+
color: var(--atomix-footer-color);
|
|
6077
|
+
border-top: var(--atomix-footer-border-width) solid var(--atomix-footer-border-color);
|
|
6078
|
+
padding: var(--atomix-footer-padding-y) 0;
|
|
6079
|
+
position: relative;
|
|
6080
|
+
}
|
|
6081
|
+
.c-footer__container {
|
|
6082
|
+
display: flex;
|
|
6083
|
+
flex-direction: column;
|
|
6084
|
+
width: 100%;
|
|
6085
|
+
max-width: var(--atomix-footer-container-max-width);
|
|
6086
|
+
margin: 0 auto;
|
|
6087
|
+
padding: 0 var(--atomix-footer-padding-x);
|
|
6088
|
+
}
|
|
6089
|
+
.c-footer__sections {
|
|
6090
|
+
display: grid;
|
|
6091
|
+
grid-gap: var(--atomix-footer-section-margin-bottom);
|
|
6092
|
+
gap: var(--atomix-footer-section-margin-bottom);
|
|
6093
|
+
margin-bottom: var(--atomix-footer-bottom-margin-top);
|
|
6094
|
+
grid-template-columns: 1fr;
|
|
6095
|
+
}
|
|
6096
|
+
@media (min-width: 768px) {
|
|
6097
|
+
.c-footer__sections {
|
|
6098
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
6099
|
+
gap: clamp(2rem, 4vw, 3rem);
|
|
6100
|
+
}
|
|
6101
|
+
}
|
|
6102
|
+
.c-footer__brand {
|
|
6103
|
+
margin-bottom: var(--atomix-footer-brand-margin-bottom);
|
|
6104
|
+
}
|
|
6105
|
+
.c-footer__brand-logo {
|
|
6106
|
+
display: inline-block;
|
|
6107
|
+
margin-bottom: 1rem;
|
|
6108
|
+
transition: opacity 0.2s ease;
|
|
6109
|
+
}
|
|
6110
|
+
.c-footer__brand-logo:hover {
|
|
6111
|
+
opacity: 0.8;
|
|
6112
|
+
}
|
|
6113
|
+
.c-footer__brand-logo img {
|
|
6114
|
+
max-width: 200px;
|
|
6115
|
+
max-height: 60px;
|
|
6116
|
+
height: auto;
|
|
6117
|
+
-o-object-fit: contain;
|
|
6118
|
+
object-fit: contain;
|
|
6119
|
+
}
|
|
6120
|
+
.c-footer__brand-name h3 {
|
|
6121
|
+
margin: 0;
|
|
6122
|
+
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
|
|
6123
|
+
font-weight: 600;
|
|
6124
|
+
color: var(--atomix-text-emphasis);
|
|
6125
|
+
line-height: 1.2;
|
|
6126
|
+
}
|
|
6127
|
+
.c-footer__brand-description {
|
|
6128
|
+
margin-top: 0.5rem;
|
|
6129
|
+
font-size: 0.875rem;
|
|
6130
|
+
color: var(--atomix-text-muted);
|
|
6131
|
+
line-height: 1.6;
|
|
6132
|
+
max-width: 35ch;
|
|
6133
|
+
}
|
|
6134
|
+
.c-footer__section {
|
|
6135
|
+
margin-bottom: var(--atomix-footer-section-margin-bottom);
|
|
6136
|
+
}
|
|
6137
|
+
.c-footer__section-header {
|
|
6138
|
+
margin-bottom: 1rem;
|
|
6139
|
+
}
|
|
6140
|
+
.c-footer__section-header-content {
|
|
6141
|
+
display: flex;
|
|
6142
|
+
align-items: center;
|
|
6143
|
+
gap: 0.5rem;
|
|
6144
|
+
}
|
|
6145
|
+
.c-footer__section-toggle {
|
|
6146
|
+
display: flex;
|
|
6147
|
+
align-items: center;
|
|
6148
|
+
justify-content: space-between;
|
|
6149
|
+
width: 100%;
|
|
6150
|
+
padding: 0.75rem 0;
|
|
6151
|
+
background: none;
|
|
6152
|
+
border: none;
|
|
6153
|
+
cursor: pointer;
|
|
6154
|
+
color: inherit;
|
|
6155
|
+
font: inherit;
|
|
6156
|
+
text-align: left;
|
|
6157
|
+
border-radius: 0.25rem;
|
|
6158
|
+
transition: color 0.2s ease;
|
|
6159
|
+
}
|
|
6160
|
+
.c-footer__section-toggle:hover {
|
|
6161
|
+
color: var(--atomix-primary);
|
|
6162
|
+
}
|
|
6163
|
+
.c-footer__section-toggle:focus-visible {
|
|
6164
|
+
outline: 2px solid var(--atomix-primary);
|
|
6165
|
+
outline-offset: 2px;
|
|
6166
|
+
}
|
|
6167
|
+
.c-footer__section-title {
|
|
6168
|
+
margin: 0;
|
|
6169
|
+
font-size: 1.125rem;
|
|
6170
|
+
font-weight: 600;
|
|
6171
|
+
color: var(--atomix-text-emphasis);
|
|
6172
|
+
line-height: 1.3;
|
|
6173
|
+
}
|
|
6174
|
+
.c-footer__section-icon {
|
|
6175
|
+
display: flex;
|
|
6176
|
+
align-items: center;
|
|
6177
|
+
margin-right: 0.5rem;
|
|
6178
|
+
font-size: 1.1em;
|
|
6179
|
+
}
|
|
6180
|
+
.c-footer__section-chevron {
|
|
6181
|
+
font-size: 0.875rem;
|
|
6182
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
6183
|
+
color: var(--atomix-text-muted);
|
|
6184
|
+
}
|
|
6185
|
+
.c-footer__section-content {
|
|
6186
|
+
display: flex;
|
|
6187
|
+
flex-direction: column;
|
|
6188
|
+
gap: 0.5rem;
|
|
6189
|
+
}
|
|
6190
|
+
@media (max-width: 767.98px) {
|
|
6191
|
+
.c-footer__section--collapsible .c-footer__section-content {
|
|
6192
|
+
overflow: hidden;
|
|
6193
|
+
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
6194
|
+
}
|
|
6195
|
+
.c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-content {
|
|
6196
|
+
max-height: 0;
|
|
6197
|
+
}
|
|
6198
|
+
.c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-chevron {
|
|
6199
|
+
transform: rotate(-90deg);
|
|
6200
|
+
}
|
|
6201
|
+
.c-footer__section--collapsible:not(.c-footer__section--collapsed) .c-footer__section-content {
|
|
6202
|
+
max-height: 500px;
|
|
6203
|
+
}
|
|
6204
|
+
}
|
|
6205
|
+
@media (min-width: 768px) {
|
|
6206
|
+
.c-footer__section--collapsible .c-footer__section-toggle {
|
|
6207
|
+
pointer-events: none;
|
|
6208
|
+
}
|
|
6209
|
+
.c-footer__section--collapsible .c-footer__section-chevron {
|
|
6210
|
+
display: none;
|
|
6211
|
+
}
|
|
6212
|
+
}
|
|
6213
|
+
.c-footer__link {
|
|
6214
|
+
display: inline-flex;
|
|
6215
|
+
align-items: center;
|
|
6216
|
+
gap: 0.5rem;
|
|
6217
|
+
padding: 0.25rem 0;
|
|
6218
|
+
color: var(--atomix-text);
|
|
6219
|
+
text-decoration: none;
|
|
6220
|
+
transition: color 0.15s ease-in-out;
|
|
6221
|
+
border-radius: 0.25rem;
|
|
6222
|
+
position: relative;
|
|
6223
|
+
}
|
|
6224
|
+
.c-footer__link::before {
|
|
6225
|
+
content: "";
|
|
6226
|
+
position: absolute;
|
|
6227
|
+
left: 0;
|
|
6228
|
+
bottom: 0;
|
|
6229
|
+
width: 0;
|
|
6230
|
+
height: 2px;
|
|
6231
|
+
background-color: var(--atomix-primary);
|
|
6232
|
+
transition: width 0.3s ease;
|
|
6233
|
+
}
|
|
6234
|
+
.c-footer__link:hover, .c-footer__link:focus {
|
|
6235
|
+
color: var(--atomix-primary);
|
|
6236
|
+
text-decoration: underline;
|
|
6237
|
+
}
|
|
6238
|
+
.c-footer__link:hover::before, .c-footer__link:focus::before {
|
|
6239
|
+
width: 100%;
|
|
6240
|
+
}
|
|
6241
|
+
.c-footer__link:focus-visible {
|
|
6242
|
+
outline: 2px solid var(--atomix-primary);
|
|
6243
|
+
outline-offset: 2px;
|
|
6244
|
+
}
|
|
6245
|
+
.c-footer__link--active {
|
|
6246
|
+
color: var(--atomix-primary);
|
|
6247
|
+
font-weight: 500;
|
|
6248
|
+
}
|
|
6249
|
+
.c-footer__link--active::before {
|
|
6250
|
+
width: 100%;
|
|
6251
|
+
}
|
|
6252
|
+
.c-footer__link--disabled {
|
|
6253
|
+
color: var(--atomix-text-disabled);
|
|
6254
|
+
cursor: not-allowed;
|
|
6255
|
+
pointer-events: none;
|
|
6256
|
+
opacity: 0.6;
|
|
6257
|
+
}
|
|
6258
|
+
.c-footer__link-icon {
|
|
6259
|
+
display: flex;
|
|
6260
|
+
align-items: center;
|
|
6261
|
+
font-size: 0.875em;
|
|
6262
|
+
transition: transform 0.2s ease;
|
|
6263
|
+
}
|
|
6264
|
+
.c-footer__link:hover .c-footer__link-icon {
|
|
6265
|
+
transform: translateX(2px);
|
|
6266
|
+
}
|
|
6267
|
+
.c-footer__link-text {
|
|
6268
|
+
flex: 1 1;
|
|
6269
|
+
}
|
|
6270
|
+
.c-footer__link-external {
|
|
6271
|
+
font-size: 0.75em;
|
|
6272
|
+
opacity: 0.7;
|
|
6273
|
+
margin-left: auto;
|
|
6274
|
+
}
|
|
6275
|
+
.c-footer__social {
|
|
6276
|
+
display: flex;
|
|
6277
|
+
flex-wrap: wrap;
|
|
6278
|
+
gap: var(--atomix-footer-social-gap);
|
|
6279
|
+
margin-top: 1rem;
|
|
6280
|
+
}
|
|
6281
|
+
.c-footer__social-link {
|
|
6282
|
+
display: flex;
|
|
6283
|
+
align-items: center;
|
|
6284
|
+
justify-content: center;
|
|
6285
|
+
width: 2.5rem;
|
|
6286
|
+
height: 2.5rem;
|
|
6287
|
+
background-color: var(--atomix-surface-variant);
|
|
6288
|
+
color: var(--atomix-text);
|
|
6289
|
+
border-radius: 50%;
|
|
6290
|
+
text-decoration: none;
|
|
6291
|
+
transition: all 0.15s ease-in-out;
|
|
6292
|
+
position: relative;
|
|
6293
|
+
overflow: hidden;
|
|
6294
|
+
}
|
|
6295
|
+
.c-footer__social-link::before {
|
|
6296
|
+
content: "";
|
|
6297
|
+
position: absolute;
|
|
6298
|
+
inset: 0;
|
|
6299
|
+
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
|
|
6300
|
+
transform: translateX(-100%);
|
|
6301
|
+
transition: transform 0.6s ease;
|
|
6302
|
+
}
|
|
6303
|
+
.c-footer__social-link:hover, .c-footer__social-link:focus {
|
|
6304
|
+
background-color: var(--atomix-primary);
|
|
6305
|
+
color: var(--atomix-primary-contrast);
|
|
6306
|
+
transform: translateY(-3px) scale(1.05);
|
|
6307
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
|
6308
|
+
}
|
|
6309
|
+
.c-footer__social-link:hover::before, .c-footer__social-link:focus::before {
|
|
6310
|
+
transform: translateX(100%);
|
|
6311
|
+
}
|
|
6312
|
+
.c-footer__social-link:focus-visible {
|
|
6313
|
+
outline: 2px solid var(--atomix-primary);
|
|
6314
|
+
outline-offset: 2px;
|
|
6315
|
+
}
|
|
6316
|
+
.c-footer__social-link--sm {
|
|
6317
|
+
width: 2rem;
|
|
6318
|
+
height: 2rem;
|
|
6319
|
+
}
|
|
6320
|
+
.c-footer__social-link--lg {
|
|
6321
|
+
width: 3rem;
|
|
6322
|
+
height: 3rem;
|
|
6323
|
+
}
|
|
6324
|
+
.c-footer__social-link--disabled {
|
|
6325
|
+
opacity: 0.5;
|
|
6326
|
+
cursor: not-allowed;
|
|
6327
|
+
pointer-events: none;
|
|
6328
|
+
}
|
|
6329
|
+
.c-footer__social-link-icon {
|
|
6330
|
+
font-size: 1.25em;
|
|
6331
|
+
z-index: 1;
|
|
6332
|
+
}
|
|
6333
|
+
.c-footer__social-link-label {
|
|
6334
|
+
position: absolute;
|
|
6335
|
+
width: 1px;
|
|
6336
|
+
height: 1px;
|
|
6337
|
+
padding: 0;
|
|
6338
|
+
margin: -1px;
|
|
6339
|
+
overflow: hidden;
|
|
6340
|
+
clip: rect(0, 0, 0, 0);
|
|
6341
|
+
white-space: nowrap;
|
|
6342
|
+
border: 0;
|
|
6343
|
+
}
|
|
6344
|
+
.c-footer__social-link--facebook:hover {
|
|
6345
|
+
background: linear-gradient(135deg, #1877f2, #42a5f5);
|
|
6346
|
+
}
|
|
6347
|
+
.c-footer__social-link--twitter:hover {
|
|
6348
|
+
background: linear-gradient(135deg, #1da1f2, #64b5f6);
|
|
6349
|
+
}
|
|
6350
|
+
.c-footer__social-link--instagram:hover {
|
|
6351
|
+
background: linear-gradient(135deg, #e4405f, #f06292, #ba68c8);
|
|
6352
|
+
}
|
|
6353
|
+
.c-footer__social-link--linkedin:hover {
|
|
6354
|
+
background: linear-gradient(135deg, #0077b5, #42a5f5);
|
|
6355
|
+
}
|
|
6356
|
+
.c-footer__social-link--youtube:hover {
|
|
6357
|
+
background: linear-gradient(135deg, #ff0000, #ff5722);
|
|
6358
|
+
}
|
|
6359
|
+
.c-footer__social-link--github:hover {
|
|
6360
|
+
background: linear-gradient(135deg, #333, #666);
|
|
6361
|
+
}
|
|
6362
|
+
.c-footer__social-link--discord:hover {
|
|
6363
|
+
background: linear-gradient(135deg, #5865f2, #7289da);
|
|
6364
|
+
}
|
|
6365
|
+
.c-footer__social-link--tiktok:hover {
|
|
6366
|
+
background: linear-gradient(135deg, #000, #ff0050);
|
|
6367
|
+
}
|
|
6368
|
+
.c-footer__social-link--whatsapp:hover {
|
|
6369
|
+
background: linear-gradient(135deg, #25d366, #66bb6a);
|
|
6370
|
+
}
|
|
6371
|
+
.c-footer__newsletter {
|
|
6372
|
+
background-color: linear-gradient(135deg, var(--atomix-surface-variant), rgba(var(--atomix-surface-variant), 0.8));
|
|
6373
|
+
padding: 1.5rem;
|
|
6374
|
+
border-radius: 0.5rem;
|
|
6375
|
+
border: 1px solid var(--atomix-border-subtle);
|
|
6376
|
+
position: relative;
|
|
6377
|
+
overflow: hidden;
|
|
6378
|
+
}
|
|
6379
|
+
.c-footer__newsletter::before {
|
|
6380
|
+
content: "";
|
|
6381
|
+
position: absolute;
|
|
6382
|
+
top: 0;
|
|
6383
|
+
left: 0;
|
|
6384
|
+
right: 0;
|
|
6385
|
+
height: 1px;
|
|
6386
|
+
background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
|
|
6387
|
+
}
|
|
6388
|
+
.c-footer__newsletter-title {
|
|
6389
|
+
margin: 0 0 0.5rem 0;
|
|
6390
|
+
font-size: clamp(1.125rem, 2vw, 1.125rem);
|
|
6391
|
+
font-weight: 600;
|
|
6392
|
+
color: var(--atomix-text-emphasis);
|
|
6393
|
+
line-height: 1.3;
|
|
6394
|
+
}
|
|
6395
|
+
.c-footer__newsletter-description {
|
|
6396
|
+
margin: 0 0 1rem 0;
|
|
6397
|
+
font-size: 0.875rem;
|
|
6398
|
+
color: var(--atomix-text-muted);
|
|
6399
|
+
line-height: 1.6;
|
|
6400
|
+
max-width: 45ch;
|
|
6401
|
+
}
|
|
6402
|
+
.c-footer__newsletter-form {
|
|
6403
|
+
display: flex;
|
|
6404
|
+
gap: 0.75rem;
|
|
6405
|
+
align-items: flex-end;
|
|
6406
|
+
}
|
|
6407
|
+
@media (max-width: 575.98px) {
|
|
6408
|
+
.c-footer__newsletter-form {
|
|
6409
|
+
flex-direction: column;
|
|
6410
|
+
align-items: stretch;
|
|
6411
|
+
}
|
|
6412
|
+
}
|
|
6413
|
+
.c-footer__newsletter-input-group {
|
|
6414
|
+
display: flex;
|
|
6415
|
+
flex: 1 1;
|
|
6416
|
+
gap: 0.75rem;
|
|
6417
|
+
position: relative;
|
|
6418
|
+
}
|
|
6419
|
+
@media (max-width: 575.98px) {
|
|
6420
|
+
.c-footer__newsletter-input-group {
|
|
6421
|
+
flex-direction: column;
|
|
6422
|
+
}
|
|
6423
|
+
}
|
|
6424
|
+
.c-footer__newsletter-input {
|
|
6425
|
+
flex: 1 1;
|
|
6426
|
+
padding: 0.75rem 1rem;
|
|
6427
|
+
font-size: 0.875rem;
|
|
6428
|
+
background-color: var(--atomix-surface);
|
|
6429
|
+
color: var(--atomix-text);
|
|
6430
|
+
border: 1px solid var(--atomix-border);
|
|
6431
|
+
border-radius: 0.375rem;
|
|
6432
|
+
outline: none;
|
|
6433
|
+
transition: all 0.3s ease;
|
|
6434
|
+
}
|
|
6435
|
+
.c-footer__newsletter-input:focus {
|
|
6436
|
+
border-color: var(--atomix-primary);
|
|
6437
|
+
box-shadow: 0 0 0 0.125rem rgba(var(--atomix-primary-rgb), 0.25);
|
|
6438
|
+
transform: translateY(-1px);
|
|
6439
|
+
}
|
|
6440
|
+
.c-footer__newsletter-input::-moz-placeholder {
|
|
6441
|
+
color: var(--atomix-text-muted);
|
|
6442
|
+
-moz-transition: opacity 0.3s ease;
|
|
6443
|
+
transition: opacity 0.3s ease;
|
|
6444
|
+
}
|
|
6445
|
+
.c-footer__newsletter-input::placeholder {
|
|
6446
|
+
color: var(--atomix-text-muted);
|
|
6447
|
+
transition: opacity 0.3s ease;
|
|
6448
|
+
}
|
|
6449
|
+
.c-footer__newsletter-input:focus::-moz-placeholder {
|
|
6450
|
+
opacity: 0.7;
|
|
6451
|
+
}
|
|
6452
|
+
.c-footer__newsletter-input:focus::placeholder {
|
|
6453
|
+
opacity: 0.7;
|
|
6454
|
+
}
|
|
6455
|
+
.c-footer__newsletter-button {
|
|
6456
|
+
padding: 0.75rem 1.5rem;
|
|
6457
|
+
background-color: var(--atomix-primary);
|
|
6458
|
+
color: var(--atomix-primary-contrast);
|
|
6459
|
+
border: none;
|
|
6460
|
+
border-radius: 0.375rem;
|
|
6461
|
+
font-weight: 500;
|
|
6462
|
+
cursor: pointer;
|
|
6463
|
+
transition: background-color 0.15s ease-in-out;
|
|
6464
|
+
white-space: nowrap;
|
|
6465
|
+
position: relative;
|
|
6466
|
+
overflow: hidden;
|
|
6467
|
+
}
|
|
6468
|
+
.c-footer__newsletter-button::before {
|
|
6469
|
+
content: "";
|
|
6470
|
+
position: absolute;
|
|
6471
|
+
inset: 0;
|
|
6472
|
+
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
|
|
6473
|
+
transform: translateX(-100%);
|
|
6474
|
+
transition: transform 0.6s ease;
|
|
6475
|
+
}
|
|
6476
|
+
.c-footer__newsletter-button:hover, .c-footer__newsletter-button:focus {
|
|
6477
|
+
background-color: var(--atomix-primary-hover);
|
|
6478
|
+
transform: translateY(-2px);
|
|
6479
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
|
6480
|
+
}
|
|
6481
|
+
.c-footer__newsletter-button:hover::before, .c-footer__newsletter-button:focus::before {
|
|
6482
|
+
transform: translateX(100%);
|
|
6483
|
+
}
|
|
6484
|
+
.c-footer__newsletter-button:focus-visible {
|
|
6485
|
+
outline: 2px solid var(--atomix-primary);
|
|
6486
|
+
outline-offset: 2px;
|
|
6487
|
+
}
|
|
6488
|
+
.c-footer__bottom {
|
|
6489
|
+
display: flex;
|
|
6490
|
+
align-items: center;
|
|
6491
|
+
justify-content: space-between;
|
|
6492
|
+
padding-top: var(--atomix-footer-bottom-padding-top);
|
|
6493
|
+
border-top: 1px solid var(--atomix-border);
|
|
6494
|
+
position: relative;
|
|
6495
|
+
}
|
|
6496
|
+
@media (max-width: 575.98px) {
|
|
6497
|
+
.c-footer__bottom {
|
|
6498
|
+
flex-direction: column;
|
|
6499
|
+
gap: 1.5rem;
|
|
6500
|
+
text-align: center;
|
|
6501
|
+
}
|
|
6502
|
+
}
|
|
6503
|
+
.c-footer__copyright {
|
|
6504
|
+
font-size: 0.875rem;
|
|
6505
|
+
color: var(--atomix-text-muted);
|
|
6506
|
+
line-height: 1.5;
|
|
6507
|
+
}
|
|
6508
|
+
.c-footer__copyright a {
|
|
6509
|
+
color: inherit;
|
|
6510
|
+
text-decoration: underline;
|
|
6511
|
+
text-decoration-color: transparent;
|
|
6512
|
+
transition: text-decoration-color 0.3s ease;
|
|
6513
|
+
}
|
|
6514
|
+
.c-footer__copyright a:hover, .c-footer__copyright a:focus {
|
|
6515
|
+
text-decoration-color: currentColor;
|
|
6516
|
+
}
|
|
6517
|
+
.c-footer__back-to-top {
|
|
6518
|
+
display: flex;
|
|
6519
|
+
align-items: center;
|
|
6520
|
+
gap: 0.5rem;
|
|
6521
|
+
padding: 0.75rem 1.25rem;
|
|
6522
|
+
background-color: var(--atomix-surface-variant);
|
|
6523
|
+
border: 1px solid var(--atomix-border-subtle);
|
|
6524
|
+
color: var(--atomix-text);
|
|
6525
|
+
font-size: 0.875rem;
|
|
6526
|
+
font-weight: 500;
|
|
6527
|
+
cursor: pointer;
|
|
6528
|
+
transition: color 0.15s ease-in-out;
|
|
6529
|
+
border-radius: 2rem;
|
|
6530
|
+
position: relative;
|
|
6531
|
+
overflow: hidden;
|
|
6532
|
+
}
|
|
6533
|
+
.c-footer__back-to-top::before {
|
|
6534
|
+
content: "";
|
|
6535
|
+
position: absolute;
|
|
6536
|
+
inset: 0;
|
|
6537
|
+
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
|
|
6538
|
+
transform: translateX(-100%);
|
|
6539
|
+
transition: transform 0.6s ease;
|
|
6540
|
+
}
|
|
6541
|
+
.c-footer__back-to-top:hover, .c-footer__back-to-top:focus {
|
|
6542
|
+
color: var(--atomix-primary);
|
|
6543
|
+
background-color: var(--atomix-primary);
|
|
6544
|
+
border-color: var(--atomix-primary);
|
|
6545
|
+
transform: translateY(-2px);
|
|
6546
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
|
6547
|
+
}
|
|
6548
|
+
.c-footer__back-to-top:hover::before, .c-footer__back-to-top:focus::before {
|
|
6549
|
+
transform: translateX(100%);
|
|
6550
|
+
}
|
|
6551
|
+
.c-footer__back-to-top:hover .c-footer__back-to-top-icon, .c-footer__back-to-top:focus .c-footer__back-to-top-icon {
|
|
6552
|
+
transform: translateY(-2px);
|
|
6553
|
+
}
|
|
6554
|
+
.c-footer__back-to-top:focus-visible {
|
|
6555
|
+
outline: 2px solid var(--atomix-primary);
|
|
6556
|
+
outline-offset: 2px;
|
|
6557
|
+
}
|
|
6558
|
+
.c-footer__back-to-top-icon {
|
|
6559
|
+
font-size: 1.25em;
|
|
6560
|
+
font-weight: bold;
|
|
6561
|
+
transition: transform 0.3s ease;
|
|
6562
|
+
}
|
|
6563
|
+
@media (max-width: 575.98px) {
|
|
6564
|
+
.c-footer__back-to-top-text {
|
|
6565
|
+
display: none;
|
|
6566
|
+
}
|
|
6567
|
+
}
|
|
6568
|
+
.c-footer__divider {
|
|
6569
|
+
margin: 2rem 0;
|
|
6570
|
+
border: none;
|
|
6571
|
+
height: 1px;
|
|
6572
|
+
background: linear-gradient(90deg, transparent, 1px solid var(--atomix-border), transparent);
|
|
6573
|
+
opacity: 0.5;
|
|
6574
|
+
}
|
|
6575
|
+
@media (min-width: 768px) {
|
|
6576
|
+
.c-footer--columns .c-footer__sections {
|
|
6577
|
+
display: grid;
|
|
6578
|
+
grid-template-columns: minmax(300px, 1fr) 2fr minmax(250px, 1fr);
|
|
6579
|
+
grid-gap: clamp(2rem, 5vw, 4rem);
|
|
6580
|
+
gap: clamp(2rem, 5vw, 4rem);
|
|
6581
|
+
align-items: start;
|
|
6582
|
+
}
|
|
6583
|
+
}
|
|
6584
|
+
@media (min-width: 992px) {
|
|
6585
|
+
.c-footer--columns .c-footer__sections {
|
|
6586
|
+
grid-template-columns: minmax(350px, 1fr) 3fr minmax(300px, 1fr);
|
|
6587
|
+
}
|
|
6588
|
+
}
|
|
6589
|
+
.c-footer--centered {
|
|
6590
|
+
text-align: center;
|
|
6591
|
+
}
|
|
6592
|
+
.c-footer--centered .c-footer__sections {
|
|
6593
|
+
justify-content: center;
|
|
6594
|
+
align-items: center;
|
|
6595
|
+
}
|
|
6596
|
+
.c-footer--centered .c-footer__social {
|
|
6597
|
+
justify-content: center;
|
|
6598
|
+
}
|
|
6599
|
+
.c-footer--centered .c-footer__brand-description {
|
|
6600
|
+
margin-left: auto;
|
|
6601
|
+
margin-right: auto;
|
|
6602
|
+
}
|
|
6603
|
+
.c-footer--minimal {
|
|
6604
|
+
--atomix-footer-padding-y: 2rem;
|
|
6605
|
+
}
|
|
6606
|
+
.c-footer--minimal .c-footer__sections {
|
|
6607
|
+
margin-bottom: 1rem;
|
|
6608
|
+
gap: 1.5rem;
|
|
6609
|
+
}
|
|
6610
|
+
.c-footer--minimal .c-footer__section {
|
|
6611
|
+
margin-bottom: 1rem;
|
|
6612
|
+
}
|
|
6613
|
+
.c-footer--minimal .c-footer__newsletter {
|
|
6614
|
+
padding: 1.5rem;
|
|
6615
|
+
}
|
|
6616
|
+
.c-footer--stacked .c-footer__sections {
|
|
6617
|
+
display: flex;
|
|
6618
|
+
flex-direction: column;
|
|
6619
|
+
align-items: center;
|
|
6620
|
+
text-align: center;
|
|
6621
|
+
gap: clamp(1.5rem, 4vw, 2.5rem);
|
|
6622
|
+
max-width: 600px;
|
|
6623
|
+
margin-left: auto;
|
|
6624
|
+
margin-right: auto;
|
|
6625
|
+
}
|
|
6626
|
+
.c-footer--sm {
|
|
6627
|
+
--atomix-footer-padding-y: 2rem;
|
|
6628
|
+
--atomix-footer-section-margin-bottom: 1.5rem;
|
|
6629
|
+
--atomix-footer-brand-margin-bottom: 1rem;
|
|
6630
|
+
--atomix-footer-social-gap: 0.75rem;
|
|
6631
|
+
}
|
|
6632
|
+
.c-footer--md {
|
|
6633
|
+
--atomix-footer-padding-y: 3rem;
|
|
6634
|
+
--atomix-footer-section-margin-bottom: 2rem;
|
|
6635
|
+
}
|
|
6636
|
+
.c-footer--lg {
|
|
6637
|
+
--atomix-footer-padding-y: 4rem;
|
|
6638
|
+
--atomix-footer-section-margin-bottom: 2.5rem;
|
|
6639
|
+
--atomix-footer-brand-margin-bottom: 2rem;
|
|
6640
|
+
--atomix-footer-social-gap: 1.25rem;
|
|
6641
|
+
}
|
|
6642
|
+
.c-footer--lg .c-footer__sections {
|
|
6643
|
+
gap: clamp(2.5rem, 5vw, 4rem);
|
|
6644
|
+
}
|
|
6645
|
+
.c-footer--primary {
|
|
6646
|
+
--atomix-footer-bg: var(--atomix-primary-bg-subtle);
|
|
6647
|
+
--atomix-footer-border-color: var(--atomix-primary-border-subtle);
|
|
6648
|
+
--atomix-footer-color: var(--atomix-primary-text);
|
|
6649
|
+
}
|
|
6650
|
+
.c-footer--primary .c-footer__brand-name h3,
|
|
6651
|
+
.c-footer--primary .c-footer__section-title {
|
|
6652
|
+
color: var(--atomix-primary-text-emphasis);
|
|
6653
|
+
}
|
|
6654
|
+
.c-footer--primary .c-footer__brand-description,
|
|
6655
|
+
.c-footer--primary .c-footer__copyright {
|
|
6656
|
+
color: var(--atomix-primary-text-muted);
|
|
6657
|
+
}
|
|
6658
|
+
.c-footer--primary .c-footer__link {
|
|
6659
|
+
color: var(--atomix-primary-text);
|
|
6660
|
+
}
|
|
6661
|
+
.c-footer--primary .c-footer__link:hover, .c-footer--primary .c-footer__link:focus {
|
|
6662
|
+
color: var(--atomix-primary);
|
|
6663
|
+
}
|
|
6664
|
+
.c-footer--primary .c-footer__link::before {
|
|
6665
|
+
background-color: var(--atomix-primary);
|
|
6666
|
+
}
|
|
6667
|
+
.c-footer--primary .c-footer__newsletter {
|
|
6668
|
+
background: linear-gradient(135deg, var(--atomix-primary-bg), rgba(var(--atomix-primary-bg-rgb), 0.8));
|
|
6669
|
+
border-color: var(--atomix-primary-border);
|
|
6670
|
+
}
|
|
6671
|
+
.c-footer--primary .c-footer__newsletter::before {
|
|
6672
|
+
background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
|
|
6673
|
+
}
|
|
6674
|
+
.c-footer--secondary {
|
|
6675
|
+
--atomix-footer-bg: var(--atomix-secondary-bg-subtle);
|
|
6676
|
+
--atomix-footer-border-color: var(--atomix-secondary-border-subtle);
|
|
6677
|
+
--atomix-footer-color: var(--atomix-secondary-text);
|
|
6678
|
+
}
|
|
6679
|
+
.c-footer--secondary .c-footer__brand-name h3,
|
|
6680
|
+
.c-footer--secondary .c-footer__section-title {
|
|
6681
|
+
color: var(--atomix-secondary-text-emphasis);
|
|
6682
|
+
}
|
|
6683
|
+
.c-footer--secondary .c-footer__brand-description,
|
|
6684
|
+
.c-footer--secondary .c-footer__copyright {
|
|
6685
|
+
color: var(--atomix-secondary-text-muted);
|
|
6686
|
+
}
|
|
6687
|
+
.c-footer--secondary .c-footer__link {
|
|
6688
|
+
color: var(--atomix-secondary-text);
|
|
6689
|
+
}
|
|
6690
|
+
.c-footer--secondary .c-footer__link:hover, .c-footer--secondary .c-footer__link:focus {
|
|
6691
|
+
color: var(--atomix-secondary);
|
|
6692
|
+
}
|
|
6693
|
+
.c-footer--secondary .c-footer__link::before {
|
|
6694
|
+
background-color: var(--atomix-secondary);
|
|
6695
|
+
}
|
|
6696
|
+
.c-footer--secondary .c-footer__newsletter {
|
|
6697
|
+
background: linear-gradient(135deg, var(--atomix-secondary-bg), rgba(var(--atomix-secondary-bg-rgb), 0.8));
|
|
6698
|
+
border-color: var(--atomix-secondary-border);
|
|
6699
|
+
}
|
|
6700
|
+
.c-footer--secondary .c-footer__newsletter::before {
|
|
6701
|
+
background: linear-gradient(90deg, transparent, var(--atomix-secondary), transparent);
|
|
6702
|
+
}
|
|
6703
|
+
.c-footer--tertiary {
|
|
6704
|
+
--atomix-footer-bg: var(--atomix-tertiary-bg-subtle);
|
|
6705
|
+
--atomix-footer-border-color: var(--atomix-tertiary-border-subtle);
|
|
6706
|
+
--atomix-footer-color: var(--atomix-tertiary-text);
|
|
6707
|
+
}
|
|
6708
|
+
.c-footer--tertiary .c-footer__brand-name h3,
|
|
6709
|
+
.c-footer--tertiary .c-footer__section-title {
|
|
6710
|
+
color: var(--atomix-tertiary-text-emphasis);
|
|
6711
|
+
}
|
|
6712
|
+
.c-footer--tertiary .c-footer__brand-description,
|
|
6713
|
+
.c-footer--tertiary .c-footer__copyright {
|
|
6714
|
+
color: var(--atomix-tertiary-text-muted);
|
|
6715
|
+
}
|
|
6716
|
+
.c-footer--tertiary .c-footer__link {
|
|
6717
|
+
color: var(--atomix-tertiary-text);
|
|
6718
|
+
}
|
|
6719
|
+
.c-footer--tertiary .c-footer__link:hover, .c-footer--tertiary .c-footer__link:focus {
|
|
6720
|
+
color: var(--atomix-tertiary);
|
|
6721
|
+
}
|
|
6722
|
+
.c-footer--tertiary .c-footer__link::before {
|
|
6723
|
+
background-color: var(--atomix-tertiary);
|
|
6724
|
+
}
|
|
6725
|
+
.c-footer--tertiary .c-footer__newsletter {
|
|
6726
|
+
background: linear-gradient(135deg, var(--atomix-tertiary-bg), rgba(var(--atomix-tertiary-bg-rgb), 0.8));
|
|
6727
|
+
border-color: var(--atomix-tertiary-border);
|
|
6728
|
+
}
|
|
6729
|
+
.c-footer--tertiary .c-footer__newsletter::before {
|
|
6730
|
+
background: linear-gradient(90deg, transparent, var(--atomix-tertiary), transparent);
|
|
6731
|
+
}
|
|
6732
|
+
.c-footer--invert {
|
|
6733
|
+
--atomix-footer-bg: var(--atomix-invert-bg-subtle);
|
|
6734
|
+
--atomix-footer-border-color: var(--atomix-invert-border-subtle);
|
|
6735
|
+
--atomix-footer-color: var(--atomix-invert-text);
|
|
6736
|
+
}
|
|
6737
|
+
.c-footer--invert .c-footer__brand-name h3,
|
|
6738
|
+
.c-footer--invert .c-footer__section-title {
|
|
6739
|
+
color: var(--atomix-invert-text-emphasis);
|
|
6740
|
+
}
|
|
6741
|
+
.c-footer--invert .c-footer__brand-description,
|
|
6742
|
+
.c-footer--invert .c-footer__copyright {
|
|
6743
|
+
color: var(--atomix-invert-text-muted);
|
|
6744
|
+
}
|
|
6745
|
+
.c-footer--invert .c-footer__link {
|
|
6746
|
+
color: var(--atomix-invert-text);
|
|
6747
|
+
}
|
|
6748
|
+
.c-footer--invert .c-footer__link:hover, .c-footer--invert .c-footer__link:focus {
|
|
6749
|
+
color: var(--atomix-invert);
|
|
6750
|
+
}
|
|
6751
|
+
.c-footer--invert .c-footer__link::before {
|
|
6752
|
+
background-color: var(--atomix-invert);
|
|
6753
|
+
}
|
|
6754
|
+
.c-footer--invert .c-footer__newsletter {
|
|
6755
|
+
background: linear-gradient(135deg, var(--atomix-invert-bg), rgba(var(--atomix-invert-bg-rgb), 0.8));
|
|
6756
|
+
border-color: var(--atomix-invert-border);
|
|
6757
|
+
}
|
|
6758
|
+
.c-footer--invert .c-footer__newsletter::before {
|
|
6759
|
+
background: linear-gradient(90deg, transparent, var(--atomix-invert), transparent);
|
|
6760
|
+
}
|
|
6761
|
+
.c-footer--brand {
|
|
6762
|
+
--atomix-footer-bg: var(--atomix-brand-bg-subtle);
|
|
6763
|
+
--atomix-footer-border-color: var(--atomix-brand-border-subtle);
|
|
6764
|
+
--atomix-footer-color: var(--atomix-brand-text);
|
|
6765
|
+
}
|
|
6766
|
+
.c-footer--brand .c-footer__brand-name h3,
|
|
6767
|
+
.c-footer--brand .c-footer__section-title {
|
|
6768
|
+
color: var(--atomix-brand-text-emphasis);
|
|
6769
|
+
}
|
|
6770
|
+
.c-footer--brand .c-footer__brand-description,
|
|
6771
|
+
.c-footer--brand .c-footer__copyright {
|
|
6772
|
+
color: var(--atomix-brand-text-muted);
|
|
6773
|
+
}
|
|
6774
|
+
.c-footer--brand .c-footer__link {
|
|
6775
|
+
color: var(--atomix-brand-text);
|
|
6776
|
+
}
|
|
6777
|
+
.c-footer--brand .c-footer__link:hover, .c-footer--brand .c-footer__link:focus {
|
|
6778
|
+
color: var(--atomix-brand);
|
|
6779
|
+
}
|
|
6780
|
+
.c-footer--brand .c-footer__link::before {
|
|
6781
|
+
background-color: var(--atomix-brand);
|
|
6782
|
+
}
|
|
6783
|
+
.c-footer--brand .c-footer__newsletter {
|
|
6784
|
+
background: linear-gradient(135deg, var(--atomix-brand-bg), rgba(var(--atomix-brand-bg-rgb), 0.8));
|
|
6785
|
+
border-color: var(--atomix-brand-border);
|
|
6786
|
+
}
|
|
6787
|
+
.c-footer--brand .c-footer__newsletter::before {
|
|
6788
|
+
background: linear-gradient(90deg, transparent, var(--atomix-brand), transparent);
|
|
6789
|
+
}
|
|
6790
|
+
.c-footer--error {
|
|
6791
|
+
--atomix-footer-bg: var(--atomix-error-bg-subtle);
|
|
6792
|
+
--atomix-footer-border-color: var(--atomix-error-border-subtle);
|
|
6793
|
+
--atomix-footer-color: var(--atomix-error-text);
|
|
6794
|
+
}
|
|
6795
|
+
.c-footer--error .c-footer__brand-name h3,
|
|
6796
|
+
.c-footer--error .c-footer__section-title {
|
|
6797
|
+
color: var(--atomix-error-text-emphasis);
|
|
6798
|
+
}
|
|
6799
|
+
.c-footer--error .c-footer__brand-description,
|
|
6800
|
+
.c-footer--error .c-footer__copyright {
|
|
6801
|
+
color: var(--atomix-error-text-muted);
|
|
6802
|
+
}
|
|
6803
|
+
.c-footer--error .c-footer__link {
|
|
6804
|
+
color: var(--atomix-error-text);
|
|
6805
|
+
}
|
|
6806
|
+
.c-footer--error .c-footer__link:hover, .c-footer--error .c-footer__link:focus {
|
|
6807
|
+
color: var(--atomix-error);
|
|
6808
|
+
}
|
|
6809
|
+
.c-footer--error .c-footer__link::before {
|
|
6810
|
+
background-color: var(--atomix-error);
|
|
6811
|
+
}
|
|
6812
|
+
.c-footer--error .c-footer__newsletter {
|
|
6813
|
+
background: linear-gradient(135deg, var(--atomix-error-bg), rgba(var(--atomix-error-bg-rgb), 0.8));
|
|
6814
|
+
border-color: var(--atomix-error-border);
|
|
6815
|
+
}
|
|
6816
|
+
.c-footer--error .c-footer__newsletter::before {
|
|
6817
|
+
background: linear-gradient(90deg, transparent, var(--atomix-error), transparent);
|
|
6818
|
+
}
|
|
6819
|
+
.c-footer--success {
|
|
6820
|
+
--atomix-footer-bg: var(--atomix-success-bg-subtle);
|
|
6821
|
+
--atomix-footer-border-color: var(--atomix-success-border-subtle);
|
|
6822
|
+
--atomix-footer-color: var(--atomix-success-text);
|
|
6823
|
+
}
|
|
6824
|
+
.c-footer--success .c-footer__brand-name h3,
|
|
6825
|
+
.c-footer--success .c-footer__section-title {
|
|
6826
|
+
color: var(--atomix-success-text-emphasis);
|
|
6827
|
+
}
|
|
6828
|
+
.c-footer--success .c-footer__brand-description,
|
|
6829
|
+
.c-footer--success .c-footer__copyright {
|
|
6830
|
+
color: var(--atomix-success-text-muted);
|
|
6831
|
+
}
|
|
6832
|
+
.c-footer--success .c-footer__link {
|
|
6833
|
+
color: var(--atomix-success-text);
|
|
6834
|
+
}
|
|
6835
|
+
.c-footer--success .c-footer__link:hover, .c-footer--success .c-footer__link:focus {
|
|
6836
|
+
color: var(--atomix-success);
|
|
6837
|
+
}
|
|
6838
|
+
.c-footer--success .c-footer__link::before {
|
|
6839
|
+
background-color: var(--atomix-success);
|
|
6840
|
+
}
|
|
6841
|
+
.c-footer--success .c-footer__newsletter {
|
|
6842
|
+
background: linear-gradient(135deg, var(--atomix-success-bg), rgba(var(--atomix-success-bg-rgb), 0.8));
|
|
6843
|
+
border-color: var(--atomix-success-border);
|
|
6844
|
+
}
|
|
6845
|
+
.c-footer--success .c-footer__newsletter::before {
|
|
6846
|
+
background: linear-gradient(90deg, transparent, var(--atomix-success), transparent);
|
|
6847
|
+
}
|
|
6848
|
+
.c-footer--warning {
|
|
6849
|
+
--atomix-footer-bg: var(--atomix-warning-bg-subtle);
|
|
6850
|
+
--atomix-footer-border-color: var(--atomix-warning-border-subtle);
|
|
6851
|
+
--atomix-footer-color: var(--atomix-warning-text);
|
|
6852
|
+
}
|
|
6853
|
+
.c-footer--warning .c-footer__brand-name h3,
|
|
6854
|
+
.c-footer--warning .c-footer__section-title {
|
|
6855
|
+
color: var(--atomix-warning-text-emphasis);
|
|
6856
|
+
}
|
|
6857
|
+
.c-footer--warning .c-footer__brand-description,
|
|
6858
|
+
.c-footer--warning .c-footer__copyright {
|
|
6859
|
+
color: var(--atomix-warning-text-muted);
|
|
6860
|
+
}
|
|
6861
|
+
.c-footer--warning .c-footer__link {
|
|
6862
|
+
color: var(--atomix-warning-text);
|
|
6863
|
+
}
|
|
6864
|
+
.c-footer--warning .c-footer__link:hover, .c-footer--warning .c-footer__link:focus {
|
|
6865
|
+
color: var(--atomix-warning);
|
|
6866
|
+
}
|
|
6867
|
+
.c-footer--warning .c-footer__link::before {
|
|
6868
|
+
background-color: var(--atomix-warning);
|
|
6869
|
+
}
|
|
6870
|
+
.c-footer--warning .c-footer__newsletter {
|
|
6871
|
+
background: linear-gradient(135deg, var(--atomix-warning-bg), rgba(var(--atomix-warning-bg-rgb), 0.8));
|
|
6872
|
+
border-color: var(--atomix-warning-border);
|
|
6873
|
+
}
|
|
6874
|
+
.c-footer--warning .c-footer__newsletter::before {
|
|
6875
|
+
background: linear-gradient(90deg, transparent, var(--atomix-warning), transparent);
|
|
6876
|
+
}
|
|
6877
|
+
.c-footer--info {
|
|
6878
|
+
--atomix-footer-bg: var(--atomix-info-bg-subtle);
|
|
6879
|
+
--atomix-footer-border-color: var(--atomix-info-border-subtle);
|
|
6880
|
+
--atomix-footer-color: var(--atomix-info-text);
|
|
6881
|
+
}
|
|
6882
|
+
.c-footer--info .c-footer__brand-name h3,
|
|
6883
|
+
.c-footer--info .c-footer__section-title {
|
|
6884
|
+
color: var(--atomix-info-text-emphasis);
|
|
6885
|
+
}
|
|
6886
|
+
.c-footer--info .c-footer__brand-description,
|
|
6887
|
+
.c-footer--info .c-footer__copyright {
|
|
6888
|
+
color: var(--atomix-info-text-muted);
|
|
6889
|
+
}
|
|
6890
|
+
.c-footer--info .c-footer__link {
|
|
6891
|
+
color: var(--atomix-info-text);
|
|
6892
|
+
}
|
|
6893
|
+
.c-footer--info .c-footer__link:hover, .c-footer--info .c-footer__link:focus {
|
|
6894
|
+
color: var(--atomix-info);
|
|
6895
|
+
}
|
|
6896
|
+
.c-footer--info .c-footer__link::before {
|
|
6897
|
+
background-color: var(--atomix-info);
|
|
6898
|
+
}
|
|
6899
|
+
.c-footer--info .c-footer__newsletter {
|
|
6900
|
+
background: linear-gradient(135deg, var(--atomix-info-bg), rgba(var(--atomix-info-bg-rgb), 0.8));
|
|
6901
|
+
border-color: var(--atomix-info-border);
|
|
6902
|
+
}
|
|
6903
|
+
.c-footer--info .c-footer__newsletter::before {
|
|
6904
|
+
background: linear-gradient(90deg, transparent, var(--atomix-info), transparent);
|
|
6905
|
+
}
|
|
6906
|
+
.c-footer--light {
|
|
6907
|
+
--atomix-footer-bg: var(--atomix-light-bg-subtle);
|
|
6908
|
+
--atomix-footer-border-color: var(--atomix-light-border-subtle);
|
|
6909
|
+
--atomix-footer-color: var(--atomix-light-text);
|
|
6910
|
+
}
|
|
6911
|
+
.c-footer--light .c-footer__brand-name h3,
|
|
6912
|
+
.c-footer--light .c-footer__section-title {
|
|
6913
|
+
color: var(--atomix-light-text-emphasis);
|
|
6914
|
+
}
|
|
6915
|
+
.c-footer--light .c-footer__brand-description,
|
|
6916
|
+
.c-footer--light .c-footer__copyright {
|
|
6917
|
+
color: var(--atomix-light-text-muted);
|
|
6918
|
+
}
|
|
6919
|
+
.c-footer--light .c-footer__link {
|
|
6920
|
+
color: var(--atomix-light-text);
|
|
6921
|
+
}
|
|
6922
|
+
.c-footer--light .c-footer__link:hover, .c-footer--light .c-footer__link:focus {
|
|
6923
|
+
color: var(--atomix-light);
|
|
6924
|
+
}
|
|
6925
|
+
.c-footer--light .c-footer__link::before {
|
|
6926
|
+
background-color: var(--atomix-light);
|
|
6927
|
+
}
|
|
6928
|
+
.c-footer--light .c-footer__newsletter {
|
|
6929
|
+
background: linear-gradient(135deg, var(--atomix-light-bg), rgba(var(--atomix-light-bg-rgb), 0.8));
|
|
6930
|
+
border-color: var(--atomix-light-border);
|
|
6931
|
+
}
|
|
6932
|
+
.c-footer--light .c-footer__newsletter::before {
|
|
6933
|
+
background: linear-gradient(90deg, transparent, var(--atomix-light), transparent);
|
|
6934
|
+
}
|
|
6935
|
+
.c-footer--dark {
|
|
6936
|
+
--atomix-footer-bg: var(--atomix-dark-bg-subtle);
|
|
6937
|
+
--atomix-footer-border-color: var(--atomix-dark-border-subtle);
|
|
6938
|
+
--atomix-footer-color: var(--atomix-dark-text);
|
|
6939
|
+
}
|
|
6940
|
+
.c-footer--dark .c-footer__brand-name h3,
|
|
6941
|
+
.c-footer--dark .c-footer__section-title {
|
|
6942
|
+
color: var(--atomix-dark-text-emphasis);
|
|
6943
|
+
}
|
|
6944
|
+
.c-footer--dark .c-footer__brand-description,
|
|
6945
|
+
.c-footer--dark .c-footer__copyright {
|
|
6946
|
+
color: var(--atomix-dark-text-muted);
|
|
6947
|
+
}
|
|
6948
|
+
.c-footer--dark .c-footer__link {
|
|
6949
|
+
color: var(--atomix-dark-text);
|
|
6950
|
+
}
|
|
6951
|
+
.c-footer--dark .c-footer__link:hover, .c-footer--dark .c-footer__link:focus {
|
|
6952
|
+
color: var(--atomix-dark);
|
|
6953
|
+
}
|
|
6954
|
+
.c-footer--dark .c-footer__link::before {
|
|
6955
|
+
background-color: var(--atomix-dark);
|
|
6956
|
+
}
|
|
6957
|
+
.c-footer--dark .c-footer__newsletter {
|
|
6958
|
+
background: linear-gradient(135deg, var(--atomix-dark-bg), rgba(var(--atomix-dark-bg-rgb), 0.8));
|
|
6959
|
+
border-color: var(--atomix-dark-border);
|
|
6960
|
+
}
|
|
6961
|
+
.c-footer--dark .c-footer__newsletter::before {
|
|
6962
|
+
background: linear-gradient(90deg, transparent, var(--atomix-dark), transparent);
|
|
5887
6963
|
}
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
6964
|
+
.c-footer--sticky {
|
|
6965
|
+
position: sticky;
|
|
6966
|
+
bottom: 0;
|
|
6967
|
+
z-index: 10;
|
|
6968
|
+
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
|
|
6969
|
+
-webkit-backdrop-filter: blur(10px);
|
|
6970
|
+
backdrop-filter: blur(10px);
|
|
6971
|
+
background-color: rgba(var(--atomix-footer-bg-rgb), 0.95);
|
|
5895
6972
|
}
|
|
5896
|
-
@
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
transform: translateX(0);
|
|
6973
|
+
@media (prefers-color-scheme: dark) {
|
|
6974
|
+
.c-footer {
|
|
6975
|
+
--atomix-footer-bg: var(--atomix-surface-dark);
|
|
6976
|
+
--atomix-footer-color: var(--atomix-text-dark);
|
|
6977
|
+
--atomix-footer-border-color: var(--atomix-border-dark);
|
|
5902
6978
|
}
|
|
5903
6979
|
}
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
to {
|
|
5909
|
-
transform: translateX(-100%);
|
|
5910
|
-
}
|
|
6980
|
+
.dark-mode .c-footer {
|
|
6981
|
+
--atomix-footer-bg: var(--atomix-surface-dark);
|
|
6982
|
+
--atomix-footer-color: var(--atomix-text-dark);
|
|
6983
|
+
--atomix-footer-border-color: var(--atomix-border-dark);
|
|
5911
6984
|
}
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
}
|
|
5916
|
-
to {
|
|
5917
|
-
transform: translateX(0);
|
|
5918
|
-
}
|
|
6985
|
+
.dark-mode .c-footer .c-footer__newsletter {
|
|
6986
|
+
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
|
|
6987
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
5919
6988
|
}
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
transform: translateX(0);
|
|
5923
|
-
}
|
|
5924
|
-
to {
|
|
5925
|
-
transform: translateX(100%);
|
|
5926
|
-
}
|
|
6989
|
+
.dark-mode .c-footer .c-footer__social-link {
|
|
6990
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
5927
6991
|
}
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
6992
|
+
.dark-mode .c-footer .c-footer__social-link:hover {
|
|
6993
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
6994
|
+
}
|
|
6995
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6996
|
+
.c-footer *,
|
|
6997
|
+
.c-footer *::before,
|
|
6998
|
+
.c-footer *::after {
|
|
6999
|
+
animation-duration: 0.01ms !important;
|
|
7000
|
+
animation-iteration-count: 1 !important;
|
|
7001
|
+
transition-duration: 0.01ms !important;
|
|
7002
|
+
scroll-behavior: auto !important;
|
|
7003
|
+
}
|
|
7004
|
+
.c-footer .c-footer__social-link:hover,
|
|
7005
|
+
.c-footer .c-footer__back-to-top:hover,
|
|
7006
|
+
.c-footer .c-footer__newsletter-button:hover {
|
|
7007
|
+
transform: none;
|
|
5931
7008
|
}
|
|
5932
|
-
|
|
5933
|
-
|
|
7009
|
+
}
|
|
7010
|
+
@media (prefers-contrast: high) {
|
|
7011
|
+
.c-footer .c-footer__link,
|
|
7012
|
+
.c-footer .c-footer__social-link,
|
|
7013
|
+
.c-footer .c-footer__back-to-top {
|
|
7014
|
+
border: 2px solid currentColor;
|
|
5934
7015
|
}
|
|
5935
7016
|
}
|
|
5936
|
-
@
|
|
5937
|
-
|
|
5938
|
-
|
|
7017
|
+
@media print {
|
|
7018
|
+
.c-footer {
|
|
7019
|
+
background: white !important;
|
|
7020
|
+
color: black !important;
|
|
7021
|
+
box-shadow: none !important;
|
|
5939
7022
|
}
|
|
5940
|
-
to
|
|
5941
|
-
|
|
7023
|
+
.c-footer .c-footer__back-to-top,
|
|
7024
|
+
.c-footer .c-footer__newsletter,
|
|
7025
|
+
.c-footer .c-footer__section-toggle {
|
|
7026
|
+
display: none !important;
|
|
5942
7027
|
}
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
7028
|
+
.c-footer .c-footer__social-link::after {
|
|
7029
|
+
content: " (" attr(href) ")";
|
|
7030
|
+
font-size: 0.8em;
|
|
7031
|
+
color: inherit;
|
|
5947
7032
|
}
|
|
5948
|
-
|
|
5949
|
-
|
|
7033
|
+
.c-footer .c-footer__section--collapsible .c-footer__section-content {
|
|
7034
|
+
max-height: none !important;
|
|
7035
|
+
overflow: visible !important;
|
|
5950
7036
|
}
|
|
5951
7037
|
}
|
|
5952
|
-
@
|
|
5953
|
-
|
|
5954
|
-
|
|
7038
|
+
@container (min-width: 768px) {
|
|
7039
|
+
.c-footer .c-footer__sections {
|
|
7040
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
5955
7041
|
}
|
|
5956
|
-
|
|
5957
|
-
|
|
7042
|
+
}
|
|
7043
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
7044
|
+
.c-footer .c-footer__brand-logo img {
|
|
7045
|
+
image-rendering: -webkit-optimize-contrast;
|
|
7046
|
+
image-rendering: crisp-edges;
|
|
5958
7047
|
}
|
|
5959
7048
|
}
|
|
5960
7049
|
.c-form {
|
|
@@ -6019,13 +7108,12 @@ a, a:hover {
|
|
|
6019
7108
|
.c-hero__overlay {
|
|
6020
7109
|
position: absolute;
|
|
6021
7110
|
inset: 0;
|
|
6022
|
-
background: var(--atomix-hero-overlay);
|
|
7111
|
+
background-color: var(--atomix-hero-overlay);
|
|
6023
7112
|
opacity: var(--atomix-hero-overlay-opacity);
|
|
6024
|
-
z-index:
|
|
7113
|
+
z-index: 0;
|
|
6025
7114
|
}
|
|
6026
7115
|
.c-hero__container {
|
|
6027
7116
|
position: relative;
|
|
6028
|
-
z-index: 2;
|
|
6029
7117
|
}
|
|
6030
7118
|
.c-hero__grid {
|
|
6031
7119
|
--atomix-gutter-x: var(--atomix-hero-grid-gutter);
|
|
@@ -6140,7 +7228,7 @@ a, a:hover {
|
|
|
6140
7228
|
--atomix-input-padding-x: 1rem;
|
|
6141
7229
|
--atomix-input-padding-y: 0.75rem;
|
|
6142
7230
|
--atomix-input-border-color: var(--atomix-primary-border-subtle);
|
|
6143
|
-
--atomix-input-border-width:
|
|
7231
|
+
--atomix-input-border-width: var(--atomix-border-width);
|
|
6144
7232
|
--atomix-input-border-radius: 8px;
|
|
6145
7233
|
--atomix-input-bg: var(--atomix-body-bg);
|
|
6146
7234
|
--atomix-input-textarea-height: 120px;
|
|
@@ -6225,6 +7313,21 @@ a, a:hover {
|
|
|
6225
7313
|
--atomix-input-bg: var(--atomix-secondary-bg-subtle);
|
|
6226
7314
|
pointer-events: none;
|
|
6227
7315
|
}
|
|
7316
|
+
.c-input--glass {
|
|
7317
|
+
background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
|
|
7318
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
|
|
7319
|
+
}
|
|
7320
|
+
.c-input--glass:focus, .c-input--glass:hover {
|
|
7321
|
+
background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
|
|
7322
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 0 2px rgba(var(--atomix-primary-rgb, 122, 255, 215), 0.3);
|
|
7323
|
+
}
|
|
7324
|
+
.c-input--glass.c-input--textarea {
|
|
7325
|
+
resize: vertical;
|
|
7326
|
+
}
|
|
7327
|
+
.c-input--glass:disabled, .c-input--glass.is-disabled {
|
|
7328
|
+
background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
|
|
7329
|
+
opacity: 0.6;
|
|
7330
|
+
}
|
|
6228
7331
|
.c-list-group {
|
|
6229
7332
|
--atomix-list-group-width: 100%;
|
|
6230
7333
|
--atomix-list-group-bg: ;
|
|
@@ -6243,14 +7346,14 @@ a, a:hover {
|
|
|
6243
7346
|
list-style: none;
|
|
6244
7347
|
width: 100%;
|
|
6245
7348
|
max-width: var(--atomix-list-group-width);
|
|
6246
|
-
background: var(--atomix-list-group-bg);
|
|
7349
|
+
background-color: var(--atomix-list-group-bg);
|
|
6247
7350
|
}
|
|
6248
7351
|
.c-list-group__item {
|
|
6249
7352
|
padding: var(--atomix-list-group-item-padding-y) var(--atomix-list-group-item-padding-x);
|
|
6250
7353
|
font-size: var(--atomix-list-group-item-font-size);
|
|
6251
7354
|
color: var(--atomix-list-group-item-color);
|
|
6252
7355
|
border-bottom: var(--atomix-list-group-item-border-width) solid var(--atomix-list-group-item-border-color);
|
|
6253
|
-
background: var(--atomix-list-group-item-bg);
|
|
7356
|
+
background-color: var(--atomix-list-group-item-bg);
|
|
6254
7357
|
}
|
|
6255
7358
|
.c-list-group__item--primary {
|
|
6256
7359
|
--atomix-list-group-item-bg: var(--atomix-brand-bg-subtle);
|
|
@@ -6315,7 +7418,7 @@ a, a:hover {
|
|
|
6315
7418
|
left: 0;
|
|
6316
7419
|
width: var(--atomix-list-item-dash-width);
|
|
6317
7420
|
height: var(--atomix-list-item-dash-height);
|
|
6318
|
-
background: var(--atomix-list-color);
|
|
7421
|
+
background-color: var(--atomix-list-color);
|
|
6319
7422
|
transform: translateY(-50%);
|
|
6320
7423
|
}
|
|
6321
7424
|
.c-list--number {
|
|
@@ -6642,7 +7745,7 @@ a, a:hover {
|
|
|
6642
7745
|
flex-wrap: wrap;
|
|
6643
7746
|
padding: var(--atomix-messages-file-padding-y) var(--atomix-messages-file-padding-x);
|
|
6644
7747
|
border-radius: 0.25rem var(--atomix-messages-file-border-radius) var(--atomix-messages-file-border-radius) 0.25rem;
|
|
6645
|
-
background: var(--atomix-messages-file-bg);
|
|
7748
|
+
background-color: var(--atomix-messages-file-bg);
|
|
6646
7749
|
}
|
|
6647
7750
|
.c-messages__file-icon {
|
|
6648
7751
|
display: grid !important;
|
|
@@ -7018,14 +8121,14 @@ a, a:hover {
|
|
|
7018
8121
|
left: 50%;
|
|
7019
8122
|
transform: translateX(-50%);
|
|
7020
8123
|
z-index: 1000;
|
|
7021
|
-
background: var(--atomix-body-bg);
|
|
8124
|
+
background-color: var(--atomix-body-bg);
|
|
7022
8125
|
border: 1px solid var(--atomix-border-color);
|
|
7023
8126
|
border-radius: 50rem;
|
|
7024
8127
|
box-shadow: var(--atomix-box-shadow-lg);
|
|
7025
8128
|
padding: 0.5rem 1rem;
|
|
7026
8129
|
-webkit-backdrop-filter: blur(10px);
|
|
7027
8130
|
backdrop-filter: blur(10px);
|
|
7028
|
-
background: rgba(var(--atomix-body-bg-rgb), 0.95);
|
|
8131
|
+
background-color: rgba(var(--atomix-body-bg-rgb), 0.95);
|
|
7029
8132
|
}
|
|
7030
8133
|
.c-nav--float-top-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-top-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item {
|
|
7031
8134
|
margin-left: 0.25rem;
|
|
@@ -7433,7 +8536,7 @@ a, a:hover {
|
|
|
7433
8536
|
max-width: var(--atomix-callout-width);
|
|
7434
8537
|
gap: var(--atomix-callout-actions-spacer);
|
|
7435
8538
|
padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
|
|
7436
|
-
background: var(--atomix-callout-bg);
|
|
8539
|
+
background-color: var(--atomix-callout-bg);
|
|
7437
8540
|
border-radius: var(--atomix-callout-border-radius);
|
|
7438
8541
|
border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
|
|
7439
8542
|
transition: opacity var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing), transform var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing);
|
|
@@ -7472,9 +8575,9 @@ a, a:hover {
|
|
|
7472
8575
|
.c-callout__actions {
|
|
7473
8576
|
display: flex;
|
|
7474
8577
|
align-items: center;
|
|
7475
|
-
flex-wrap: wrap;
|
|
7476
8578
|
gap: var(--atomix-callout-actions-spacer);
|
|
7477
8579
|
margin-left: auto;
|
|
8580
|
+
margin-right: 10px;
|
|
7478
8581
|
}
|
|
7479
8582
|
.c-callout__close-btn {
|
|
7480
8583
|
display: inline-flex;
|
|
@@ -7576,9 +8679,35 @@ a, a:hover {
|
|
|
7576
8679
|
--atomix-callout-title-color: var(--atomix-light);
|
|
7577
8680
|
--atomix-callout-text-color: #d1d5db;
|
|
7578
8681
|
--atomix-callout-bg: var(--atomix-dark);
|
|
7579
|
-
--atomix-callout-border-color: var(--atomix-
|
|
8682
|
+
--atomix-callout-border-color: var(--atomix-dark-border-subtle);
|
|
7580
8683
|
--atomix-callout-icon-color: var(--atomix-light);
|
|
7581
8684
|
}
|
|
8685
|
+
.c-callout--glass {
|
|
8686
|
+
background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
|
|
8687
|
+
padding: 0;
|
|
8688
|
+
border: none;
|
|
8689
|
+
display: block;
|
|
8690
|
+
}
|
|
8691
|
+
.c-callout--glass .c-callout__glass-content {
|
|
8692
|
+
display: flex;
|
|
8693
|
+
justify-content: center;
|
|
8694
|
+
align-items: center;
|
|
8695
|
+
padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
|
|
8696
|
+
border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
|
|
8697
|
+
max-width: var(--atomix-callout-width);
|
|
8698
|
+
border-radius: var(--atomix-callout-border-radius);
|
|
8699
|
+
width: 100%;
|
|
8700
|
+
}
|
|
8701
|
+
.c-callout--glass .c-callout__title {
|
|
8702
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
8703
|
+
}
|
|
8704
|
+
.c-callout--glass .c-callout__text {
|
|
8705
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
8706
|
+
}
|
|
8707
|
+
.c-callout--glass.c-callout--toast {
|
|
8708
|
+
background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
|
|
8709
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
|
|
8710
|
+
}
|
|
7582
8711
|
.c-callout.is-hide {
|
|
7583
8712
|
opacity: 0;
|
|
7584
8713
|
transform: translateY(-10px);
|
|
@@ -7803,7 +8932,7 @@ a, a:hover {
|
|
|
7803
8932
|
flex-direction: column;
|
|
7804
8933
|
gap: var(--atomix-popover-inner-gap-y) var(--atomix-popover-inner-gap-x);
|
|
7805
8934
|
padding: var(--atomix-popover-padding-y) var(--atomix-popover-padding-x);
|
|
7806
|
-
background: var(--atomix-popover-bg);
|
|
8935
|
+
background-color: var(--atomix-popover-bg);
|
|
7807
8936
|
border-radius: var(--atomix-popover-border-radius);
|
|
7808
8937
|
box-shadow: var(--atomix-popover-box-shadow);
|
|
7809
8938
|
}
|
|
@@ -7811,7 +8940,7 @@ a, a:hover {
|
|
|
7811
8940
|
position: absolute;
|
|
7812
8941
|
width: var(--atomix-popover-arrow-size);
|
|
7813
8942
|
height: var(--atomix-popover-arrow-size);
|
|
7814
|
-
background: var(--atomix-popover-bg);
|
|
8943
|
+
background-color: var(--atomix-popover-bg);
|
|
7815
8944
|
box-shadow: var(--atomix-popover-box-shadow);
|
|
7816
8945
|
z-index: 1;
|
|
7817
8946
|
transform-origin: center;
|
|
@@ -8196,7 +9325,7 @@ a, a:hover {
|
|
|
8196
9325
|
.c-river__overlay {
|
|
8197
9326
|
position: absolute;
|
|
8198
9327
|
inset: 0;
|
|
8199
|
-
background: var(--atomix-river-overlay);
|
|
9328
|
+
background-color: var(--atomix-river-overlay);
|
|
8200
9329
|
opacity: var(--atomix-river-overlay-opacity);
|
|
8201
9330
|
border-radius: var(--atomix-river-border-radius);
|
|
8202
9331
|
}
|
|
@@ -8612,7 +9741,7 @@ a, a:hover {
|
|
|
8612
9741
|
--atomix-side-menu-inner-padding-top: 1.5rem;
|
|
8613
9742
|
width: 100%;
|
|
8614
9743
|
padding: var(--atomix-side-menu-padding-y) var(--atomix-side-menu-padding-x);
|
|
8615
|
-
background: var(--atomix-side-menu-bg);
|
|
9744
|
+
background-color: var(--atomix-side-menu-bg);
|
|
8616
9745
|
border-radius: var(--atomix-side-menu-border-radius);
|
|
8617
9746
|
border: var(--atomix-side-menu-border-width) solid var(--atomix-side-menu-border-color);
|
|
8618
9747
|
box-shadow: var(--atomix-side-menu-box-shadow);
|
|
@@ -8650,7 +9779,7 @@ a, a:hover {
|
|
|
8650
9779
|
justify-content: space-between;
|
|
8651
9780
|
width: 100%;
|
|
8652
9781
|
padding: var(--atomix-side-menu-toggler-padding-y) var(--atomix-side-menu-toggler-padding-x);
|
|
8653
|
-
background: var(--atomix-side-menu-toggler-bg);
|
|
9782
|
+
background-color: var(--atomix-side-menu-toggler-bg);
|
|
8654
9783
|
border: none;
|
|
8655
9784
|
border-radius: var(--atomix-side-menu-toggler-border-radius);
|
|
8656
9785
|
cursor: pointer;
|
|
@@ -8666,7 +9795,7 @@ a, a:hover {
|
|
|
8666
9795
|
}
|
|
8667
9796
|
}
|
|
8668
9797
|
.c-side-menu__toggler:hover {
|
|
8669
|
-
background: var(--atomix-side-menu-toggler-hover-bg);
|
|
9798
|
+
background-color: var(--atomix-side-menu-toggler-hover-bg);
|
|
8670
9799
|
}
|
|
8671
9800
|
.c-side-menu__toggler:focus {
|
|
8672
9801
|
outline: 2px solid var(--atomix-focus-ring-color);
|
|
@@ -8704,7 +9833,7 @@ a, a:hover {
|
|
|
8704
9833
|
color: var(--atomix-side-menu-item-color);
|
|
8705
9834
|
font-size: var(--atomix-side-menu-item-font-size);
|
|
8706
9835
|
font-weight: var(--atomix-side-menu-item-font-weight);
|
|
8707
|
-
background: var(--atomix-side-menu-item-bg);
|
|
9836
|
+
background-color: var(--atomix-side-menu-item-bg);
|
|
8708
9837
|
border: none;
|
|
8709
9838
|
border-radius: var(--atomix-side-menu-item-border-radius);
|
|
8710
9839
|
text-decoration: none;
|
|
@@ -8713,7 +9842,7 @@ a, a:hover {
|
|
|
8713
9842
|
}
|
|
8714
9843
|
.c-side-menu__link:hover {
|
|
8715
9844
|
color: var(--atomix-side-menu-item-hover-color);
|
|
8716
|
-
background: var(--atomix-side-menu-item-hover-bg);
|
|
9845
|
+
background-color: var(--atomix-side-menu-item-hover-bg);
|
|
8717
9846
|
text-decoration: none;
|
|
8718
9847
|
}
|
|
8719
9848
|
.c-side-menu__link:focus {
|
|
@@ -8725,12 +9854,12 @@ a, a:hover {
|
|
|
8725
9854
|
}
|
|
8726
9855
|
.c-side-menu__link.is-active {
|
|
8727
9856
|
color: var(--atomix-side-menu-item-active-color);
|
|
8728
|
-
background: var(--atomix-side-menu-item-active-bg);
|
|
9857
|
+
background-color: var(--atomix-side-menu-item-active-bg);
|
|
8729
9858
|
font-weight: 500;
|
|
8730
9859
|
}
|
|
8731
9860
|
.c-side-menu__link.is-disabled, .c-side-menu__link[aria-disabled=true] {
|
|
8732
9861
|
color: var(--atomix-side-menu-item-disabled-color);
|
|
8733
|
-
background: var(--atomix-side-menu-item-disabled-bg);
|
|
9862
|
+
background-color: var(--atomix-side-menu-item-disabled-bg);
|
|
8734
9863
|
cursor: not-allowed;
|
|
8735
9864
|
pointer-events: none;
|
|
8736
9865
|
opacity: 0.6;
|
|
@@ -8774,7 +9903,7 @@ a, a:hover {
|
|
|
8774
9903
|
display: inline-block;
|
|
8775
9904
|
width: var(--atomix-skeleton-width);
|
|
8776
9905
|
min-height: var(--atomix-skeleton-height);
|
|
8777
|
-
background: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
|
|
9906
|
+
background-color: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
|
|
8778
9907
|
background-size: 400% 100%;
|
|
8779
9908
|
border-radius: var(--atomix-skeleton-border-radius);
|
|
8780
9909
|
animation-name: atomix--skeleton-loading;
|
|
@@ -8870,7 +9999,7 @@ a, a:hover {
|
|
|
8870
9999
|
display: flex;
|
|
8871
10000
|
align-items: center;
|
|
8872
10001
|
justify-content: center;
|
|
8873
|
-
background: var(--atomix-secondary-bg-subtle);
|
|
10002
|
+
background-color: var(--atomix-secondary-bg-subtle);
|
|
8874
10003
|
border: 2px dashed var(--atomix-primary-border-subtle);
|
|
8875
10004
|
border-radius: 0.25rem;
|
|
8876
10005
|
}
|
|
@@ -8910,7 +10039,7 @@ a, a:hover {
|
|
|
8910
10039
|
height: var(--atomix-slider-nav-size);
|
|
8911
10040
|
border: none;
|
|
8912
10041
|
border-radius: 50rem;
|
|
8913
|
-
background: var(--atomix-primary-bg-subtle);
|
|
10042
|
+
background-color: var(--atomix-primary-bg-subtle);
|
|
8914
10043
|
color: var(--atomix-primary-text);
|
|
8915
10044
|
cursor: pointer;
|
|
8916
10045
|
pointer-events: auto;
|
|
@@ -8923,7 +10052,7 @@ a, a:hover {
|
|
|
8923
10052
|
}
|
|
8924
10053
|
.c-slider__navigation-prev:hover,
|
|
8925
10054
|
.c-slider__navigation-next:hover {
|
|
8926
|
-
background: var(--atomix-secondary-bg-subtle);
|
|
10055
|
+
background-color: var(--atomix-secondary-bg-subtle);
|
|
8927
10056
|
transform: translateY(-50%) scale(1.05);
|
|
8928
10057
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
8929
10058
|
}
|
|
@@ -8975,20 +10104,20 @@ a, a:hover {
|
|
|
8975
10104
|
height: 0.5rem;
|
|
8976
10105
|
border-radius: 50rem;
|
|
8977
10106
|
border: none;
|
|
8978
|
-
background: var(--atomix-tertiary-bg-subtle);
|
|
10107
|
+
background-color: var(--atomix-tertiary-bg-subtle);
|
|
8979
10108
|
cursor: pointer;
|
|
8980
10109
|
pointer-events: auto;
|
|
8981
10110
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
8982
10111
|
}
|
|
8983
10112
|
.c-slider__pagination-bullet:hover {
|
|
8984
|
-
background: var(--atomix-secondary-bg-subtle);
|
|
10113
|
+
background-color: var(--atomix-secondary-bg-subtle);
|
|
8985
10114
|
transform: scale(1.2);
|
|
8986
10115
|
}
|
|
8987
10116
|
.c-slider__pagination-bullet:active {
|
|
8988
10117
|
transform: scale(1.1);
|
|
8989
10118
|
}
|
|
8990
10119
|
.c-slider__pagination-bullet--active {
|
|
8991
|
-
background: var(--atomix-primary);
|
|
10120
|
+
background-color: var(--atomix-primary);
|
|
8992
10121
|
transform: scale(1.2);
|
|
8993
10122
|
}
|
|
8994
10123
|
.c-slider__empty-message {
|
|
@@ -9301,7 +10430,7 @@ a, a:hover {
|
|
|
9301
10430
|
width: 100%;
|
|
9302
10431
|
max-width: var(--atomix-testimonial-width);
|
|
9303
10432
|
padding: var(--atomix-testimonial-padding-y) var(--atomix-testimonial-padding-x);
|
|
9304
|
-
background: var(--atomix-testimonial-bg);
|
|
10433
|
+
background-color: var(--atomix-testimonial-bg);
|
|
9305
10434
|
}
|
|
9306
10435
|
.c-testimonial__quote {
|
|
9307
10436
|
color: var(--atomix-testimonial-quote-color);
|
|
@@ -9492,7 +10621,7 @@ a, a:hover {
|
|
|
9492
10621
|
width: var(--atomix-toggle-switch-handle-width);
|
|
9493
10622
|
height: var(--atomix-toggle-switch-handle-height);
|
|
9494
10623
|
margin: var(--atomix-toggle-switch-handle-margin);
|
|
9495
|
-
background: var(--atomix-toggle-switch-handle-bg);
|
|
10624
|
+
background-color: var(--atomix-toggle-switch-handle-bg);
|
|
9496
10625
|
border-radius: var(--atomix-toggle-switch-handle-border-radius);
|
|
9497
10626
|
transition-property: all;
|
|
9498
10627
|
transition-duration: 0.2s;
|
|
@@ -9513,7 +10642,7 @@ a, a:hover {
|
|
|
9513
10642
|
pointer-events: none;
|
|
9514
10643
|
}
|
|
9515
10644
|
.c-toggle.is-disabled:not(.is-on) .c-toggle__switch {
|
|
9516
|
-
background: var(--atomix-toggle-switch-disabled-bg);
|
|
10645
|
+
background-color: var(--atomix-toggle-switch-disabled-bg);
|
|
9517
10646
|
}
|
|
9518
10647
|
.c-toggle.is-disabled.is-on {
|
|
9519
10648
|
pointer-events: none;
|
|
@@ -9522,7 +10651,7 @@ a, a:hover {
|
|
|
9522
10651
|
content: "";
|
|
9523
10652
|
position: absolute;
|
|
9524
10653
|
inset: 0;
|
|
9525
|
-
background: rgba(107, 114, 128, 0.6);
|
|
10654
|
+
background-color: rgba(107, 114, 128, 0.6);
|
|
9526
10655
|
border-radius: var(--atomix-toggle-switch-handle-border-radius);
|
|
9527
10656
|
}
|
|
9528
10657
|
.c-tooltip {
|
|
@@ -9846,34 +10975,34 @@ a, a:hover {
|
|
|
9846
10975
|
pointer-events: none;
|
|
9847
10976
|
}
|
|
9848
10977
|
.c-video-player {
|
|
9849
|
-
--atomix
|
|
9850
|
-
--atomix
|
|
9851
|
-
--atomix
|
|
9852
|
-
--atomix
|
|
9853
|
-
--atomix
|
|
9854
|
-
--atomix
|
|
9855
|
-
--atomix
|
|
9856
|
-
--atomix
|
|
9857
|
-
--atomix
|
|
9858
|
-
--atomix
|
|
9859
|
-
--atomix
|
|
9860
|
-
--atomix
|
|
9861
|
-
--atomix
|
|
9862
|
-
--atomix
|
|
9863
|
-
--atomix
|
|
9864
|
-
--atomix
|
|
9865
|
-
--atomix
|
|
9866
|
-
--atomix
|
|
9867
|
-
--atomix
|
|
9868
|
-
--atomix
|
|
9869
|
-
--atomix
|
|
9870
|
-
--atomix
|
|
9871
|
-
--atomix
|
|
9872
|
-
--atomix
|
|
9873
|
-
--atomix
|
|
10978
|
+
--atomix--video-player-bg: #000;
|
|
10979
|
+
--atomix--video-player-border-radius: 8px;
|
|
10980
|
+
--atomix--video-player-controls-padding: 20px 16px 16px;
|
|
10981
|
+
--atomix--video-player-progress-height: 4px;
|
|
10982
|
+
--atomix--video-player-button-size: 40px;
|
|
10983
|
+
--atomix--video-player-font-size: 14px;
|
|
10984
|
+
--atomix--video-player-transition: all 0.3s ease;
|
|
10985
|
+
--atomix--video-player-volume-width: 80px;
|
|
10986
|
+
--atomix--video-player-volume-width-mobile: 60px;
|
|
10987
|
+
--atomix--video-player-volume-height: 4px;
|
|
10988
|
+
--atomix--video-player-volume-height-hover: 6px;
|
|
10989
|
+
--atomix--video-player-volume-thumb-size: 12px;
|
|
10990
|
+
--atomix--video-player-volume-bg: rgba(255, 255, 255, 0.3);
|
|
10991
|
+
--atomix--video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
|
|
10992
|
+
--atomix--video-player-volume-fill: var(--atomix-color-primary);
|
|
10993
|
+
--atomix--video-player-volume-fill-hover: var(--atomix-color-primary-light);
|
|
10994
|
+
--atomix--video-player-volume-fill-active: var(--atomix-color-primary-dark);
|
|
10995
|
+
--atomix--video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
|
|
10996
|
+
--atomix--video-player-subtitle-color: #ffffff;
|
|
10997
|
+
--atomix--video-player-subtitle-font-size: 18px;
|
|
10998
|
+
--atomix--video-player-subtitle-font-weight: 500;
|
|
10999
|
+
--atomix--video-player-subtitle-line-height: 1.5;
|
|
11000
|
+
--atomix--video-player-subtitle-border-radius: 6px;
|
|
11001
|
+
--atomix--video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
|
|
11002
|
+
--atomix--video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
9874
11003
|
position: relative;
|
|
9875
11004
|
width: 100%;
|
|
9876
|
-
background: var(--atomix--video-player-bg, #000);
|
|
11005
|
+
background-color: var(--atomix--video-player-bg, #000);
|
|
9877
11006
|
border-radius: var(--atomix--video-player-border-radius, 0.5rem);
|
|
9878
11007
|
overflow: hidden;
|
|
9879
11008
|
font-family: var(--atomix--font-family-base);
|
|
@@ -10127,7 +11256,7 @@ a, a:hover {
|
|
|
10127
11256
|
bottom: 3.125rem;
|
|
10128
11257
|
right: 0;
|
|
10129
11258
|
min-width: 12.5rem;
|
|
10130
|
-
background: rgba(var(--atomix-primary-rgb), 0.7);
|
|
11259
|
+
background-color: rgba(var(--atomix-primary-rgb), 0.7);
|
|
10131
11260
|
border-radius: 0.5rem;
|
|
10132
11261
|
padding: 0.5rem;
|
|
10133
11262
|
-webkit-backdrop-filter: blur(10px);
|
|
@@ -10323,6 +11452,24 @@ a, a:hover {
|
|
|
10323
11452
|
.c-video-player--ambient .c-video-player__ambient-canvas {
|
|
10324
11453
|
display: block;
|
|
10325
11454
|
}
|
|
11455
|
+
.c-video-player--glass {
|
|
11456
|
+
position: relative;
|
|
11457
|
+
}
|
|
11458
|
+
.c-video-player__glass-overlay {
|
|
11459
|
+
overflow: hidden;
|
|
11460
|
+
position: absolute;
|
|
11461
|
+
top: 0;
|
|
11462
|
+
left: 0;
|
|
11463
|
+
border-radius: var(--atomix--video-player-border-radius, 0.5rem);
|
|
11464
|
+
}
|
|
11465
|
+
.c-video-player__glass-content {
|
|
11466
|
+
position: absolute;
|
|
11467
|
+
top: 0;
|
|
11468
|
+
left: 0;
|
|
11469
|
+
right: 0;
|
|
11470
|
+
bottom: 0;
|
|
11471
|
+
pointer-events: auto;
|
|
11472
|
+
}
|
|
10326
11473
|
.c-video-player__subtitles {
|
|
10327
11474
|
position: absolute;
|
|
10328
11475
|
bottom: 5rem;
|
|
@@ -10377,7 +11524,7 @@ a, a:hover {
|
|
|
10377
11524
|
transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
|
10378
11525
|
}
|
|
10379
11526
|
.c-photo-viewer__container {
|
|
10380
|
-
background: var(--atomix-body-bg);
|
|
11527
|
+
background-color: var(--atomix-body-bg);
|
|
10381
11528
|
border: 1px solid var(--atomix-primary-border-subtle);
|
|
10382
11529
|
border-radius: 0.625rem;
|
|
10383
11530
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
@@ -10431,7 +11578,7 @@ a, a:hover {
|
|
|
10431
11578
|
border: 2px solid transparent;
|
|
10432
11579
|
border-radius: 8px;
|
|
10433
11580
|
padding: 0;
|
|
10434
|
-
background: transparent;
|
|
11581
|
+
background-color: transparent;
|
|
10435
11582
|
cursor: pointer;
|
|
10436
11583
|
overflow: hidden;
|
|
10437
11584
|
position: relative;
|
|
@@ -10489,7 +11636,7 @@ body.is-open-photoviewer {
|
|
|
10489
11636
|
width: 100vw;
|
|
10490
11637
|
height: 100vh;
|
|
10491
11638
|
z-index: 1000;
|
|
10492
|
-
background: transparent;
|
|
11639
|
+
background-color: transparent;
|
|
10493
11640
|
opacity: 1;
|
|
10494
11641
|
transition-property: opacity;
|
|
10495
11642
|
}
|
|
@@ -12054,19 +13201,19 @@ body.is-open-photoviewer {
|
|
|
12054
13201
|
.u-m-1 {
|
|
12055
13202
|
margin: 0.25rem;
|
|
12056
13203
|
}
|
|
12057
|
-
.u-m-
|
|
13204
|
+
.u-m-2 {
|
|
12058
13205
|
margin: 0.375rem;
|
|
12059
13206
|
}
|
|
12060
13207
|
.u-m-2 {
|
|
12061
13208
|
margin: 0.5rem;
|
|
12062
13209
|
}
|
|
12063
|
-
.u-m-
|
|
13210
|
+
.u-m-3 {
|
|
12064
13211
|
margin: 0.625rem;
|
|
12065
13212
|
}
|
|
12066
13213
|
.u-m-3 {
|
|
12067
13214
|
margin: 0.75rem;
|
|
12068
13215
|
}
|
|
12069
|
-
.u-m-
|
|
13216
|
+
.u-m-4 {
|
|
12070
13217
|
margin: 0.875rem;
|
|
12071
13218
|
}
|
|
12072
13219
|
.u-m-4 {
|
|
@@ -12075,12 +13222,18 @@ body.is-open-photoviewer {
|
|
|
12075
13222
|
.u-m-5 {
|
|
12076
13223
|
margin: 1.25rem;
|
|
12077
13224
|
}
|
|
13225
|
+
.u-m-6 {
|
|
13226
|
+
margin: 1.375rem;
|
|
13227
|
+
}
|
|
12078
13228
|
.u-m-6 {
|
|
12079
13229
|
margin: 1.5rem;
|
|
12080
13230
|
}
|
|
12081
13231
|
.u-m-7 {
|
|
12082
13232
|
margin: 1.75rem;
|
|
12083
13233
|
}
|
|
13234
|
+
.u-m-8 {
|
|
13235
|
+
margin: 1.875rem;
|
|
13236
|
+
}
|
|
12084
13237
|
.u-m-8 {
|
|
12085
13238
|
margin: 2rem;
|
|
12086
13239
|
}
|
|
@@ -12161,7 +13314,7 @@ body.is-open-photoviewer {
|
|
|
12161
13314
|
margin-right: 0.25rem;
|
|
12162
13315
|
margin-left: 0.25rem;
|
|
12163
13316
|
}
|
|
12164
|
-
.u-mx-
|
|
13317
|
+
.u-mx-2 {
|
|
12165
13318
|
margin-right: 0.375rem;
|
|
12166
13319
|
margin-left: 0.375rem;
|
|
12167
13320
|
}
|
|
@@ -12169,7 +13322,7 @@ body.is-open-photoviewer {
|
|
|
12169
13322
|
margin-right: 0.5rem;
|
|
12170
13323
|
margin-left: 0.5rem;
|
|
12171
13324
|
}
|
|
12172
|
-
.u-mx-
|
|
13325
|
+
.u-mx-3 {
|
|
12173
13326
|
margin-right: 0.625rem;
|
|
12174
13327
|
margin-left: 0.625rem;
|
|
12175
13328
|
}
|
|
@@ -12177,7 +13330,7 @@ body.is-open-photoviewer {
|
|
|
12177
13330
|
margin-right: 0.75rem;
|
|
12178
13331
|
margin-left: 0.75rem;
|
|
12179
13332
|
}
|
|
12180
|
-
.u-mx-
|
|
13333
|
+
.u-mx-4 {
|
|
12181
13334
|
margin-right: 0.875rem;
|
|
12182
13335
|
margin-left: 0.875rem;
|
|
12183
13336
|
}
|
|
@@ -12189,6 +13342,10 @@ body.is-open-photoviewer {
|
|
|
12189
13342
|
margin-right: 1.25rem;
|
|
12190
13343
|
margin-left: 1.25rem;
|
|
12191
13344
|
}
|
|
13345
|
+
.u-mx-6 {
|
|
13346
|
+
margin-right: 1.375rem;
|
|
13347
|
+
margin-left: 1.375rem;
|
|
13348
|
+
}
|
|
12192
13349
|
.u-mx-6 {
|
|
12193
13350
|
margin-right: 1.5rem;
|
|
12194
13351
|
margin-left: 1.5rem;
|
|
@@ -12197,6 +13354,10 @@ body.is-open-photoviewer {
|
|
|
12197
13354
|
margin-right: 1.75rem;
|
|
12198
13355
|
margin-left: 1.75rem;
|
|
12199
13356
|
}
|
|
13357
|
+
.u-mx-8 {
|
|
13358
|
+
margin-right: 1.875rem;
|
|
13359
|
+
margin-left: 1.875rem;
|
|
13360
|
+
}
|
|
12200
13361
|
.u-mx-8 {
|
|
12201
13362
|
margin-right: 2rem;
|
|
12202
13363
|
margin-left: 2rem;
|
|
@@ -12301,7 +13462,7 @@ body.is-open-photoviewer {
|
|
|
12301
13462
|
margin-top: 0.25rem;
|
|
12302
13463
|
margin-bottom: 0.25rem;
|
|
12303
13464
|
}
|
|
12304
|
-
.u-my-
|
|
13465
|
+
.u-my-2 {
|
|
12305
13466
|
margin-top: 0.375rem;
|
|
12306
13467
|
margin-bottom: 0.375rem;
|
|
12307
13468
|
}
|
|
@@ -12309,7 +13470,7 @@ body.is-open-photoviewer {
|
|
|
12309
13470
|
margin-top: 0.5rem;
|
|
12310
13471
|
margin-bottom: 0.5rem;
|
|
12311
13472
|
}
|
|
12312
|
-
.u-my-
|
|
13473
|
+
.u-my-3 {
|
|
12313
13474
|
margin-top: 0.625rem;
|
|
12314
13475
|
margin-bottom: 0.625rem;
|
|
12315
13476
|
}
|
|
@@ -12317,7 +13478,7 @@ body.is-open-photoviewer {
|
|
|
12317
13478
|
margin-top: 0.75rem;
|
|
12318
13479
|
margin-bottom: 0.75rem;
|
|
12319
13480
|
}
|
|
12320
|
-
.u-my-
|
|
13481
|
+
.u-my-4 {
|
|
12321
13482
|
margin-top: 0.875rem;
|
|
12322
13483
|
margin-bottom: 0.875rem;
|
|
12323
13484
|
}
|
|
@@ -12329,6 +13490,10 @@ body.is-open-photoviewer {
|
|
|
12329
13490
|
margin-top: 1.25rem;
|
|
12330
13491
|
margin-bottom: 1.25rem;
|
|
12331
13492
|
}
|
|
13493
|
+
.u-my-6 {
|
|
13494
|
+
margin-top: 1.375rem;
|
|
13495
|
+
margin-bottom: 1.375rem;
|
|
13496
|
+
}
|
|
12332
13497
|
.u-my-6 {
|
|
12333
13498
|
margin-top: 1.5rem;
|
|
12334
13499
|
margin-bottom: 1.5rem;
|
|
@@ -12337,6 +13502,10 @@ body.is-open-photoviewer {
|
|
|
12337
13502
|
margin-top: 1.75rem;
|
|
12338
13503
|
margin-bottom: 1.75rem;
|
|
12339
13504
|
}
|
|
13505
|
+
.u-my-8 {
|
|
13506
|
+
margin-top: 1.875rem;
|
|
13507
|
+
margin-bottom: 1.875rem;
|
|
13508
|
+
}
|
|
12340
13509
|
.u-my-8 {
|
|
12341
13510
|
margin-top: 2rem;
|
|
12342
13511
|
margin-bottom: 2rem;
|
|
@@ -12439,19 +13608,19 @@ body.is-open-photoviewer {
|
|
|
12439
13608
|
.u-mt-1 {
|
|
12440
13609
|
margin-top: 0.25rem;
|
|
12441
13610
|
}
|
|
12442
|
-
.u-mt-
|
|
13611
|
+
.u-mt-2 {
|
|
12443
13612
|
margin-top: 0.375rem;
|
|
12444
13613
|
}
|
|
12445
13614
|
.u-mt-2 {
|
|
12446
13615
|
margin-top: 0.5rem;
|
|
12447
13616
|
}
|
|
12448
|
-
.u-mt-
|
|
13617
|
+
.u-mt-3 {
|
|
12449
13618
|
margin-top: 0.625rem;
|
|
12450
13619
|
}
|
|
12451
13620
|
.u-mt-3 {
|
|
12452
13621
|
margin-top: 0.75rem;
|
|
12453
13622
|
}
|
|
12454
|
-
.u-mt-
|
|
13623
|
+
.u-mt-4 {
|
|
12455
13624
|
margin-top: 0.875rem;
|
|
12456
13625
|
}
|
|
12457
13626
|
.u-mt-4 {
|
|
@@ -12460,12 +13629,18 @@ body.is-open-photoviewer {
|
|
|
12460
13629
|
.u-mt-5 {
|
|
12461
13630
|
margin-top: 1.25rem;
|
|
12462
13631
|
}
|
|
13632
|
+
.u-mt-6 {
|
|
13633
|
+
margin-top: 1.375rem;
|
|
13634
|
+
}
|
|
12463
13635
|
.u-mt-6 {
|
|
12464
13636
|
margin-top: 1.5rem;
|
|
12465
13637
|
}
|
|
12466
13638
|
.u-mt-7 {
|
|
12467
13639
|
margin-top: 1.75rem;
|
|
12468
13640
|
}
|
|
13641
|
+
.u-mt-8 {
|
|
13642
|
+
margin-top: 1.875rem;
|
|
13643
|
+
}
|
|
12469
13644
|
.u-mt-8 {
|
|
12470
13645
|
margin-top: 2rem;
|
|
12471
13646
|
}
|
|
@@ -12544,19 +13719,19 @@ body.is-open-photoviewer {
|
|
|
12544
13719
|
.u-me-1 {
|
|
12545
13720
|
margin-right: 0.25rem;
|
|
12546
13721
|
}
|
|
12547
|
-
.u-me-
|
|
13722
|
+
.u-me-2 {
|
|
12548
13723
|
margin-right: 0.375rem;
|
|
12549
13724
|
}
|
|
12550
13725
|
.u-me-2 {
|
|
12551
13726
|
margin-right: 0.5rem;
|
|
12552
13727
|
}
|
|
12553
|
-
.u-me-
|
|
13728
|
+
.u-me-3 {
|
|
12554
13729
|
margin-right: 0.625rem;
|
|
12555
13730
|
}
|
|
12556
13731
|
.u-me-3 {
|
|
12557
13732
|
margin-right: 0.75rem;
|
|
12558
13733
|
}
|
|
12559
|
-
.u-me-
|
|
13734
|
+
.u-me-4 {
|
|
12560
13735
|
margin-right: 0.875rem;
|
|
12561
13736
|
}
|
|
12562
13737
|
.u-me-4 {
|
|
@@ -12565,12 +13740,18 @@ body.is-open-photoviewer {
|
|
|
12565
13740
|
.u-me-5 {
|
|
12566
13741
|
margin-right: 1.25rem;
|
|
12567
13742
|
}
|
|
13743
|
+
.u-me-6 {
|
|
13744
|
+
margin-right: 1.375rem;
|
|
13745
|
+
}
|
|
12568
13746
|
.u-me-6 {
|
|
12569
13747
|
margin-right: 1.5rem;
|
|
12570
13748
|
}
|
|
12571
13749
|
.u-me-7 {
|
|
12572
13750
|
margin-right: 1.75rem;
|
|
12573
13751
|
}
|
|
13752
|
+
.u-me-8 {
|
|
13753
|
+
margin-right: 1.875rem;
|
|
13754
|
+
}
|
|
12574
13755
|
.u-me-8 {
|
|
12575
13756
|
margin-right: 2rem;
|
|
12576
13757
|
}
|
|
@@ -12649,19 +13830,19 @@ body.is-open-photoviewer {
|
|
|
12649
13830
|
.u-mb-1 {
|
|
12650
13831
|
margin-bottom: 0.25rem;
|
|
12651
13832
|
}
|
|
12652
|
-
.u-mb-
|
|
13833
|
+
.u-mb-2 {
|
|
12653
13834
|
margin-bottom: 0.375rem;
|
|
12654
13835
|
}
|
|
12655
13836
|
.u-mb-2 {
|
|
12656
13837
|
margin-bottom: 0.5rem;
|
|
12657
13838
|
}
|
|
12658
|
-
.u-mb-
|
|
13839
|
+
.u-mb-3 {
|
|
12659
13840
|
margin-bottom: 0.625rem;
|
|
12660
13841
|
}
|
|
12661
13842
|
.u-mb-3 {
|
|
12662
13843
|
margin-bottom: 0.75rem;
|
|
12663
13844
|
}
|
|
12664
|
-
.u-mb-
|
|
13845
|
+
.u-mb-4 {
|
|
12665
13846
|
margin-bottom: 0.875rem;
|
|
12666
13847
|
}
|
|
12667
13848
|
.u-mb-4 {
|
|
@@ -12670,12 +13851,18 @@ body.is-open-photoviewer {
|
|
|
12670
13851
|
.u-mb-5 {
|
|
12671
13852
|
margin-bottom: 1.25rem;
|
|
12672
13853
|
}
|
|
13854
|
+
.u-mb-6 {
|
|
13855
|
+
margin-bottom: 1.375rem;
|
|
13856
|
+
}
|
|
12673
13857
|
.u-mb-6 {
|
|
12674
13858
|
margin-bottom: 1.5rem;
|
|
12675
13859
|
}
|
|
12676
13860
|
.u-mb-7 {
|
|
12677
13861
|
margin-bottom: 1.75rem;
|
|
12678
13862
|
}
|
|
13863
|
+
.u-mb-8 {
|
|
13864
|
+
margin-bottom: 1.875rem;
|
|
13865
|
+
}
|
|
12679
13866
|
.u-mb-8 {
|
|
12680
13867
|
margin-bottom: 2rem;
|
|
12681
13868
|
}
|
|
@@ -12754,19 +13941,19 @@ body.is-open-photoviewer {
|
|
|
12754
13941
|
.u-ms-1 {
|
|
12755
13942
|
margin-left: 0.25rem;
|
|
12756
13943
|
}
|
|
12757
|
-
.u-ms-
|
|
13944
|
+
.u-ms-2 {
|
|
12758
13945
|
margin-left: 0.375rem;
|
|
12759
13946
|
}
|
|
12760
13947
|
.u-ms-2 {
|
|
12761
13948
|
margin-left: 0.5rem;
|
|
12762
13949
|
}
|
|
12763
|
-
.u-ms-
|
|
13950
|
+
.u-ms-3 {
|
|
12764
13951
|
margin-left: 0.625rem;
|
|
12765
13952
|
}
|
|
12766
13953
|
.u-ms-3 {
|
|
12767
13954
|
margin-left: 0.75rem;
|
|
12768
13955
|
}
|
|
12769
|
-
.u-ms-
|
|
13956
|
+
.u-ms-4 {
|
|
12770
13957
|
margin-left: 0.875rem;
|
|
12771
13958
|
}
|
|
12772
13959
|
.u-ms-4 {
|
|
@@ -12775,12 +13962,18 @@ body.is-open-photoviewer {
|
|
|
12775
13962
|
.u-ms-5 {
|
|
12776
13963
|
margin-left: 1.25rem;
|
|
12777
13964
|
}
|
|
13965
|
+
.u-ms-6 {
|
|
13966
|
+
margin-left: 1.375rem;
|
|
13967
|
+
}
|
|
12778
13968
|
.u-ms-6 {
|
|
12779
13969
|
margin-left: 1.5rem;
|
|
12780
13970
|
}
|
|
12781
13971
|
.u-ms-7 {
|
|
12782
13972
|
margin-left: 1.75rem;
|
|
12783
13973
|
}
|
|
13974
|
+
.u-ms-8 {
|
|
13975
|
+
margin-left: 1.875rem;
|
|
13976
|
+
}
|
|
12784
13977
|
.u-ms-8 {
|
|
12785
13978
|
margin-left: 2rem;
|
|
12786
13979
|
}
|
|
@@ -12859,19 +14052,19 @@ body.is-open-photoviewer {
|
|
|
12859
14052
|
.u-p-1 {
|
|
12860
14053
|
padding: 0.25rem;
|
|
12861
14054
|
}
|
|
12862
|
-
.u-p-
|
|
14055
|
+
.u-p-2 {
|
|
12863
14056
|
padding: 0.375rem;
|
|
12864
14057
|
}
|
|
12865
14058
|
.u-p-2 {
|
|
12866
14059
|
padding: 0.5rem;
|
|
12867
14060
|
}
|
|
12868
|
-
.u-p-
|
|
14061
|
+
.u-p-3 {
|
|
12869
14062
|
padding: 0.625rem;
|
|
12870
14063
|
}
|
|
12871
14064
|
.u-p-3 {
|
|
12872
14065
|
padding: 0.75rem;
|
|
12873
14066
|
}
|
|
12874
|
-
.u-p-
|
|
14067
|
+
.u-p-4 {
|
|
12875
14068
|
padding: 0.875rem;
|
|
12876
14069
|
}
|
|
12877
14070
|
.u-p-4 {
|
|
@@ -12880,12 +14073,18 @@ body.is-open-photoviewer {
|
|
|
12880
14073
|
.u-p-5 {
|
|
12881
14074
|
padding: 1.25rem;
|
|
12882
14075
|
}
|
|
14076
|
+
.u-p-6 {
|
|
14077
|
+
padding: 1.375rem;
|
|
14078
|
+
}
|
|
12883
14079
|
.u-p-6 {
|
|
12884
14080
|
padding: 1.5rem;
|
|
12885
14081
|
}
|
|
12886
14082
|
.u-p-7 {
|
|
12887
14083
|
padding: 1.75rem;
|
|
12888
14084
|
}
|
|
14085
|
+
.u-p-8 {
|
|
14086
|
+
padding: 1.875rem;
|
|
14087
|
+
}
|
|
12889
14088
|
.u-p-8 {
|
|
12890
14089
|
padding: 2rem;
|
|
12891
14090
|
}
|
|
@@ -12963,7 +14162,7 @@ body.is-open-photoviewer {
|
|
|
12963
14162
|
padding-right: 0.25rem;
|
|
12964
14163
|
padding-left: 0.25rem;
|
|
12965
14164
|
}
|
|
12966
|
-
.u-px-
|
|
14165
|
+
.u-px-2 {
|
|
12967
14166
|
padding-right: 0.375rem;
|
|
12968
14167
|
padding-left: 0.375rem;
|
|
12969
14168
|
}
|
|
@@ -12971,7 +14170,7 @@ body.is-open-photoviewer {
|
|
|
12971
14170
|
padding-right: 0.5rem;
|
|
12972
14171
|
padding-left: 0.5rem;
|
|
12973
14172
|
}
|
|
12974
|
-
.u-px-
|
|
14173
|
+
.u-px-3 {
|
|
12975
14174
|
padding-right: 0.625rem;
|
|
12976
14175
|
padding-left: 0.625rem;
|
|
12977
14176
|
}
|
|
@@ -12979,7 +14178,7 @@ body.is-open-photoviewer {
|
|
|
12979
14178
|
padding-right: 0.75rem;
|
|
12980
14179
|
padding-left: 0.75rem;
|
|
12981
14180
|
}
|
|
12982
|
-
.u-px-
|
|
14181
|
+
.u-px-4 {
|
|
12983
14182
|
padding-right: 0.875rem;
|
|
12984
14183
|
padding-left: 0.875rem;
|
|
12985
14184
|
}
|
|
@@ -12991,6 +14190,10 @@ body.is-open-photoviewer {
|
|
|
12991
14190
|
padding-right: 1.25rem;
|
|
12992
14191
|
padding-left: 1.25rem;
|
|
12993
14192
|
}
|
|
14193
|
+
.u-px-6 {
|
|
14194
|
+
padding-right: 1.375rem;
|
|
14195
|
+
padding-left: 1.375rem;
|
|
14196
|
+
}
|
|
12994
14197
|
.u-px-6 {
|
|
12995
14198
|
padding-right: 1.5rem;
|
|
12996
14199
|
padding-left: 1.5rem;
|
|
@@ -12999,6 +14202,10 @@ body.is-open-photoviewer {
|
|
|
12999
14202
|
padding-right: 1.75rem;
|
|
13000
14203
|
padding-left: 1.75rem;
|
|
13001
14204
|
}
|
|
14205
|
+
.u-px-8 {
|
|
14206
|
+
padding-right: 1.875rem;
|
|
14207
|
+
padding-left: 1.875rem;
|
|
14208
|
+
}
|
|
13002
14209
|
.u-px-8 {
|
|
13003
14210
|
padding-right: 2rem;
|
|
13004
14211
|
padding-left: 2rem;
|
|
@@ -13099,7 +14306,7 @@ body.is-open-photoviewer {
|
|
|
13099
14306
|
padding-top: 0.25rem;
|
|
13100
14307
|
padding-bottom: 0.25rem;
|
|
13101
14308
|
}
|
|
13102
|
-
.u-py-
|
|
14309
|
+
.u-py-2 {
|
|
13103
14310
|
padding-top: 0.375rem;
|
|
13104
14311
|
padding-bottom: 0.375rem;
|
|
13105
14312
|
}
|
|
@@ -13107,7 +14314,7 @@ body.is-open-photoviewer {
|
|
|
13107
14314
|
padding-top: 0.5rem;
|
|
13108
14315
|
padding-bottom: 0.5rem;
|
|
13109
14316
|
}
|
|
13110
|
-
.u-py-
|
|
14317
|
+
.u-py-3 {
|
|
13111
14318
|
padding-top: 0.625rem;
|
|
13112
14319
|
padding-bottom: 0.625rem;
|
|
13113
14320
|
}
|
|
@@ -13115,7 +14322,7 @@ body.is-open-photoviewer {
|
|
|
13115
14322
|
padding-top: 0.75rem;
|
|
13116
14323
|
padding-bottom: 0.75rem;
|
|
13117
14324
|
}
|
|
13118
|
-
.u-py-
|
|
14325
|
+
.u-py-4 {
|
|
13119
14326
|
padding-top: 0.875rem;
|
|
13120
14327
|
padding-bottom: 0.875rem;
|
|
13121
14328
|
}
|
|
@@ -13127,6 +14334,10 @@ body.is-open-photoviewer {
|
|
|
13127
14334
|
padding-top: 1.25rem;
|
|
13128
14335
|
padding-bottom: 1.25rem;
|
|
13129
14336
|
}
|
|
14337
|
+
.u-py-6 {
|
|
14338
|
+
padding-top: 1.375rem;
|
|
14339
|
+
padding-bottom: 1.375rem;
|
|
14340
|
+
}
|
|
13130
14341
|
.u-py-6 {
|
|
13131
14342
|
padding-top: 1.5rem;
|
|
13132
14343
|
padding-bottom: 1.5rem;
|
|
@@ -13135,6 +14346,10 @@ body.is-open-photoviewer {
|
|
|
13135
14346
|
padding-top: 1.75rem;
|
|
13136
14347
|
padding-bottom: 1.75rem;
|
|
13137
14348
|
}
|
|
14349
|
+
.u-py-8 {
|
|
14350
|
+
padding-top: 1.875rem;
|
|
14351
|
+
padding-bottom: 1.875rem;
|
|
14352
|
+
}
|
|
13138
14353
|
.u-py-8 {
|
|
13139
14354
|
padding-top: 2rem;
|
|
13140
14355
|
padding-bottom: 2rem;
|
|
@@ -13233,19 +14448,19 @@ body.is-open-photoviewer {
|
|
|
13233
14448
|
.u-pt-1 {
|
|
13234
14449
|
padding-top: 0.25rem;
|
|
13235
14450
|
}
|
|
13236
|
-
.u-pt-
|
|
14451
|
+
.u-pt-2 {
|
|
13237
14452
|
padding-top: 0.375rem;
|
|
13238
14453
|
}
|
|
13239
14454
|
.u-pt-2 {
|
|
13240
14455
|
padding-top: 0.5rem;
|
|
13241
14456
|
}
|
|
13242
|
-
.u-pt-
|
|
14457
|
+
.u-pt-3 {
|
|
13243
14458
|
padding-top: 0.625rem;
|
|
13244
14459
|
}
|
|
13245
14460
|
.u-pt-3 {
|
|
13246
14461
|
padding-top: 0.75rem;
|
|
13247
14462
|
}
|
|
13248
|
-
.u-pt-
|
|
14463
|
+
.u-pt-4 {
|
|
13249
14464
|
padding-top: 0.875rem;
|
|
13250
14465
|
}
|
|
13251
14466
|
.u-pt-4 {
|
|
@@ -13254,12 +14469,18 @@ body.is-open-photoviewer {
|
|
|
13254
14469
|
.u-pt-5 {
|
|
13255
14470
|
padding-top: 1.25rem;
|
|
13256
14471
|
}
|
|
14472
|
+
.u-pt-6 {
|
|
14473
|
+
padding-top: 1.375rem;
|
|
14474
|
+
}
|
|
13257
14475
|
.u-pt-6 {
|
|
13258
14476
|
padding-top: 1.5rem;
|
|
13259
14477
|
}
|
|
13260
14478
|
.u-pt-7 {
|
|
13261
14479
|
padding-top: 1.75rem;
|
|
13262
14480
|
}
|
|
14481
|
+
.u-pt-8 {
|
|
14482
|
+
padding-top: 1.875rem;
|
|
14483
|
+
}
|
|
13263
14484
|
.u-pt-8 {
|
|
13264
14485
|
padding-top: 2rem;
|
|
13265
14486
|
}
|
|
@@ -13335,19 +14556,19 @@ body.is-open-photoviewer {
|
|
|
13335
14556
|
.u-pe-1 {
|
|
13336
14557
|
padding-right: 0.25rem;
|
|
13337
14558
|
}
|
|
13338
|
-
.u-pe-
|
|
14559
|
+
.u-pe-2 {
|
|
13339
14560
|
padding-right: 0.375rem;
|
|
13340
14561
|
}
|
|
13341
14562
|
.u-pe-2 {
|
|
13342
14563
|
padding-right: 0.5rem;
|
|
13343
14564
|
}
|
|
13344
|
-
.u-pe-
|
|
14565
|
+
.u-pe-3 {
|
|
13345
14566
|
padding-right: 0.625rem;
|
|
13346
14567
|
}
|
|
13347
14568
|
.u-pe-3 {
|
|
13348
14569
|
padding-right: 0.75rem;
|
|
13349
14570
|
}
|
|
13350
|
-
.u-pe-
|
|
14571
|
+
.u-pe-4 {
|
|
13351
14572
|
padding-right: 0.875rem;
|
|
13352
14573
|
}
|
|
13353
14574
|
.u-pe-4 {
|
|
@@ -13356,12 +14577,18 @@ body.is-open-photoviewer {
|
|
|
13356
14577
|
.u-pe-5 {
|
|
13357
14578
|
padding-right: 1.25rem;
|
|
13358
14579
|
}
|
|
14580
|
+
.u-pe-6 {
|
|
14581
|
+
padding-right: 1.375rem;
|
|
14582
|
+
}
|
|
13359
14583
|
.u-pe-6 {
|
|
13360
14584
|
padding-right: 1.5rem;
|
|
13361
14585
|
}
|
|
13362
14586
|
.u-pe-7 {
|
|
13363
14587
|
padding-right: 1.75rem;
|
|
13364
14588
|
}
|
|
14589
|
+
.u-pe-8 {
|
|
14590
|
+
padding-right: 1.875rem;
|
|
14591
|
+
}
|
|
13365
14592
|
.u-pe-8 {
|
|
13366
14593
|
padding-right: 2rem;
|
|
13367
14594
|
}
|
|
@@ -13437,19 +14664,19 @@ body.is-open-photoviewer {
|
|
|
13437
14664
|
.u-pb-1 {
|
|
13438
14665
|
padding-bottom: 0.25rem;
|
|
13439
14666
|
}
|
|
13440
|
-
.u-pb-
|
|
14667
|
+
.u-pb-2 {
|
|
13441
14668
|
padding-bottom: 0.375rem;
|
|
13442
14669
|
}
|
|
13443
14670
|
.u-pb-2 {
|
|
13444
14671
|
padding-bottom: 0.5rem;
|
|
13445
14672
|
}
|
|
13446
|
-
.u-pb-
|
|
14673
|
+
.u-pb-3 {
|
|
13447
14674
|
padding-bottom: 0.625rem;
|
|
13448
14675
|
}
|
|
13449
14676
|
.u-pb-3 {
|
|
13450
14677
|
padding-bottom: 0.75rem;
|
|
13451
14678
|
}
|
|
13452
|
-
.u-pb-
|
|
14679
|
+
.u-pb-4 {
|
|
13453
14680
|
padding-bottom: 0.875rem;
|
|
13454
14681
|
}
|
|
13455
14682
|
.u-pb-4 {
|
|
@@ -13458,12 +14685,18 @@ body.is-open-photoviewer {
|
|
|
13458
14685
|
.u-pb-5 {
|
|
13459
14686
|
padding-bottom: 1.25rem;
|
|
13460
14687
|
}
|
|
14688
|
+
.u-pb-6 {
|
|
14689
|
+
padding-bottom: 1.375rem;
|
|
14690
|
+
}
|
|
13461
14691
|
.u-pb-6 {
|
|
13462
14692
|
padding-bottom: 1.5rem;
|
|
13463
14693
|
}
|
|
13464
14694
|
.u-pb-7 {
|
|
13465
14695
|
padding-bottom: 1.75rem;
|
|
13466
14696
|
}
|
|
14697
|
+
.u-pb-8 {
|
|
14698
|
+
padding-bottom: 1.875rem;
|
|
14699
|
+
}
|
|
13467
14700
|
.u-pb-8 {
|
|
13468
14701
|
padding-bottom: 2rem;
|
|
13469
14702
|
}
|
|
@@ -13539,19 +14772,19 @@ body.is-open-photoviewer {
|
|
|
13539
14772
|
.u-ps-1 {
|
|
13540
14773
|
padding-left: 0.25rem;
|
|
13541
14774
|
}
|
|
13542
|
-
.u-ps-
|
|
14775
|
+
.u-ps-2 {
|
|
13543
14776
|
padding-left: 0.375rem;
|
|
13544
14777
|
}
|
|
13545
14778
|
.u-ps-2 {
|
|
13546
14779
|
padding-left: 0.5rem;
|
|
13547
14780
|
}
|
|
13548
|
-
.u-ps-
|
|
14781
|
+
.u-ps-3 {
|
|
13549
14782
|
padding-left: 0.625rem;
|
|
13550
14783
|
}
|
|
13551
14784
|
.u-ps-3 {
|
|
13552
14785
|
padding-left: 0.75rem;
|
|
13553
14786
|
}
|
|
13554
|
-
.u-ps-
|
|
14787
|
+
.u-ps-4 {
|
|
13555
14788
|
padding-left: 0.875rem;
|
|
13556
14789
|
}
|
|
13557
14790
|
.u-ps-4 {
|
|
@@ -13560,12 +14793,18 @@ body.is-open-photoviewer {
|
|
|
13560
14793
|
.u-ps-5 {
|
|
13561
14794
|
padding-left: 1.25rem;
|
|
13562
14795
|
}
|
|
14796
|
+
.u-ps-6 {
|
|
14797
|
+
padding-left: 1.375rem;
|
|
14798
|
+
}
|
|
13563
14799
|
.u-ps-6 {
|
|
13564
14800
|
padding-left: 1.5rem;
|
|
13565
14801
|
}
|
|
13566
14802
|
.u-ps-7 {
|
|
13567
14803
|
padding-left: 1.75rem;
|
|
13568
14804
|
}
|
|
14805
|
+
.u-ps-8 {
|
|
14806
|
+
padding-left: 1.875rem;
|
|
14807
|
+
}
|
|
13569
14808
|
.u-ps-8 {
|
|
13570
14809
|
padding-left: 2rem;
|
|
13571
14810
|
}
|
|
@@ -13641,19 +14880,19 @@ body.is-open-photoviewer {
|
|
|
13641
14880
|
.u-gap-1 {
|
|
13642
14881
|
gap: 0.25rem;
|
|
13643
14882
|
}
|
|
13644
|
-
.u-gap-
|
|
14883
|
+
.u-gap-2 {
|
|
13645
14884
|
gap: 0.375rem;
|
|
13646
14885
|
}
|
|
13647
14886
|
.u-gap-2 {
|
|
13648
14887
|
gap: 0.5rem;
|
|
13649
14888
|
}
|
|
13650
|
-
.u-gap-
|
|
14889
|
+
.u-gap-3 {
|
|
13651
14890
|
gap: 0.625rem;
|
|
13652
14891
|
}
|
|
13653
14892
|
.u-gap-3 {
|
|
13654
14893
|
gap: 0.75rem;
|
|
13655
14894
|
}
|
|
13656
|
-
.u-gap-
|
|
14895
|
+
.u-gap-4 {
|
|
13657
14896
|
gap: 0.875rem;
|
|
13658
14897
|
}
|
|
13659
14898
|
.u-gap-4 {
|
|
@@ -13662,12 +14901,18 @@ body.is-open-photoviewer {
|
|
|
13662
14901
|
.u-gap-5 {
|
|
13663
14902
|
gap: 1.25rem;
|
|
13664
14903
|
}
|
|
14904
|
+
.u-gap-6 {
|
|
14905
|
+
gap: 1.375rem;
|
|
14906
|
+
}
|
|
13665
14907
|
.u-gap-6 {
|
|
13666
14908
|
gap: 1.5rem;
|
|
13667
14909
|
}
|
|
13668
14910
|
.u-gap-7 {
|
|
13669
14911
|
gap: 1.75rem;
|
|
13670
14912
|
}
|
|
14913
|
+
.u-gap-8 {
|
|
14914
|
+
gap: 1.875rem;
|
|
14915
|
+
}
|
|
13671
14916
|
.u-gap-8 {
|
|
13672
14917
|
gap: 2rem;
|
|
13673
14918
|
}
|
|
@@ -13743,19 +14988,19 @@ body.is-open-photoviewer {
|
|
|
13743
14988
|
.u-row-gap-1 {
|
|
13744
14989
|
row-gap: 0.25rem;
|
|
13745
14990
|
}
|
|
13746
|
-
.u-row-gap-
|
|
14991
|
+
.u-row-gap-2 {
|
|
13747
14992
|
row-gap: 0.375rem;
|
|
13748
14993
|
}
|
|
13749
14994
|
.u-row-gap-2 {
|
|
13750
14995
|
row-gap: 0.5rem;
|
|
13751
14996
|
}
|
|
13752
|
-
.u-row-gap-
|
|
14997
|
+
.u-row-gap-3 {
|
|
13753
14998
|
row-gap: 0.625rem;
|
|
13754
14999
|
}
|
|
13755
15000
|
.u-row-gap-3 {
|
|
13756
15001
|
row-gap: 0.75rem;
|
|
13757
15002
|
}
|
|
13758
|
-
.u-row-gap-
|
|
15003
|
+
.u-row-gap-4 {
|
|
13759
15004
|
row-gap: 0.875rem;
|
|
13760
15005
|
}
|
|
13761
15006
|
.u-row-gap-4 {
|
|
@@ -13764,12 +15009,18 @@ body.is-open-photoviewer {
|
|
|
13764
15009
|
.u-row-gap-5 {
|
|
13765
15010
|
row-gap: 1.25rem;
|
|
13766
15011
|
}
|
|
15012
|
+
.u-row-gap-6 {
|
|
15013
|
+
row-gap: 1.375rem;
|
|
15014
|
+
}
|
|
13767
15015
|
.u-row-gap-6 {
|
|
13768
15016
|
row-gap: 1.5rem;
|
|
13769
15017
|
}
|
|
13770
15018
|
.u-row-gap-7 {
|
|
13771
15019
|
row-gap: 1.75rem;
|
|
13772
15020
|
}
|
|
15021
|
+
.u-row-gap-8 {
|
|
15022
|
+
row-gap: 1.875rem;
|
|
15023
|
+
}
|
|
13773
15024
|
.u-row-gap-8 {
|
|
13774
15025
|
row-gap: 2rem;
|
|
13775
15026
|
}
|
|
@@ -13847,7 +15098,7 @@ body.is-open-photoviewer {
|
|
|
13847
15098
|
-moz-column-gap: 0.25rem;
|
|
13848
15099
|
column-gap: 0.25rem;
|
|
13849
15100
|
}
|
|
13850
|
-
.u-column-gap-
|
|
15101
|
+
.u-column-gap-2 {
|
|
13851
15102
|
-moz-column-gap: 0.375rem;
|
|
13852
15103
|
column-gap: 0.375rem;
|
|
13853
15104
|
}
|
|
@@ -13855,7 +15106,7 @@ body.is-open-photoviewer {
|
|
|
13855
15106
|
-moz-column-gap: 0.5rem;
|
|
13856
15107
|
column-gap: 0.5rem;
|
|
13857
15108
|
}
|
|
13858
|
-
.u-column-gap-
|
|
15109
|
+
.u-column-gap-3 {
|
|
13859
15110
|
-moz-column-gap: 0.625rem;
|
|
13860
15111
|
column-gap: 0.625rem;
|
|
13861
15112
|
}
|
|
@@ -13863,7 +15114,7 @@ body.is-open-photoviewer {
|
|
|
13863
15114
|
-moz-column-gap: 0.75rem;
|
|
13864
15115
|
column-gap: 0.75rem;
|
|
13865
15116
|
}
|
|
13866
|
-
.u-column-gap-
|
|
15117
|
+
.u-column-gap-4 {
|
|
13867
15118
|
-moz-column-gap: 0.875rem;
|
|
13868
15119
|
column-gap: 0.875rem;
|
|
13869
15120
|
}
|
|
@@ -13875,6 +15126,10 @@ body.is-open-photoviewer {
|
|
|
13875
15126
|
-moz-column-gap: 1.25rem;
|
|
13876
15127
|
column-gap: 1.25rem;
|
|
13877
15128
|
}
|
|
15129
|
+
.u-column-gap-6 {
|
|
15130
|
+
-moz-column-gap: 1.375rem;
|
|
15131
|
+
column-gap: 1.375rem;
|
|
15132
|
+
}
|
|
13878
15133
|
.u-column-gap-6 {
|
|
13879
15134
|
-moz-column-gap: 1.5rem;
|
|
13880
15135
|
column-gap: 1.5rem;
|
|
@@ -13883,6 +15138,10 @@ body.is-open-photoviewer {
|
|
|
13883
15138
|
-moz-column-gap: 1.75rem;
|
|
13884
15139
|
column-gap: 1.75rem;
|
|
13885
15140
|
}
|
|
15141
|
+
.u-column-gap-8 {
|
|
15142
|
+
-moz-column-gap: 1.875rem;
|
|
15143
|
+
column-gap: 1.875rem;
|
|
15144
|
+
}
|
|
13886
15145
|
.u-column-gap-8 {
|
|
13887
15146
|
-moz-column-gap: 2rem;
|
|
13888
15147
|
column-gap: 2rem;
|