@shohojdhara/atomix 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atomix.css +430 -125
- package/dist/atomix.min.css +4 -4
- package/dist/index.d.ts +188 -42
- package/dist/index.esm.js +2049 -1516
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3571 -3055
- 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 +379 -74
- package/dist/themes/boomdevs.min.css +4 -4
- package/dist/themes/esrar.css +430 -125
- package/dist/themes/esrar.min.css +4 -4
- package/dist/themes/mashroom.css +429 -124
- package/dist/themes/mashroom.min.css +4 -4
- package/dist/themes/shaj-default.css +429 -124
- package/dist/themes/shaj-default.min.css +4 -4
- package/package.json +1 -1
- package/src/components/Accordion/Accordion.stories.tsx +684 -21
- package/src/components/Accordion/Accordion.tsx +5 -7
- package/src/components/AtomixGlass/AtomixGlass.stories.tsx +456 -2237
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +2 -2
- package/src/components/AtomixGlass/AtomixGlass.tsx +728 -666
- package/src/components/AtomixGlass/shader-utils.ts +589 -33
- package/src/components/AtomixGlass/stories/Examples.stories.tsx +5800 -0
- package/src/components/AtomixGlass/stories/Modes.stories.tsx +1065 -0
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +1066 -0
- package/src/components/AtomixGlass/stories/ShaderVariants.stories.tsx +397 -0
- package/src/components/AtomixGlass/stories/shared-components.tsx +310 -0
- package/src/components/Badge/Badge.stories.tsx +3 -2
- package/src/components/Badge/Badge.tsx +9 -7
- package/src/components/Button/Button.stories.tsx +501 -20
- package/src/components/Button/Button.tsx +4 -5
- package/src/components/Callout/Callout.tsx +27 -9
- package/src/components/Card/Card.stories.tsx +560 -1
- package/src/components/Card/Card.tsx +1 -1
- package/src/components/DatePicker/DatePicker.stories.tsx +697 -9
- package/src/components/EdgePanel/EdgePanel.stories.tsx +476 -3
- package/src/components/EdgePanel/EdgePanel.tsx +86 -13
- package/src/components/Messages/Messages.stories.tsx +113 -0
- package/src/components/Messages/Messages.tsx +51 -9
- package/src/components/Modal/Modal.stories.tsx +6 -4
- package/src/components/Modal/Modal.tsx +2 -3
- package/src/components/Navigation/Nav/Nav.stories.tsx +469 -0
- package/src/components/Navigation/Nav/Nav.tsx +17 -4
- package/src/components/Navigation/Navbar/Navbar.stories.tsx +413 -0
- package/src/components/Navigation/Navbar/Navbar.tsx +66 -28
- package/src/components/Navigation/SideMenu/SideMenu.stories.tsx +340 -0
- package/src/components/Navigation/SideMenu/SideMenu.tsx +28 -2
- package/src/components/Progress/Progress.tsx +17 -2
- package/src/components/Spinner/Spinner.tsx +17 -2
- package/src/lib/composables/useBarChart.ts +14 -4
- package/src/lib/composables/useChart.ts +223 -370
- package/src/lib/composables/useChartToolbar.ts +11 -20
- package/src/lib/composables/useEdgePanel.ts +81 -35
- package/src/lib/composables/useLineChart.ts +4 -2
- package/src/lib/composables/usePieChart.ts +4 -14
- package/src/lib/constants/components.ts +1 -0
- package/src/lib/types/components.ts +97 -15
- package/src/styles/01-settings/_settings.background.scss +2 -2
- package/src/styles/01-settings/_settings.edge-panel.scss +1 -1
- package/src/styles/02-tools/_tools.utility-api.scss +62 -27
- package/src/styles/06-components/_components.atomix-glass.scss +72 -0
- package/src/styles/06-components/_components.badge.scss +2 -15
- package/src/styles/06-components/_components.callout.scss +10 -5
- package/src/styles/06-components/_components.edge-panel.scss +101 -0
- package/src/styles/06-components/_components.messages.scss +176 -0
- package/src/styles/06-components/_components.modal.scss +13 -3
- package/src/styles/06-components/_components.navbar.scss +12 -1
- package/src/styles/06-components/_components.side-menu.scss +5 -0
- package/src/styles/99-utilities/_index.scss +1 -0
- package/src/styles/99-utilities/_utilities.glass-fixes.scss +1 -0
- package/src/styles/99-utilities/_utilities.opacity.scss +1 -1
- package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +0 -1369
package/dist/atomix.css
CHANGED
|
@@ -1726,6 +1726,61 @@ a, a:hover {
|
|
|
1726
1726
|
margin-left: calc(var(--atomix-avatar-size) * -1 * var(--atomix-avatar-group-stacked-overlap) / 100);
|
|
1727
1727
|
z-index: 1;
|
|
1728
1728
|
}
|
|
1729
|
+
.atomix-glass__layer, .atomix-glass__overlay, .atomix-glass__base, .atomix-glass__border-1, .atomix-glass__border-2 {
|
|
1730
|
+
pointer-events: none;
|
|
1731
|
+
position: absolute;
|
|
1732
|
+
inset: 0;
|
|
1733
|
+
border-radius: inherit;
|
|
1734
|
+
transform: inherit;
|
|
1735
|
+
transition: inherit;
|
|
1736
|
+
}
|
|
1737
|
+
.atomix-glass__border-1, .atomix-glass__border-2 {
|
|
1738
|
+
box-sizing: border-box;
|
|
1739
|
+
padding: 1.5px;
|
|
1740
|
+
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
1741
|
+
-webkit-mask-composite: xor;
|
|
1742
|
+
mask-composite: exclude;
|
|
1743
|
+
box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.5) inset, 0 1px 3px rgba(255, 255, 255, 0.25) inset, 0 1px 4px rgba(0, 0, 0, 0.35);
|
|
1744
|
+
transition-property: transform;
|
|
1745
|
+
}
|
|
1746
|
+
.atomix-glass__border-1 {
|
|
1747
|
+
z-index: 5;
|
|
1748
|
+
opacity: 0.3;
|
|
1749
|
+
mix-blend-mode: screen;
|
|
1750
|
+
}
|
|
1751
|
+
.atomix-glass__border-2 {
|
|
1752
|
+
z-index: 6;
|
|
1753
|
+
}
|
|
1754
|
+
.atomix-glass__hover-1, .atomix-glass__hover-2, .atomix-glass__hover-3 {
|
|
1755
|
+
position: absolute;
|
|
1756
|
+
inset: 0;
|
|
1757
|
+
pointer-events: none;
|
|
1758
|
+
border-radius: inherit;
|
|
1759
|
+
transform: inherit;
|
|
1760
|
+
transition: inherit;
|
|
1761
|
+
transition-property: transform, opacity;
|
|
1762
|
+
}
|
|
1763
|
+
.atomix-glass__hover-1 {
|
|
1764
|
+
opacity: 0;
|
|
1765
|
+
}
|
|
1766
|
+
.atomix-glass__hover-2 {
|
|
1767
|
+
overflow: hidden;
|
|
1768
|
+
opacity: 0;
|
|
1769
|
+
}
|
|
1770
|
+
.atomix-glass__hover-3 {
|
|
1771
|
+
opacity: 0;
|
|
1772
|
+
}
|
|
1773
|
+
.atomix-glass__base {
|
|
1774
|
+
will-change: transform;
|
|
1775
|
+
transition-property: transform, opacity;
|
|
1776
|
+
opacity: 0;
|
|
1777
|
+
}
|
|
1778
|
+
.atomix-glass__overlay {
|
|
1779
|
+
mix-blend-mode: overlay;
|
|
1780
|
+
will-change: transform;
|
|
1781
|
+
transition-property: transform, opacity;
|
|
1782
|
+
opacity: 0;
|
|
1783
|
+
}
|
|
1729
1784
|
.c-badge {
|
|
1730
1785
|
--atomix-tag-font-size: 0.75rem;
|
|
1731
1786
|
--atomix-tag-font-weight: 400;
|
|
@@ -1762,8 +1817,8 @@ a, a:hover {
|
|
|
1762
1817
|
--atomix-tag-padding-y: 0.5rem;
|
|
1763
1818
|
}
|
|
1764
1819
|
.c-badge--glass {
|
|
1765
|
-
background-color: color-mix(in srgb, var(--atomix-tag-bg-color)
|
|
1766
|
-
border: 1px solid color-mix(in srgb, var(--atomix-tag-color)
|
|
1820
|
+
background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 20%, transparent);
|
|
1821
|
+
border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 90%, transparent);
|
|
1767
1822
|
}
|
|
1768
1823
|
.c-badge--primary {
|
|
1769
1824
|
--atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
|
|
@@ -1799,10 +1854,6 @@ a, a:hover {
|
|
|
1799
1854
|
--atomix-tag-color: var(--atomix-light);
|
|
1800
1855
|
border: 1px solid var(--atomix-dark);
|
|
1801
1856
|
}
|
|
1802
|
-
.c-badge-glass {
|
|
1803
|
-
box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
|
|
1804
|
-
border-radius: 999px;
|
|
1805
|
-
}
|
|
1806
1857
|
.c-breadcrumb {
|
|
1807
1858
|
--atomix-breadcrumb-font-size: 0.875rem;
|
|
1808
1859
|
--atomix-breadcrumb-link-padding-y: 0.25rem;
|
|
@@ -5130,7 +5181,7 @@ a, a:hover {
|
|
|
5130
5181
|
--atomix-edge-panel-bg: var(--atomix-body-bg);
|
|
5131
5182
|
--atomix-edge-panel-color: var(--atomix-body-color);
|
|
5132
5183
|
--atomix-edge-panel-shadow: var(--atomix-box-shadow);
|
|
5133
|
-
--atomix-edge-panel-backdrop-bg: var(--atomix-
|
|
5184
|
+
--atomix-edge-panel-backdrop-bg: var(--atomix-dark-bg-subtle);
|
|
5134
5185
|
--atomix-edge-panel-backdrop-opacity: 0.5;
|
|
5135
5186
|
--atomix-edge-panel-backdrop-blur: 10px;
|
|
5136
5187
|
--atomix-edge-panel-animation-duration: 300ms;
|
|
@@ -5384,6 +5435,89 @@ a, a:hover {
|
|
|
5384
5435
|
transform: translateY(100%);
|
|
5385
5436
|
}
|
|
5386
5437
|
}
|
|
5438
|
+
.c-edge-panel--glass {
|
|
5439
|
+
position: absolute;
|
|
5440
|
+
z-index: auto;
|
|
5441
|
+
z-index: initial;
|
|
5442
|
+
}
|
|
5443
|
+
.c-edge-panel--glass .c-edge-panel__container {
|
|
5444
|
+
background: transparent;
|
|
5445
|
+
box-shadow: none;
|
|
5446
|
+
overflow: hidden;
|
|
5447
|
+
border: none;
|
|
5448
|
+
padding: 0;
|
|
5449
|
+
z-index: auto;
|
|
5450
|
+
z-index: initial;
|
|
5451
|
+
will-change: initial;
|
|
5452
|
+
transform: none !important;
|
|
5453
|
+
border-radius: inherit;
|
|
5454
|
+
opacity: 0;
|
|
5455
|
+
transition: opacity 0.3s ease;
|
|
5456
|
+
}
|
|
5457
|
+
.c-edge-panel--glass .c-edge-panel__glass-content {
|
|
5458
|
+
display: flex;
|
|
5459
|
+
flex-direction: column;
|
|
5460
|
+
overflow: hidden;
|
|
5461
|
+
width: 100%;
|
|
5462
|
+
height: 100vh;
|
|
5463
|
+
padding: 0;
|
|
5464
|
+
border-radius: inherit;
|
|
5465
|
+
transition: opacity 0.3s ease;
|
|
5466
|
+
}
|
|
5467
|
+
.c-edge-panel--glass .c-edge-panel__header {
|
|
5468
|
+
background: transparent;
|
|
5469
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
|
5470
|
+
flex-shrink: 0;
|
|
5471
|
+
padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
|
|
5472
|
+
}
|
|
5473
|
+
.c-edge-panel--glass .c-edge-panel__body {
|
|
5474
|
+
background: transparent;
|
|
5475
|
+
flex: 1 1;
|
|
5476
|
+
overflow-y: auto;
|
|
5477
|
+
padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
|
|
5478
|
+
}
|
|
5479
|
+
.c-edge-panel--glass .c-edge-panel__close {
|
|
5480
|
+
background: rgba(255, 255, 255, 0.05);
|
|
5481
|
+
}
|
|
5482
|
+
.c-edge-panel--glass .c-edge-panel__close:hover {
|
|
5483
|
+
background: rgba(255, 255, 255, 0.15);
|
|
5484
|
+
}
|
|
5485
|
+
.c-edge-panel--glass .c-edge-panel__close:focus-visible {
|
|
5486
|
+
outline-color: rgba(255, 255, 255, 0.5);
|
|
5487
|
+
}
|
|
5488
|
+
.c-edge-panel--glass .c-edge-panel__backdrop {
|
|
5489
|
+
animation: fadeIn 0.3s ease forwards;
|
|
5490
|
+
z-index: 0;
|
|
5491
|
+
}
|
|
5492
|
+
.c-edge-panel--glass .c-edge-panel__backdrop.is-animating-out {
|
|
5493
|
+
animation: fadeOut 0.3s ease forwards;
|
|
5494
|
+
}
|
|
5495
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-wrapper {
|
|
5496
|
+
animation: slideInStart 0.3s ease forwards;
|
|
5497
|
+
}
|
|
5498
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-wrapper.is-animating-out {
|
|
5499
|
+
animation: slideOutStart 0.3s ease forwards;
|
|
5500
|
+
}
|
|
5501
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-wrapper {
|
|
5502
|
+
animation: slideInEnd 0.3s ease forwards;
|
|
5503
|
+
}
|
|
5504
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-wrapper.is-animating-out {
|
|
5505
|
+
animation: slideOutEnd 0.3s ease forwards;
|
|
5506
|
+
}
|
|
5507
|
+
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-wrapper {
|
|
5508
|
+
animation: slideInTop 0.3s ease forwards;
|
|
5509
|
+
}
|
|
5510
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-wrapper {
|
|
5511
|
+
animation: slideInBottom 0.3s ease forwards;
|
|
5512
|
+
}
|
|
5513
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__container, .c-edge-panel--glass.c-edge-panel--top .c-edge-panel__container {
|
|
5514
|
+
width: 100vw;
|
|
5515
|
+
height: auto;
|
|
5516
|
+
}
|
|
5517
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-content, .c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-content {
|
|
5518
|
+
width: 100vw;
|
|
5519
|
+
height: auto;
|
|
5520
|
+
}
|
|
5387
5521
|
.c-footer {
|
|
5388
5522
|
--atomix-footer-padding-x: 1rem;
|
|
5389
5523
|
--atomix-footer-padding-y: 3rem;
|
|
@@ -7218,6 +7352,134 @@ a, a:hover {
|
|
|
7218
7352
|
opacity: 0.5;
|
|
7219
7353
|
cursor: not-allowed;
|
|
7220
7354
|
}
|
|
7355
|
+
.c-messages--glass {
|
|
7356
|
+
background: transparent;
|
|
7357
|
+
border: none;
|
|
7358
|
+
padding: 0;
|
|
7359
|
+
}
|
|
7360
|
+
.c-messages--glass .c-messages__glass-content {
|
|
7361
|
+
padding: var(--atomix-messages-padding-y) var(--atomix-messages-padding-x);
|
|
7362
|
+
border-radius: var(--atomix-messages-border-radius);
|
|
7363
|
+
}
|
|
7364
|
+
.c-messages--glass .c-messages__body {
|
|
7365
|
+
border-radius: 0.25rem;
|
|
7366
|
+
padding: 0.5rem;
|
|
7367
|
+
background-color: color-mix(in srgb, var(--atomix-body-bg) 15%, transparent);
|
|
7368
|
+
}
|
|
7369
|
+
.c-messages--glass .c-messages__text {
|
|
7370
|
+
background-color: color-mix(in srgb, var(--atomix-body-bg) 50%, transparent);
|
|
7371
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7372
|
+
backdrop-filter: blur(8px);
|
|
7373
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
7374
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
7375
|
+
}
|
|
7376
|
+
.c-messages--glass .c-messages__content--self .c-messages__text {
|
|
7377
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
7378
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
7379
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7380
|
+
backdrop-filter: blur(8px);
|
|
7381
|
+
}
|
|
7382
|
+
.c-messages--glass .c-messages__content--self .c-messages__file {
|
|
7383
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
7384
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
7385
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7386
|
+
backdrop-filter: blur(8px);
|
|
7387
|
+
}
|
|
7388
|
+
.c-messages--glass .c-messages__file {
|
|
7389
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
7390
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
7391
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7392
|
+
backdrop-filter: blur(8px);
|
|
7393
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
7394
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
7395
|
+
}
|
|
7396
|
+
.c-messages--glass .c-messages__file-icon {
|
|
7397
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
7398
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7399
|
+
backdrop-filter: blur(8px);
|
|
7400
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
7401
|
+
}
|
|
7402
|
+
.c-messages--glass .c-messages__image {
|
|
7403
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
7404
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
7405
|
+
}
|
|
7406
|
+
.c-messages--glass .c-messages__avatar {
|
|
7407
|
+
border: 2px solid rgba(255, 255, 255, 0.4);
|
|
7408
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
7409
|
+
}
|
|
7410
|
+
.c-messages--glass .c-messages__name {
|
|
7411
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
7412
|
+
font-weight: 600;
|
|
7413
|
+
}
|
|
7414
|
+
.c-messages--glass .c-messages__time {
|
|
7415
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
7416
|
+
}
|
|
7417
|
+
.c-messages--glass .c-messages__form {
|
|
7418
|
+
padding-top: 0.75rem;
|
|
7419
|
+
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
7420
|
+
margin-top: 1rem;
|
|
7421
|
+
}
|
|
7422
|
+
.c-messages--glass .c-messages__input {
|
|
7423
|
+
background: rgba(255, 255, 255, 0.3);
|
|
7424
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7425
|
+
backdrop-filter: blur(8px);
|
|
7426
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
7427
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
|
|
7428
|
+
color: var(--atomix-primary-text-emphasis);
|
|
7429
|
+
}
|
|
7430
|
+
.c-messages--glass .c-messages__input:focus {
|
|
7431
|
+
background: rgba(255, 255, 255, 0.45);
|
|
7432
|
+
border-color: var(--atomix-primary);
|
|
7433
|
+
box-shadow: 0 0 0 3px rgba(var(--atomix-primary-rgb), 0.15);
|
|
7434
|
+
}
|
|
7435
|
+
.c-messages--glass .c-messages__input::-moz-placeholder {
|
|
7436
|
+
opacity: 0.8;
|
|
7437
|
+
color: var(--atomix-primary-text-emphasis);
|
|
7438
|
+
}
|
|
7439
|
+
.c-messages--glass .c-messages__input::placeholder {
|
|
7440
|
+
opacity: 0.8;
|
|
7441
|
+
color: var(--atomix-primary-text-emphasis);
|
|
7442
|
+
}
|
|
7443
|
+
.c-messages--glass .c-messages__option {
|
|
7444
|
+
padding: 0.375rem;
|
|
7445
|
+
border-radius: 0.25rem;
|
|
7446
|
+
transition: background-color 0.2s ease;
|
|
7447
|
+
}
|
|
7448
|
+
.c-messages--glass .c-messages__option:hover:not(:disabled) {
|
|
7449
|
+
background: rgba(var(--atomix-secondary-bg-rgb), 0.4);
|
|
7450
|
+
}
|
|
7451
|
+
.c-messages--glass .c-messages__option:focus-visible {
|
|
7452
|
+
outline: 2px solid var(--atomix-primary);
|
|
7453
|
+
outline-offset: 2px;
|
|
7454
|
+
}
|
|
7455
|
+
.c-messages--glass .c-messages__option-icon {
|
|
7456
|
+
opacity: 0.8;
|
|
7457
|
+
transition: opacity 0.2s ease;
|
|
7458
|
+
}
|
|
7459
|
+
.c-messages__option:hover .c-messages--glass .c-messages__option-icon {
|
|
7460
|
+
opacity: 1;
|
|
7461
|
+
}
|
|
7462
|
+
.c-messages--glass .c-messages__submit {
|
|
7463
|
+
background: rgba(var(--atomix-primary-rgb), 0.9);
|
|
7464
|
+
-webkit-backdrop-filter: blur(8px);
|
|
7465
|
+
backdrop-filter: blur(8px);
|
|
7466
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.4);
|
|
7467
|
+
box-shadow: 0 2px 8px rgba(var(--atomix-primary-rgb), 0.3);
|
|
7468
|
+
transition: all 0.2s ease;
|
|
7469
|
+
}
|
|
7470
|
+
.c-messages--glass .c-messages__submit:hover:not(:disabled) {
|
|
7471
|
+
background: rgba(var(--atomix-primary-rgb), 1);
|
|
7472
|
+
box-shadow: 0 4px 12px rgba(var(--atomix-primary-rgb), 0.4);
|
|
7473
|
+
transform: translateY(-1px);
|
|
7474
|
+
}
|
|
7475
|
+
.c-messages--glass .c-messages__submit:active:not(:disabled) {
|
|
7476
|
+
transform: translateY(0);
|
|
7477
|
+
box-shadow: 0 1px 4px rgba(var(--atomix-primary-rgb), 0.3);
|
|
7478
|
+
}
|
|
7479
|
+
.c-messages--glass .c-messages__submit:disabled {
|
|
7480
|
+
opacity: 0.5;
|
|
7481
|
+
background: rgba(var(--atomix-primary-rgb), 0.5);
|
|
7482
|
+
}
|
|
7221
7483
|
.c-modal {
|
|
7222
7484
|
--atomix-modal-inner-padding: 1rem;
|
|
7223
7485
|
--atomix-modal-content-color: ;
|
|
@@ -7240,7 +7502,7 @@ a, a:hover {
|
|
|
7240
7502
|
--atomix-modal-lg: 62.5rem;
|
|
7241
7503
|
--atomix-modal-xl: 71.25rem;
|
|
7242
7504
|
--atomix-modal-width: var(--atomix-modal-md);
|
|
7243
|
-
position:
|
|
7505
|
+
position: absolute;
|
|
7244
7506
|
inset: 0;
|
|
7245
7507
|
width: 100%;
|
|
7246
7508
|
height: 100%;
|
|
@@ -7264,10 +7526,8 @@ a, a:hover {
|
|
|
7264
7526
|
margin-left: auto;
|
|
7265
7527
|
margin-right: auto;
|
|
7266
7528
|
opacity: 0;
|
|
7267
|
-
z-index: 2;
|
|
7268
7529
|
pointer-events: none;
|
|
7269
7530
|
transition: 0.3s ease;
|
|
7270
|
-
will-change: transform;
|
|
7271
7531
|
}
|
|
7272
7532
|
.c-modal__content {
|
|
7273
7533
|
display: flex;
|
|
@@ -7331,6 +7591,9 @@ a, a:hover {
|
|
|
7331
7591
|
.c-modal--xl {
|
|
7332
7592
|
--atomix-modal-width: var(--atomix-modal-xl);
|
|
7333
7593
|
}
|
|
7594
|
+
.c-modal--glass .c-modal .c-modal--glass .c-modal__content {
|
|
7595
|
+
background-color: color-mix(in srgb, var(--atomix-modal-content-bg) 50%, transparent);
|
|
7596
|
+
}
|
|
7334
7597
|
.c-modal.is-open .c-modal__backdrop {
|
|
7335
7598
|
opacity: var(--atomix-modal-backdrop-opacity);
|
|
7336
7599
|
}
|
|
@@ -7653,8 +7916,10 @@ a, a:hover {
|
|
|
7653
7916
|
display: flex !important;
|
|
7654
7917
|
}
|
|
7655
7918
|
}
|
|
7656
|
-
.c-navbar--fixed, .c-navbar--fixed-bottom {
|
|
7919
|
+
.c-navbar--fixed:not(.c-navbar--glass), .c-navbar--fixed-bottom:not(.c-navbar--glass) {
|
|
7657
7920
|
position: fixed;
|
|
7921
|
+
}
|
|
7922
|
+
.c-navbar--fixed, .c-navbar--fixed-bottom {
|
|
7658
7923
|
left: 0;
|
|
7659
7924
|
right: 0;
|
|
7660
7925
|
width: 100%;
|
|
@@ -7663,12 +7928,18 @@ a, a:hover {
|
|
|
7663
7928
|
.c-navbar--fixed {
|
|
7664
7929
|
top: 0;
|
|
7665
7930
|
}
|
|
7931
|
+
.c-navbar--glass {
|
|
7932
|
+
position: relative;
|
|
7933
|
+
background-color: transparent;
|
|
7934
|
+
border-bottom: none;
|
|
7935
|
+
}
|
|
7666
7936
|
.c-navbar--fixed-bottom {
|
|
7667
7937
|
bottom: 0;
|
|
7668
7938
|
}
|
|
7669
7939
|
.c-navbar--fixed-bottom .c-nav__dropdown-menu {
|
|
7670
7940
|
top: auto;
|
|
7671
7941
|
bottom: 100%;
|
|
7942
|
+
z-index: 999;
|
|
7672
7943
|
}
|
|
7673
7944
|
.c-navbar--fixed-bottom .c-nav--end .c-nav__dropdown-menu {
|
|
7674
7945
|
left: 50%;
|
|
@@ -8009,7 +8280,7 @@ a, a:hover {
|
|
|
8009
8280
|
--atomix-callout-icon-color: var(--atomix-light);
|
|
8010
8281
|
}
|
|
8011
8282
|
.c-callout--glass {
|
|
8012
|
-
background
|
|
8283
|
+
background: none;
|
|
8013
8284
|
padding: 0;
|
|
8014
8285
|
border: none;
|
|
8015
8286
|
display: block;
|
|
@@ -8019,10 +8290,11 @@ a, a:hover {
|
|
|
8019
8290
|
justify-content: center;
|
|
8020
8291
|
align-items: center;
|
|
8021
8292
|
padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
|
|
8022
|
-
border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
|
|
8293
|
+
border: var(--atomix-callout-border-witdh) solid color-mix(in srgb, var(--atomix-callout-border-color) 20%, transparent);
|
|
8023
8294
|
max-width: var(--atomix-callout-width);
|
|
8024
8295
|
border-radius: var(--atomix-callout-border-radius);
|
|
8025
8296
|
width: 100%;
|
|
8297
|
+
background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
|
|
8026
8298
|
}
|
|
8027
8299
|
.c-callout--glass .c-callout__title {
|
|
8028
8300
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
@@ -9197,6 +9469,10 @@ a, a:hover {
|
|
|
9197
9469
|
.c-side-menu__link-text {
|
|
9198
9470
|
flex: 1 1;
|
|
9199
9471
|
}
|
|
9472
|
+
.c-side-menu--glass {
|
|
9473
|
+
background-color: transparent;
|
|
9474
|
+
border-bottom: none;
|
|
9475
|
+
}
|
|
9200
9476
|
.c-side-menu.is-open .c-side-menu__toggler-icon {
|
|
9201
9477
|
transform: rotate(90deg);
|
|
9202
9478
|
}
|
|
@@ -11613,6 +11889,35 @@ body.is-open-photoviewer {
|
|
|
11613
11889
|
display: block !important;
|
|
11614
11890
|
clear: both !important;
|
|
11615
11891
|
}
|
|
11892
|
+
.u-glass-clean-root {
|
|
11893
|
+
isolation: initial !important;
|
|
11894
|
+
contain: none !important;
|
|
11895
|
+
transform-style: flat !important;
|
|
11896
|
+
will-change: auto !important;
|
|
11897
|
+
transform: none !important;
|
|
11898
|
+
z-index: auto;
|
|
11899
|
+
z-index: initial;
|
|
11900
|
+
}
|
|
11901
|
+
.u-glass-debug {
|
|
11902
|
+
outline: 2px dashed red !important;
|
|
11903
|
+
}
|
|
11904
|
+
.u-glass-debug::after {
|
|
11905
|
+
content: "Glass Debug";
|
|
11906
|
+
position: absolute;
|
|
11907
|
+
top: -20px;
|
|
11908
|
+
left: 0;
|
|
11909
|
+
background: red;
|
|
11910
|
+
color: white;
|
|
11911
|
+
font-size: 10px;
|
|
11912
|
+
padding: 2px 4px;
|
|
11913
|
+
z-index: 9999;
|
|
11914
|
+
}
|
|
11915
|
+
@media (prefers-reduced-motion: reduce) {
|
|
11916
|
+
.u-glass-no-motion {
|
|
11917
|
+
transition: none !important;
|
|
11918
|
+
animation: none !important;
|
|
11919
|
+
}
|
|
11920
|
+
}
|
|
11616
11921
|
.u-link-primary {
|
|
11617
11922
|
color: RGBA(var(--atomix-primary-rgb), var(--atomix-u-link-opacity, 1)) !important;
|
|
11618
11923
|
text-decoration-color: RGBA(var(--atomix-primary-rgb), var(--atomix-u-link-underline-opacity, 1)) !important;
|
|
@@ -11863,19 +12168,19 @@ body.is-open-photoviewer {
|
|
|
11863
12168
|
border-width: 5px;
|
|
11864
12169
|
}
|
|
11865
12170
|
.u-border-opacity-10 {
|
|
11866
|
-
: 0.1;
|
|
12171
|
+
--atomix-u-u-border-opacity-10: 0.1;
|
|
11867
12172
|
}
|
|
11868
12173
|
.u-border-opacity-25 {
|
|
11869
|
-
: 0.25;
|
|
12174
|
+
--atomix-u-u-border-opacity-25: 0.25;
|
|
11870
12175
|
}
|
|
11871
12176
|
.u-border-opacity-50 {
|
|
11872
|
-
: 0.5;
|
|
12177
|
+
--atomix-u-u-border-opacity-50: 0.5;
|
|
11873
12178
|
}
|
|
11874
12179
|
.u-border-opacity-75 {
|
|
11875
|
-
: 0.75;
|
|
12180
|
+
--atomix-u-u-border-opacity-75: 0.75;
|
|
11876
12181
|
}
|
|
11877
12182
|
.u-border-opacity-100 {
|
|
11878
|
-
: 1;
|
|
12183
|
+
--atomix-u-u-border-opacity-100: 1;
|
|
11879
12184
|
}
|
|
11880
12185
|
.u-rounded {
|
|
11881
12186
|
border-radius: var(--atomix-border-radius);
|
|
@@ -12211,27 +12516,27 @@ body.is-open-photoviewer {
|
|
|
12211
12516
|
order: 6;
|
|
12212
12517
|
}
|
|
12213
12518
|
.u-link-opacityhover-10 {
|
|
12214
|
-
: 0.1;
|
|
12519
|
+
--atomix-u-u-link-opacity-10: 0.1;
|
|
12215
12520
|
}
|
|
12216
|
-
.u-link-
|
|
12217
|
-
: 0.25;
|
|
12521
|
+
.u-link-opacityhover-25 {
|
|
12522
|
+
--atomix-u-u-link-opacity-25: 0.25;
|
|
12218
12523
|
}
|
|
12219
|
-
.u-link-
|
|
12220
|
-
: 0.5;
|
|
12524
|
+
.u-link-opacityhover-50 {
|
|
12525
|
+
--atomix-u-u-link-opacity-50: 0.5;
|
|
12221
12526
|
}
|
|
12222
|
-
.u-link-
|
|
12223
|
-
: 0.75;
|
|
12527
|
+
.u-link-opacityhover-75 {
|
|
12528
|
+
--atomix-u-u-link-opacity-75: 0.75;
|
|
12224
12529
|
}
|
|
12225
|
-
.u-link-
|
|
12226
|
-
: 1;
|
|
12530
|
+
.u-link-opacityhover-100 {
|
|
12531
|
+
--atomix-u-u-link-opacity-100: 1;
|
|
12227
12532
|
}
|
|
12228
12533
|
.u-link-offsethover-1 {
|
|
12229
12534
|
text-underline-offset: 0.125em;
|
|
12230
12535
|
}
|
|
12231
|
-
.u-link-
|
|
12536
|
+
.u-link-offsethover-2 {
|
|
12232
12537
|
text-underline-offset: 0.25em;
|
|
12233
12538
|
}
|
|
12234
|
-
.u-link-
|
|
12539
|
+
.u-link-offsethover-3 {
|
|
12235
12540
|
text-underline-offset: 0.375em;
|
|
12236
12541
|
}
|
|
12237
12542
|
.u-link-underline-primary {
|
|
@@ -12268,22 +12573,22 @@ body.is-open-photoviewer {
|
|
|
12268
12573
|
text-decoration-color: rgba(var(--atomix-link-color-rgb), var(--atomix-u-link-underline-opacity, 1));
|
|
12269
12574
|
}
|
|
12270
12575
|
.u-link-underline-opacityhover-0 {
|
|
12271
|
-
: 0;
|
|
12576
|
+
--atomix-u-u-link-underline-opacity-0: 0;
|
|
12272
12577
|
}
|
|
12273
|
-
.u-link-underline-
|
|
12274
|
-
: 0.1;
|
|
12578
|
+
.u-link-underline-opacityhover-10 {
|
|
12579
|
+
--atomix-u-u-link-underline-opacity-10: 0.1;
|
|
12275
12580
|
}
|
|
12276
|
-
.u-link-underline-
|
|
12277
|
-
: 0.25;
|
|
12581
|
+
.u-link-underline-opacityhover-25 {
|
|
12582
|
+
--atomix-u-u-link-underline-opacity-25: 0.25;
|
|
12278
12583
|
}
|
|
12279
|
-
.u-link-underline-
|
|
12280
|
-
: 0.5;
|
|
12584
|
+
.u-link-underline-opacityhover-50 {
|
|
12585
|
+
--atomix-u-u-link-underline-opacity-50: 0.5;
|
|
12281
12586
|
}
|
|
12282
|
-
.u-link-underline-
|
|
12283
|
-
: 0.75;
|
|
12587
|
+
.u-link-underline-opacityhover-75 {
|
|
12588
|
+
--atomix-u-u-link-underline-opacity-75: 0.75;
|
|
12284
12589
|
}
|
|
12285
|
-
.u-link-underline-
|
|
12286
|
-
: 1;
|
|
12590
|
+
.u-link-underline-opacityhover-100 {
|
|
12591
|
+
--atomix-u-u-link-underline-opacity-100: 1;
|
|
12287
12592
|
}
|
|
12288
12593
|
.u-object-fit-contain {
|
|
12289
12594
|
-o-object-fit: contain;
|
|
@@ -12527,19 +12832,19 @@ body.is-open-photoviewer {
|
|
|
12527
12832
|
.u-m-1 {
|
|
12528
12833
|
margin: 0.25rem;
|
|
12529
12834
|
}
|
|
12530
|
-
.u-m-
|
|
12835
|
+
.u-m-1\.5 {
|
|
12531
12836
|
margin: 0.375rem;
|
|
12532
12837
|
}
|
|
12533
12838
|
.u-m-2 {
|
|
12534
12839
|
margin: 0.5rem;
|
|
12535
12840
|
}
|
|
12536
|
-
.u-m-
|
|
12841
|
+
.u-m-2\.5 {
|
|
12537
12842
|
margin: 0.625rem;
|
|
12538
12843
|
}
|
|
12539
12844
|
.u-m-3 {
|
|
12540
12845
|
margin: 0.75rem;
|
|
12541
12846
|
}
|
|
12542
|
-
.u-m-
|
|
12847
|
+
.u-m-3\.5 {
|
|
12543
12848
|
margin: 0.875rem;
|
|
12544
12849
|
}
|
|
12545
12850
|
.u-m-4 {
|
|
@@ -12548,7 +12853,7 @@ body.is-open-photoviewer {
|
|
|
12548
12853
|
.u-m-5 {
|
|
12549
12854
|
margin: 1.25rem;
|
|
12550
12855
|
}
|
|
12551
|
-
.u-m-
|
|
12856
|
+
.u-m-5\.5 {
|
|
12552
12857
|
margin: 1.375rem;
|
|
12553
12858
|
}
|
|
12554
12859
|
.u-m-6 {
|
|
@@ -12557,7 +12862,7 @@ body.is-open-photoviewer {
|
|
|
12557
12862
|
.u-m-7 {
|
|
12558
12863
|
margin: 1.75rem;
|
|
12559
12864
|
}
|
|
12560
|
-
.u-m-
|
|
12865
|
+
.u-m-7\.5 {
|
|
12561
12866
|
margin: 1.875rem;
|
|
12562
12867
|
}
|
|
12563
12868
|
.u-m-8 {
|
|
@@ -12640,7 +12945,7 @@ body.is-open-photoviewer {
|
|
|
12640
12945
|
margin-right: 0.25rem;
|
|
12641
12946
|
margin-left: 0.25rem;
|
|
12642
12947
|
}
|
|
12643
|
-
.u-mx-
|
|
12948
|
+
.u-mx-1\.5 {
|
|
12644
12949
|
margin-right: 0.375rem;
|
|
12645
12950
|
margin-left: 0.375rem;
|
|
12646
12951
|
}
|
|
@@ -12648,7 +12953,7 @@ body.is-open-photoviewer {
|
|
|
12648
12953
|
margin-right: 0.5rem;
|
|
12649
12954
|
margin-left: 0.5rem;
|
|
12650
12955
|
}
|
|
12651
|
-
.u-mx-
|
|
12956
|
+
.u-mx-2\.5 {
|
|
12652
12957
|
margin-right: 0.625rem;
|
|
12653
12958
|
margin-left: 0.625rem;
|
|
12654
12959
|
}
|
|
@@ -12656,7 +12961,7 @@ body.is-open-photoviewer {
|
|
|
12656
12961
|
margin-right: 0.75rem;
|
|
12657
12962
|
margin-left: 0.75rem;
|
|
12658
12963
|
}
|
|
12659
|
-
.u-mx-
|
|
12964
|
+
.u-mx-3\.5 {
|
|
12660
12965
|
margin-right: 0.875rem;
|
|
12661
12966
|
margin-left: 0.875rem;
|
|
12662
12967
|
}
|
|
@@ -12668,7 +12973,7 @@ body.is-open-photoviewer {
|
|
|
12668
12973
|
margin-right: 1.25rem;
|
|
12669
12974
|
margin-left: 1.25rem;
|
|
12670
12975
|
}
|
|
12671
|
-
.u-mx-
|
|
12976
|
+
.u-mx-5\.5 {
|
|
12672
12977
|
margin-right: 1.375rem;
|
|
12673
12978
|
margin-left: 1.375rem;
|
|
12674
12979
|
}
|
|
@@ -12680,7 +12985,7 @@ body.is-open-photoviewer {
|
|
|
12680
12985
|
margin-right: 1.75rem;
|
|
12681
12986
|
margin-left: 1.75rem;
|
|
12682
12987
|
}
|
|
12683
|
-
.u-mx-
|
|
12988
|
+
.u-mx-7\.5 {
|
|
12684
12989
|
margin-right: 1.875rem;
|
|
12685
12990
|
margin-left: 1.875rem;
|
|
12686
12991
|
}
|
|
@@ -12788,7 +13093,7 @@ body.is-open-photoviewer {
|
|
|
12788
13093
|
margin-top: 0.25rem;
|
|
12789
13094
|
margin-bottom: 0.25rem;
|
|
12790
13095
|
}
|
|
12791
|
-
.u-my-
|
|
13096
|
+
.u-my-1\.5 {
|
|
12792
13097
|
margin-top: 0.375rem;
|
|
12793
13098
|
margin-bottom: 0.375rem;
|
|
12794
13099
|
}
|
|
@@ -12796,7 +13101,7 @@ body.is-open-photoviewer {
|
|
|
12796
13101
|
margin-top: 0.5rem;
|
|
12797
13102
|
margin-bottom: 0.5rem;
|
|
12798
13103
|
}
|
|
12799
|
-
.u-my-
|
|
13104
|
+
.u-my-2\.5 {
|
|
12800
13105
|
margin-top: 0.625rem;
|
|
12801
13106
|
margin-bottom: 0.625rem;
|
|
12802
13107
|
}
|
|
@@ -12804,7 +13109,7 @@ body.is-open-photoviewer {
|
|
|
12804
13109
|
margin-top: 0.75rem;
|
|
12805
13110
|
margin-bottom: 0.75rem;
|
|
12806
13111
|
}
|
|
12807
|
-
.u-my-
|
|
13112
|
+
.u-my-3\.5 {
|
|
12808
13113
|
margin-top: 0.875rem;
|
|
12809
13114
|
margin-bottom: 0.875rem;
|
|
12810
13115
|
}
|
|
@@ -12816,7 +13121,7 @@ body.is-open-photoviewer {
|
|
|
12816
13121
|
margin-top: 1.25rem;
|
|
12817
13122
|
margin-bottom: 1.25rem;
|
|
12818
13123
|
}
|
|
12819
|
-
.u-my-
|
|
13124
|
+
.u-my-5\.5 {
|
|
12820
13125
|
margin-top: 1.375rem;
|
|
12821
13126
|
margin-bottom: 1.375rem;
|
|
12822
13127
|
}
|
|
@@ -12828,7 +13133,7 @@ body.is-open-photoviewer {
|
|
|
12828
13133
|
margin-top: 1.75rem;
|
|
12829
13134
|
margin-bottom: 1.75rem;
|
|
12830
13135
|
}
|
|
12831
|
-
.u-my-
|
|
13136
|
+
.u-my-7\.5 {
|
|
12832
13137
|
margin-top: 1.875rem;
|
|
12833
13138
|
margin-bottom: 1.875rem;
|
|
12834
13139
|
}
|
|
@@ -12934,19 +13239,19 @@ body.is-open-photoviewer {
|
|
|
12934
13239
|
.u-mt-1 {
|
|
12935
13240
|
margin-top: 0.25rem;
|
|
12936
13241
|
}
|
|
12937
|
-
.u-mt-
|
|
13242
|
+
.u-mt-1\.5 {
|
|
12938
13243
|
margin-top: 0.375rem;
|
|
12939
13244
|
}
|
|
12940
13245
|
.u-mt-2 {
|
|
12941
13246
|
margin-top: 0.5rem;
|
|
12942
13247
|
}
|
|
12943
|
-
.u-mt-
|
|
13248
|
+
.u-mt-2\.5 {
|
|
12944
13249
|
margin-top: 0.625rem;
|
|
12945
13250
|
}
|
|
12946
13251
|
.u-mt-3 {
|
|
12947
13252
|
margin-top: 0.75rem;
|
|
12948
13253
|
}
|
|
12949
|
-
.u-mt-
|
|
13254
|
+
.u-mt-3\.5 {
|
|
12950
13255
|
margin-top: 0.875rem;
|
|
12951
13256
|
}
|
|
12952
13257
|
.u-mt-4 {
|
|
@@ -12955,7 +13260,7 @@ body.is-open-photoviewer {
|
|
|
12955
13260
|
.u-mt-5 {
|
|
12956
13261
|
margin-top: 1.25rem;
|
|
12957
13262
|
}
|
|
12958
|
-
.u-mt-
|
|
13263
|
+
.u-mt-5\.5 {
|
|
12959
13264
|
margin-top: 1.375rem;
|
|
12960
13265
|
}
|
|
12961
13266
|
.u-mt-6 {
|
|
@@ -12964,7 +13269,7 @@ body.is-open-photoviewer {
|
|
|
12964
13269
|
.u-mt-7 {
|
|
12965
13270
|
margin-top: 1.75rem;
|
|
12966
13271
|
}
|
|
12967
|
-
.u-mt-
|
|
13272
|
+
.u-mt-7\.5 {
|
|
12968
13273
|
margin-top: 1.875rem;
|
|
12969
13274
|
}
|
|
12970
13275
|
.u-mt-8 {
|
|
@@ -13045,19 +13350,19 @@ body.is-open-photoviewer {
|
|
|
13045
13350
|
.u-me-1 {
|
|
13046
13351
|
margin-right: 0.25rem;
|
|
13047
13352
|
}
|
|
13048
|
-
.u-me-
|
|
13353
|
+
.u-me-1\.5 {
|
|
13049
13354
|
margin-right: 0.375rem;
|
|
13050
13355
|
}
|
|
13051
13356
|
.u-me-2 {
|
|
13052
13357
|
margin-right: 0.5rem;
|
|
13053
13358
|
}
|
|
13054
|
-
.u-me-
|
|
13359
|
+
.u-me-2\.5 {
|
|
13055
13360
|
margin-right: 0.625rem;
|
|
13056
13361
|
}
|
|
13057
13362
|
.u-me-3 {
|
|
13058
13363
|
margin-right: 0.75rem;
|
|
13059
13364
|
}
|
|
13060
|
-
.u-me-
|
|
13365
|
+
.u-me-3\.5 {
|
|
13061
13366
|
margin-right: 0.875rem;
|
|
13062
13367
|
}
|
|
13063
13368
|
.u-me-4 {
|
|
@@ -13066,7 +13371,7 @@ body.is-open-photoviewer {
|
|
|
13066
13371
|
.u-me-5 {
|
|
13067
13372
|
margin-right: 1.25rem;
|
|
13068
13373
|
}
|
|
13069
|
-
.u-me-
|
|
13374
|
+
.u-me-5\.5 {
|
|
13070
13375
|
margin-right: 1.375rem;
|
|
13071
13376
|
}
|
|
13072
13377
|
.u-me-6 {
|
|
@@ -13075,7 +13380,7 @@ body.is-open-photoviewer {
|
|
|
13075
13380
|
.u-me-7 {
|
|
13076
13381
|
margin-right: 1.75rem;
|
|
13077
13382
|
}
|
|
13078
|
-
.u-me-
|
|
13383
|
+
.u-me-7\.5 {
|
|
13079
13384
|
margin-right: 1.875rem;
|
|
13080
13385
|
}
|
|
13081
13386
|
.u-me-8 {
|
|
@@ -13156,19 +13461,19 @@ body.is-open-photoviewer {
|
|
|
13156
13461
|
.u-mb-1 {
|
|
13157
13462
|
margin-bottom: 0.25rem;
|
|
13158
13463
|
}
|
|
13159
|
-
.u-mb-
|
|
13464
|
+
.u-mb-1\.5 {
|
|
13160
13465
|
margin-bottom: 0.375rem;
|
|
13161
13466
|
}
|
|
13162
13467
|
.u-mb-2 {
|
|
13163
13468
|
margin-bottom: 0.5rem;
|
|
13164
13469
|
}
|
|
13165
|
-
.u-mb-
|
|
13470
|
+
.u-mb-2\.5 {
|
|
13166
13471
|
margin-bottom: 0.625rem;
|
|
13167
13472
|
}
|
|
13168
13473
|
.u-mb-3 {
|
|
13169
13474
|
margin-bottom: 0.75rem;
|
|
13170
13475
|
}
|
|
13171
|
-
.u-mb-
|
|
13476
|
+
.u-mb-3\.5 {
|
|
13172
13477
|
margin-bottom: 0.875rem;
|
|
13173
13478
|
}
|
|
13174
13479
|
.u-mb-4 {
|
|
@@ -13177,7 +13482,7 @@ body.is-open-photoviewer {
|
|
|
13177
13482
|
.u-mb-5 {
|
|
13178
13483
|
margin-bottom: 1.25rem;
|
|
13179
13484
|
}
|
|
13180
|
-
.u-mb-
|
|
13485
|
+
.u-mb-5\.5 {
|
|
13181
13486
|
margin-bottom: 1.375rem;
|
|
13182
13487
|
}
|
|
13183
13488
|
.u-mb-6 {
|
|
@@ -13186,7 +13491,7 @@ body.is-open-photoviewer {
|
|
|
13186
13491
|
.u-mb-7 {
|
|
13187
13492
|
margin-bottom: 1.75rem;
|
|
13188
13493
|
}
|
|
13189
|
-
.u-mb-
|
|
13494
|
+
.u-mb-7\.5 {
|
|
13190
13495
|
margin-bottom: 1.875rem;
|
|
13191
13496
|
}
|
|
13192
13497
|
.u-mb-8 {
|
|
@@ -13267,19 +13572,19 @@ body.is-open-photoviewer {
|
|
|
13267
13572
|
.u-ms-1 {
|
|
13268
13573
|
margin-left: 0.25rem;
|
|
13269
13574
|
}
|
|
13270
|
-
.u-ms-
|
|
13575
|
+
.u-ms-1\.5 {
|
|
13271
13576
|
margin-left: 0.375rem;
|
|
13272
13577
|
}
|
|
13273
13578
|
.u-ms-2 {
|
|
13274
13579
|
margin-left: 0.5rem;
|
|
13275
13580
|
}
|
|
13276
|
-
.u-ms-
|
|
13581
|
+
.u-ms-2\.5 {
|
|
13277
13582
|
margin-left: 0.625rem;
|
|
13278
13583
|
}
|
|
13279
13584
|
.u-ms-3 {
|
|
13280
13585
|
margin-left: 0.75rem;
|
|
13281
13586
|
}
|
|
13282
|
-
.u-ms-
|
|
13587
|
+
.u-ms-3\.5 {
|
|
13283
13588
|
margin-left: 0.875rem;
|
|
13284
13589
|
}
|
|
13285
13590
|
.u-ms-4 {
|
|
@@ -13288,7 +13593,7 @@ body.is-open-photoviewer {
|
|
|
13288
13593
|
.u-ms-5 {
|
|
13289
13594
|
margin-left: 1.25rem;
|
|
13290
13595
|
}
|
|
13291
|
-
.u-ms-
|
|
13596
|
+
.u-ms-5\.5 {
|
|
13292
13597
|
margin-left: 1.375rem;
|
|
13293
13598
|
}
|
|
13294
13599
|
.u-ms-6 {
|
|
@@ -13297,7 +13602,7 @@ body.is-open-photoviewer {
|
|
|
13297
13602
|
.u-ms-7 {
|
|
13298
13603
|
margin-left: 1.75rem;
|
|
13299
13604
|
}
|
|
13300
|
-
.u-ms-
|
|
13605
|
+
.u-ms-7\.5 {
|
|
13301
13606
|
margin-left: 1.875rem;
|
|
13302
13607
|
}
|
|
13303
13608
|
.u-ms-8 {
|
|
@@ -13378,19 +13683,19 @@ body.is-open-photoviewer {
|
|
|
13378
13683
|
.u-p-1 {
|
|
13379
13684
|
padding: 0.25rem;
|
|
13380
13685
|
}
|
|
13381
|
-
.u-p-
|
|
13686
|
+
.u-p-1\.5 {
|
|
13382
13687
|
padding: 0.375rem;
|
|
13383
13688
|
}
|
|
13384
13689
|
.u-p-2 {
|
|
13385
13690
|
padding: 0.5rem;
|
|
13386
13691
|
}
|
|
13387
|
-
.u-p-
|
|
13692
|
+
.u-p-2\.5 {
|
|
13388
13693
|
padding: 0.625rem;
|
|
13389
13694
|
}
|
|
13390
13695
|
.u-p-3 {
|
|
13391
13696
|
padding: 0.75rem;
|
|
13392
13697
|
}
|
|
13393
|
-
.u-p-
|
|
13698
|
+
.u-p-3\.5 {
|
|
13394
13699
|
padding: 0.875rem;
|
|
13395
13700
|
}
|
|
13396
13701
|
.u-p-4 {
|
|
@@ -13399,7 +13704,7 @@ body.is-open-photoviewer {
|
|
|
13399
13704
|
.u-p-5 {
|
|
13400
13705
|
padding: 1.25rem;
|
|
13401
13706
|
}
|
|
13402
|
-
.u-p-
|
|
13707
|
+
.u-p-5\.5 {
|
|
13403
13708
|
padding: 1.375rem;
|
|
13404
13709
|
}
|
|
13405
13710
|
.u-p-6 {
|
|
@@ -13408,7 +13713,7 @@ body.is-open-photoviewer {
|
|
|
13408
13713
|
.u-p-7 {
|
|
13409
13714
|
padding: 1.75rem;
|
|
13410
13715
|
}
|
|
13411
|
-
.u-p-
|
|
13716
|
+
.u-p-7\.5 {
|
|
13412
13717
|
padding: 1.875rem;
|
|
13413
13718
|
}
|
|
13414
13719
|
.u-p-8 {
|
|
@@ -13488,7 +13793,7 @@ body.is-open-photoviewer {
|
|
|
13488
13793
|
padding-right: 0.25rem;
|
|
13489
13794
|
padding-left: 0.25rem;
|
|
13490
13795
|
}
|
|
13491
|
-
.u-px-
|
|
13796
|
+
.u-px-1\.5 {
|
|
13492
13797
|
padding-right: 0.375rem;
|
|
13493
13798
|
padding-left: 0.375rem;
|
|
13494
13799
|
}
|
|
@@ -13496,7 +13801,7 @@ body.is-open-photoviewer {
|
|
|
13496
13801
|
padding-right: 0.5rem;
|
|
13497
13802
|
padding-left: 0.5rem;
|
|
13498
13803
|
}
|
|
13499
|
-
.u-px-
|
|
13804
|
+
.u-px-2\.5 {
|
|
13500
13805
|
padding-right: 0.625rem;
|
|
13501
13806
|
padding-left: 0.625rem;
|
|
13502
13807
|
}
|
|
@@ -13504,7 +13809,7 @@ body.is-open-photoviewer {
|
|
|
13504
13809
|
padding-right: 0.75rem;
|
|
13505
13810
|
padding-left: 0.75rem;
|
|
13506
13811
|
}
|
|
13507
|
-
.u-px-
|
|
13812
|
+
.u-px-3\.5 {
|
|
13508
13813
|
padding-right: 0.875rem;
|
|
13509
13814
|
padding-left: 0.875rem;
|
|
13510
13815
|
}
|
|
@@ -13516,7 +13821,7 @@ body.is-open-photoviewer {
|
|
|
13516
13821
|
padding-right: 1.25rem;
|
|
13517
13822
|
padding-left: 1.25rem;
|
|
13518
13823
|
}
|
|
13519
|
-
.u-px-
|
|
13824
|
+
.u-px-5\.5 {
|
|
13520
13825
|
padding-right: 1.375rem;
|
|
13521
13826
|
padding-left: 1.375rem;
|
|
13522
13827
|
}
|
|
@@ -13528,7 +13833,7 @@ body.is-open-photoviewer {
|
|
|
13528
13833
|
padding-right: 1.75rem;
|
|
13529
13834
|
padding-left: 1.75rem;
|
|
13530
13835
|
}
|
|
13531
|
-
.u-px-
|
|
13836
|
+
.u-px-7\.5 {
|
|
13532
13837
|
padding-right: 1.875rem;
|
|
13533
13838
|
padding-left: 1.875rem;
|
|
13534
13839
|
}
|
|
@@ -13632,7 +13937,7 @@ body.is-open-photoviewer {
|
|
|
13632
13937
|
padding-top: 0.25rem;
|
|
13633
13938
|
padding-bottom: 0.25rem;
|
|
13634
13939
|
}
|
|
13635
|
-
.u-py-
|
|
13940
|
+
.u-py-1\.5 {
|
|
13636
13941
|
padding-top: 0.375rem;
|
|
13637
13942
|
padding-bottom: 0.375rem;
|
|
13638
13943
|
}
|
|
@@ -13640,7 +13945,7 @@ body.is-open-photoviewer {
|
|
|
13640
13945
|
padding-top: 0.5rem;
|
|
13641
13946
|
padding-bottom: 0.5rem;
|
|
13642
13947
|
}
|
|
13643
|
-
.u-py-
|
|
13948
|
+
.u-py-2\.5 {
|
|
13644
13949
|
padding-top: 0.625rem;
|
|
13645
13950
|
padding-bottom: 0.625rem;
|
|
13646
13951
|
}
|
|
@@ -13648,7 +13953,7 @@ body.is-open-photoviewer {
|
|
|
13648
13953
|
padding-top: 0.75rem;
|
|
13649
13954
|
padding-bottom: 0.75rem;
|
|
13650
13955
|
}
|
|
13651
|
-
.u-py-
|
|
13956
|
+
.u-py-3\.5 {
|
|
13652
13957
|
padding-top: 0.875rem;
|
|
13653
13958
|
padding-bottom: 0.875rem;
|
|
13654
13959
|
}
|
|
@@ -13660,7 +13965,7 @@ body.is-open-photoviewer {
|
|
|
13660
13965
|
padding-top: 1.25rem;
|
|
13661
13966
|
padding-bottom: 1.25rem;
|
|
13662
13967
|
}
|
|
13663
|
-
.u-py-
|
|
13968
|
+
.u-py-5\.5 {
|
|
13664
13969
|
padding-top: 1.375rem;
|
|
13665
13970
|
padding-bottom: 1.375rem;
|
|
13666
13971
|
}
|
|
@@ -13672,7 +13977,7 @@ body.is-open-photoviewer {
|
|
|
13672
13977
|
padding-top: 1.75rem;
|
|
13673
13978
|
padding-bottom: 1.75rem;
|
|
13674
13979
|
}
|
|
13675
|
-
.u-py-
|
|
13980
|
+
.u-py-7\.5 {
|
|
13676
13981
|
padding-top: 1.875rem;
|
|
13677
13982
|
padding-bottom: 1.875rem;
|
|
13678
13983
|
}
|
|
@@ -13774,19 +14079,19 @@ body.is-open-photoviewer {
|
|
|
13774
14079
|
.u-pt-1 {
|
|
13775
14080
|
padding-top: 0.25rem;
|
|
13776
14081
|
}
|
|
13777
|
-
.u-pt-
|
|
14082
|
+
.u-pt-1\.5 {
|
|
13778
14083
|
padding-top: 0.375rem;
|
|
13779
14084
|
}
|
|
13780
14085
|
.u-pt-2 {
|
|
13781
14086
|
padding-top: 0.5rem;
|
|
13782
14087
|
}
|
|
13783
|
-
.u-pt-
|
|
14088
|
+
.u-pt-2\.5 {
|
|
13784
14089
|
padding-top: 0.625rem;
|
|
13785
14090
|
}
|
|
13786
14091
|
.u-pt-3 {
|
|
13787
14092
|
padding-top: 0.75rem;
|
|
13788
14093
|
}
|
|
13789
|
-
.u-pt-
|
|
14094
|
+
.u-pt-3\.5 {
|
|
13790
14095
|
padding-top: 0.875rem;
|
|
13791
14096
|
}
|
|
13792
14097
|
.u-pt-4 {
|
|
@@ -13795,7 +14100,7 @@ body.is-open-photoviewer {
|
|
|
13795
14100
|
.u-pt-5 {
|
|
13796
14101
|
padding-top: 1.25rem;
|
|
13797
14102
|
}
|
|
13798
|
-
.u-pt-
|
|
14103
|
+
.u-pt-5\.5 {
|
|
13799
14104
|
padding-top: 1.375rem;
|
|
13800
14105
|
}
|
|
13801
14106
|
.u-pt-6 {
|
|
@@ -13804,7 +14109,7 @@ body.is-open-photoviewer {
|
|
|
13804
14109
|
.u-pt-7 {
|
|
13805
14110
|
padding-top: 1.75rem;
|
|
13806
14111
|
}
|
|
13807
|
-
.u-pt-
|
|
14112
|
+
.u-pt-7\.5 {
|
|
13808
14113
|
padding-top: 1.875rem;
|
|
13809
14114
|
}
|
|
13810
14115
|
.u-pt-8 {
|
|
@@ -13882,19 +14187,19 @@ body.is-open-photoviewer {
|
|
|
13882
14187
|
.u-pe-1 {
|
|
13883
14188
|
padding-right: 0.25rem;
|
|
13884
14189
|
}
|
|
13885
|
-
.u-pe-
|
|
14190
|
+
.u-pe-1\.5 {
|
|
13886
14191
|
padding-right: 0.375rem;
|
|
13887
14192
|
}
|
|
13888
14193
|
.u-pe-2 {
|
|
13889
14194
|
padding-right: 0.5rem;
|
|
13890
14195
|
}
|
|
13891
|
-
.u-pe-
|
|
14196
|
+
.u-pe-2\.5 {
|
|
13892
14197
|
padding-right: 0.625rem;
|
|
13893
14198
|
}
|
|
13894
14199
|
.u-pe-3 {
|
|
13895
14200
|
padding-right: 0.75rem;
|
|
13896
14201
|
}
|
|
13897
|
-
.u-pe-
|
|
14202
|
+
.u-pe-3\.5 {
|
|
13898
14203
|
padding-right: 0.875rem;
|
|
13899
14204
|
}
|
|
13900
14205
|
.u-pe-4 {
|
|
@@ -13903,7 +14208,7 @@ body.is-open-photoviewer {
|
|
|
13903
14208
|
.u-pe-5 {
|
|
13904
14209
|
padding-right: 1.25rem;
|
|
13905
14210
|
}
|
|
13906
|
-
.u-pe-
|
|
14211
|
+
.u-pe-5\.5 {
|
|
13907
14212
|
padding-right: 1.375rem;
|
|
13908
14213
|
}
|
|
13909
14214
|
.u-pe-6 {
|
|
@@ -13912,7 +14217,7 @@ body.is-open-photoviewer {
|
|
|
13912
14217
|
.u-pe-7 {
|
|
13913
14218
|
padding-right: 1.75rem;
|
|
13914
14219
|
}
|
|
13915
|
-
.u-pe-
|
|
14220
|
+
.u-pe-7\.5 {
|
|
13916
14221
|
padding-right: 1.875rem;
|
|
13917
14222
|
}
|
|
13918
14223
|
.u-pe-8 {
|
|
@@ -13990,19 +14295,19 @@ body.is-open-photoviewer {
|
|
|
13990
14295
|
.u-pb-1 {
|
|
13991
14296
|
padding-bottom: 0.25rem;
|
|
13992
14297
|
}
|
|
13993
|
-
.u-pb-
|
|
14298
|
+
.u-pb-1\.5 {
|
|
13994
14299
|
padding-bottom: 0.375rem;
|
|
13995
14300
|
}
|
|
13996
14301
|
.u-pb-2 {
|
|
13997
14302
|
padding-bottom: 0.5rem;
|
|
13998
14303
|
}
|
|
13999
|
-
.u-pb-
|
|
14304
|
+
.u-pb-2\.5 {
|
|
14000
14305
|
padding-bottom: 0.625rem;
|
|
14001
14306
|
}
|
|
14002
14307
|
.u-pb-3 {
|
|
14003
14308
|
padding-bottom: 0.75rem;
|
|
14004
14309
|
}
|
|
14005
|
-
.u-pb-
|
|
14310
|
+
.u-pb-3\.5 {
|
|
14006
14311
|
padding-bottom: 0.875rem;
|
|
14007
14312
|
}
|
|
14008
14313
|
.u-pb-4 {
|
|
@@ -14011,7 +14316,7 @@ body.is-open-photoviewer {
|
|
|
14011
14316
|
.u-pb-5 {
|
|
14012
14317
|
padding-bottom: 1.25rem;
|
|
14013
14318
|
}
|
|
14014
|
-
.u-pb-
|
|
14319
|
+
.u-pb-5\.5 {
|
|
14015
14320
|
padding-bottom: 1.375rem;
|
|
14016
14321
|
}
|
|
14017
14322
|
.u-pb-6 {
|
|
@@ -14020,7 +14325,7 @@ body.is-open-photoviewer {
|
|
|
14020
14325
|
.u-pb-7 {
|
|
14021
14326
|
padding-bottom: 1.75rem;
|
|
14022
14327
|
}
|
|
14023
|
-
.u-pb-
|
|
14328
|
+
.u-pb-7\.5 {
|
|
14024
14329
|
padding-bottom: 1.875rem;
|
|
14025
14330
|
}
|
|
14026
14331
|
.u-pb-8 {
|
|
@@ -14098,19 +14403,19 @@ body.is-open-photoviewer {
|
|
|
14098
14403
|
.u-ps-1 {
|
|
14099
14404
|
padding-left: 0.25rem;
|
|
14100
14405
|
}
|
|
14101
|
-
.u-ps-
|
|
14406
|
+
.u-ps-1\.5 {
|
|
14102
14407
|
padding-left: 0.375rem;
|
|
14103
14408
|
}
|
|
14104
14409
|
.u-ps-2 {
|
|
14105
14410
|
padding-left: 0.5rem;
|
|
14106
14411
|
}
|
|
14107
|
-
.u-ps-
|
|
14412
|
+
.u-ps-2\.5 {
|
|
14108
14413
|
padding-left: 0.625rem;
|
|
14109
14414
|
}
|
|
14110
14415
|
.u-ps-3 {
|
|
14111
14416
|
padding-left: 0.75rem;
|
|
14112
14417
|
}
|
|
14113
|
-
.u-ps-
|
|
14418
|
+
.u-ps-3\.5 {
|
|
14114
14419
|
padding-left: 0.875rem;
|
|
14115
14420
|
}
|
|
14116
14421
|
.u-ps-4 {
|
|
@@ -14119,7 +14424,7 @@ body.is-open-photoviewer {
|
|
|
14119
14424
|
.u-ps-5 {
|
|
14120
14425
|
padding-left: 1.25rem;
|
|
14121
14426
|
}
|
|
14122
|
-
.u-ps-
|
|
14427
|
+
.u-ps-5\.5 {
|
|
14123
14428
|
padding-left: 1.375rem;
|
|
14124
14429
|
}
|
|
14125
14430
|
.u-ps-6 {
|
|
@@ -14128,7 +14433,7 @@ body.is-open-photoviewer {
|
|
|
14128
14433
|
.u-ps-7 {
|
|
14129
14434
|
padding-left: 1.75rem;
|
|
14130
14435
|
}
|
|
14131
|
-
.u-ps-
|
|
14436
|
+
.u-ps-7\.5 {
|
|
14132
14437
|
padding-left: 1.875rem;
|
|
14133
14438
|
}
|
|
14134
14439
|
.u-ps-8 {
|
|
@@ -14206,19 +14511,19 @@ body.is-open-photoviewer {
|
|
|
14206
14511
|
.u-gap-1 {
|
|
14207
14512
|
gap: 0.25rem;
|
|
14208
14513
|
}
|
|
14209
|
-
.u-gap-
|
|
14514
|
+
.u-gap-1\.5 {
|
|
14210
14515
|
gap: 0.375rem;
|
|
14211
14516
|
}
|
|
14212
14517
|
.u-gap-2 {
|
|
14213
14518
|
gap: 0.5rem;
|
|
14214
14519
|
}
|
|
14215
|
-
.u-gap-
|
|
14520
|
+
.u-gap-2\.5 {
|
|
14216
14521
|
gap: 0.625rem;
|
|
14217
14522
|
}
|
|
14218
14523
|
.u-gap-3 {
|
|
14219
14524
|
gap: 0.75rem;
|
|
14220
14525
|
}
|
|
14221
|
-
.u-gap-
|
|
14526
|
+
.u-gap-3\.5 {
|
|
14222
14527
|
gap: 0.875rem;
|
|
14223
14528
|
}
|
|
14224
14529
|
.u-gap-4 {
|
|
@@ -14227,7 +14532,7 @@ body.is-open-photoviewer {
|
|
|
14227
14532
|
.u-gap-5 {
|
|
14228
14533
|
gap: 1.25rem;
|
|
14229
14534
|
}
|
|
14230
|
-
.u-gap-
|
|
14535
|
+
.u-gap-5\.5 {
|
|
14231
14536
|
gap: 1.375rem;
|
|
14232
14537
|
}
|
|
14233
14538
|
.u-gap-6 {
|
|
@@ -14236,7 +14541,7 @@ body.is-open-photoviewer {
|
|
|
14236
14541
|
.u-gap-7 {
|
|
14237
14542
|
gap: 1.75rem;
|
|
14238
14543
|
}
|
|
14239
|
-
.u-gap-
|
|
14544
|
+
.u-gap-7\.5 {
|
|
14240
14545
|
gap: 1.875rem;
|
|
14241
14546
|
}
|
|
14242
14547
|
.u-gap-8 {
|
|
@@ -14314,19 +14619,19 @@ body.is-open-photoviewer {
|
|
|
14314
14619
|
.u-row-gap-1 {
|
|
14315
14620
|
row-gap: 0.25rem;
|
|
14316
14621
|
}
|
|
14317
|
-
.u-row-gap-
|
|
14622
|
+
.u-row-gap-1\.5 {
|
|
14318
14623
|
row-gap: 0.375rem;
|
|
14319
14624
|
}
|
|
14320
14625
|
.u-row-gap-2 {
|
|
14321
14626
|
row-gap: 0.5rem;
|
|
14322
14627
|
}
|
|
14323
|
-
.u-row-gap-
|
|
14628
|
+
.u-row-gap-2\.5 {
|
|
14324
14629
|
row-gap: 0.625rem;
|
|
14325
14630
|
}
|
|
14326
14631
|
.u-row-gap-3 {
|
|
14327
14632
|
row-gap: 0.75rem;
|
|
14328
14633
|
}
|
|
14329
|
-
.u-row-gap-
|
|
14634
|
+
.u-row-gap-3\.5 {
|
|
14330
14635
|
row-gap: 0.875rem;
|
|
14331
14636
|
}
|
|
14332
14637
|
.u-row-gap-4 {
|
|
@@ -14335,7 +14640,7 @@ body.is-open-photoviewer {
|
|
|
14335
14640
|
.u-row-gap-5 {
|
|
14336
14641
|
row-gap: 1.25rem;
|
|
14337
14642
|
}
|
|
14338
|
-
.u-row-gap-
|
|
14643
|
+
.u-row-gap-5\.5 {
|
|
14339
14644
|
row-gap: 1.375rem;
|
|
14340
14645
|
}
|
|
14341
14646
|
.u-row-gap-6 {
|
|
@@ -14344,7 +14649,7 @@ body.is-open-photoviewer {
|
|
|
14344
14649
|
.u-row-gap-7 {
|
|
14345
14650
|
row-gap: 1.75rem;
|
|
14346
14651
|
}
|
|
14347
|
-
.u-row-gap-
|
|
14652
|
+
.u-row-gap-7\.5 {
|
|
14348
14653
|
row-gap: 1.875rem;
|
|
14349
14654
|
}
|
|
14350
14655
|
.u-row-gap-8 {
|
|
@@ -14424,7 +14729,7 @@ body.is-open-photoviewer {
|
|
|
14424
14729
|
-moz-column-gap: 0.25rem;
|
|
14425
14730
|
column-gap: 0.25rem;
|
|
14426
14731
|
}
|
|
14427
|
-
.u-column-gap-
|
|
14732
|
+
.u-column-gap-1\.5 {
|
|
14428
14733
|
-moz-column-gap: 0.375rem;
|
|
14429
14734
|
column-gap: 0.375rem;
|
|
14430
14735
|
}
|
|
@@ -14432,7 +14737,7 @@ body.is-open-photoviewer {
|
|
|
14432
14737
|
-moz-column-gap: 0.5rem;
|
|
14433
14738
|
column-gap: 0.5rem;
|
|
14434
14739
|
}
|
|
14435
|
-
.u-column-gap-
|
|
14740
|
+
.u-column-gap-2\.5 {
|
|
14436
14741
|
-moz-column-gap: 0.625rem;
|
|
14437
14742
|
column-gap: 0.625rem;
|
|
14438
14743
|
}
|
|
@@ -14440,7 +14745,7 @@ body.is-open-photoviewer {
|
|
|
14440
14745
|
-moz-column-gap: 0.75rem;
|
|
14441
14746
|
column-gap: 0.75rem;
|
|
14442
14747
|
}
|
|
14443
|
-
.u-column-gap-
|
|
14748
|
+
.u-column-gap-3\.5 {
|
|
14444
14749
|
-moz-column-gap: 0.875rem;
|
|
14445
14750
|
column-gap: 0.875rem;
|
|
14446
14751
|
}
|
|
@@ -14452,7 +14757,7 @@ body.is-open-photoviewer {
|
|
|
14452
14757
|
-moz-column-gap: 1.25rem;
|
|
14453
14758
|
column-gap: 1.25rem;
|
|
14454
14759
|
}
|
|
14455
|
-
.u-column-gap-
|
|
14760
|
+
.u-column-gap-5\.5 {
|
|
14456
14761
|
-moz-column-gap: 1.375rem;
|
|
14457
14762
|
column-gap: 1.375rem;
|
|
14458
14763
|
}
|
|
@@ -14464,7 +14769,7 @@ body.is-open-photoviewer {
|
|
|
14464
14769
|
-moz-column-gap: 1.75rem;
|
|
14465
14770
|
column-gap: 1.75rem;
|
|
14466
14771
|
}
|
|
14467
|
-
.u-column-gap-
|
|
14772
|
+
.u-column-gap-7\.5 {
|
|
14468
14773
|
-moz-column-gap: 1.875rem;
|
|
14469
14774
|
column-gap: 1.875rem;
|
|
14470
14775
|
}
|