@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/themes/esrar.css
CHANGED
|
@@ -3571,6 +3571,61 @@ a, a:hover {
|
|
|
3571
3571
|
margin-left: calc(var(--atomix-avatar-size) * -1 * var(--atomix-avatar-group-stacked-overlap) / 100);
|
|
3572
3572
|
z-index: 1;
|
|
3573
3573
|
}
|
|
3574
|
+
.atomix-glass__layer, .atomix-glass__overlay, .atomix-glass__base, .atomix-glass__border-1, .atomix-glass__border-2 {
|
|
3575
|
+
pointer-events: none;
|
|
3576
|
+
position: absolute;
|
|
3577
|
+
inset: 0;
|
|
3578
|
+
border-radius: inherit;
|
|
3579
|
+
transform: inherit;
|
|
3580
|
+
transition: inherit;
|
|
3581
|
+
}
|
|
3582
|
+
.atomix-glass__border-1, .atomix-glass__border-2 {
|
|
3583
|
+
box-sizing: border-box;
|
|
3584
|
+
padding: 1.5px;
|
|
3585
|
+
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
3586
|
+
-webkit-mask-composite: xor;
|
|
3587
|
+
mask-composite: exclude;
|
|
3588
|
+
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);
|
|
3589
|
+
transition-property: transform;
|
|
3590
|
+
}
|
|
3591
|
+
.atomix-glass__border-1 {
|
|
3592
|
+
z-index: 5;
|
|
3593
|
+
opacity: 0.3;
|
|
3594
|
+
mix-blend-mode: screen;
|
|
3595
|
+
}
|
|
3596
|
+
.atomix-glass__border-2 {
|
|
3597
|
+
z-index: 6;
|
|
3598
|
+
}
|
|
3599
|
+
.atomix-glass__hover-1, .atomix-glass__hover-2, .atomix-glass__hover-3 {
|
|
3600
|
+
position: absolute;
|
|
3601
|
+
inset: 0;
|
|
3602
|
+
pointer-events: none;
|
|
3603
|
+
border-radius: inherit;
|
|
3604
|
+
transform: inherit;
|
|
3605
|
+
transition: inherit;
|
|
3606
|
+
transition-property: transform, opacity;
|
|
3607
|
+
}
|
|
3608
|
+
.atomix-glass__hover-1 {
|
|
3609
|
+
opacity: 0;
|
|
3610
|
+
}
|
|
3611
|
+
.atomix-glass__hover-2 {
|
|
3612
|
+
overflow: hidden;
|
|
3613
|
+
opacity: 0;
|
|
3614
|
+
}
|
|
3615
|
+
.atomix-glass__hover-3 {
|
|
3616
|
+
opacity: 0;
|
|
3617
|
+
}
|
|
3618
|
+
.atomix-glass__base {
|
|
3619
|
+
will-change: transform;
|
|
3620
|
+
transition-property: transform, opacity;
|
|
3621
|
+
opacity: 0;
|
|
3622
|
+
}
|
|
3623
|
+
.atomix-glass__overlay {
|
|
3624
|
+
mix-blend-mode: overlay;
|
|
3625
|
+
will-change: transform;
|
|
3626
|
+
transition-property: transform, opacity;
|
|
3627
|
+
opacity: 0;
|
|
3628
|
+
}
|
|
3574
3629
|
.c-badge {
|
|
3575
3630
|
--atomix-tag-font-size: 0.75rem;
|
|
3576
3631
|
--atomix-tag-font-weight: 400;
|
|
@@ -3607,8 +3662,8 @@ a, a:hover {
|
|
|
3607
3662
|
--atomix-tag-padding-y: 0.5rem;
|
|
3608
3663
|
}
|
|
3609
3664
|
.c-badge--glass {
|
|
3610
|
-
background-color: color-mix(in srgb, var(--atomix-tag-bg-color)
|
|
3611
|
-
border: 1px solid color-mix(in srgb, var(--atomix-tag-color)
|
|
3665
|
+
background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 20%, transparent);
|
|
3666
|
+
border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 90%, transparent);
|
|
3612
3667
|
}
|
|
3613
3668
|
.c-badge--primary {
|
|
3614
3669
|
--atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
|
|
@@ -3644,10 +3699,6 @@ a, a:hover {
|
|
|
3644
3699
|
--atomix-tag-color: var(--atomix-light);
|
|
3645
3700
|
border: 1px solid var(--atomix-dark);
|
|
3646
3701
|
}
|
|
3647
|
-
.c-badge-glass {
|
|
3648
|
-
box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
|
|
3649
|
-
border-radius: 999px;
|
|
3650
|
-
}
|
|
3651
3702
|
.c-breadcrumb {
|
|
3652
3703
|
--atomix-breadcrumb-font-size: 0.875rem;
|
|
3653
3704
|
--atomix-breadcrumb-link-padding-y: 0.25rem;
|
|
@@ -6975,7 +7026,7 @@ a, a:hover {
|
|
|
6975
7026
|
--atomix-edge-panel-bg: var(--atomix-body-bg);
|
|
6976
7027
|
--atomix-edge-panel-color: var(--atomix-body-color);
|
|
6977
7028
|
--atomix-edge-panel-shadow: var(--atomix-box-shadow);
|
|
6978
|
-
--atomix-edge-panel-backdrop-bg: var(--atomix-
|
|
7029
|
+
--atomix-edge-panel-backdrop-bg: var(--atomix-dark-bg-subtle);
|
|
6979
7030
|
--atomix-edge-panel-backdrop-opacity: 0.5;
|
|
6980
7031
|
--atomix-edge-panel-backdrop-blur: 10px;
|
|
6981
7032
|
--atomix-edge-panel-animation-duration: 300ms;
|
|
@@ -7229,6 +7280,89 @@ a, a:hover {
|
|
|
7229
7280
|
transform: translateY(100%);
|
|
7230
7281
|
}
|
|
7231
7282
|
}
|
|
7283
|
+
.c-edge-panel--glass {
|
|
7284
|
+
position: absolute;
|
|
7285
|
+
z-index: auto;
|
|
7286
|
+
z-index: initial;
|
|
7287
|
+
}
|
|
7288
|
+
.c-edge-panel--glass .c-edge-panel__container {
|
|
7289
|
+
background: transparent;
|
|
7290
|
+
box-shadow: none;
|
|
7291
|
+
overflow: hidden;
|
|
7292
|
+
border: none;
|
|
7293
|
+
padding: 0;
|
|
7294
|
+
z-index: auto;
|
|
7295
|
+
z-index: initial;
|
|
7296
|
+
will-change: initial;
|
|
7297
|
+
transform: none !important;
|
|
7298
|
+
border-radius: inherit;
|
|
7299
|
+
opacity: 0;
|
|
7300
|
+
transition: opacity 0.3s ease;
|
|
7301
|
+
}
|
|
7302
|
+
.c-edge-panel--glass .c-edge-panel__glass-content {
|
|
7303
|
+
display: flex;
|
|
7304
|
+
flex-direction: column;
|
|
7305
|
+
overflow: hidden;
|
|
7306
|
+
width: 100%;
|
|
7307
|
+
height: 100vh;
|
|
7308
|
+
padding: 0;
|
|
7309
|
+
border-radius: inherit;
|
|
7310
|
+
transition: opacity 0.3s ease;
|
|
7311
|
+
}
|
|
7312
|
+
.c-edge-panel--glass .c-edge-panel__header {
|
|
7313
|
+
background: transparent;
|
|
7314
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
|
7315
|
+
flex-shrink: 0;
|
|
7316
|
+
padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
|
|
7317
|
+
}
|
|
7318
|
+
.c-edge-panel--glass .c-edge-panel__body {
|
|
7319
|
+
background: transparent;
|
|
7320
|
+
flex: 1 1;
|
|
7321
|
+
overflow-y: auto;
|
|
7322
|
+
padding: var(--atomix-edge-panel-padding-y) var(--atomix-edge-panel-padding-x);
|
|
7323
|
+
}
|
|
7324
|
+
.c-edge-panel--glass .c-edge-panel__close {
|
|
7325
|
+
background: rgba(255, 255, 255, 0.05);
|
|
7326
|
+
}
|
|
7327
|
+
.c-edge-panel--glass .c-edge-panel__close:hover {
|
|
7328
|
+
background: rgba(255, 255, 255, 0.15);
|
|
7329
|
+
}
|
|
7330
|
+
.c-edge-panel--glass .c-edge-panel__close:focus-visible {
|
|
7331
|
+
outline-color: rgba(255, 255, 255, 0.5);
|
|
7332
|
+
}
|
|
7333
|
+
.c-edge-panel--glass .c-edge-panel__backdrop {
|
|
7334
|
+
animation: fadeIn 0.3s ease forwards;
|
|
7335
|
+
z-index: 0;
|
|
7336
|
+
}
|
|
7337
|
+
.c-edge-panel--glass .c-edge-panel__backdrop.is-animating-out {
|
|
7338
|
+
animation: fadeOut 0.3s ease forwards;
|
|
7339
|
+
}
|
|
7340
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-wrapper {
|
|
7341
|
+
animation: slideInStart 0.3s ease forwards;
|
|
7342
|
+
}
|
|
7343
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-wrapper.is-animating-out {
|
|
7344
|
+
animation: slideOutStart 0.3s ease forwards;
|
|
7345
|
+
}
|
|
7346
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-wrapper {
|
|
7347
|
+
animation: slideInEnd 0.3s ease forwards;
|
|
7348
|
+
}
|
|
7349
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-wrapper.is-animating-out {
|
|
7350
|
+
animation: slideOutEnd 0.3s ease forwards;
|
|
7351
|
+
}
|
|
7352
|
+
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-wrapper {
|
|
7353
|
+
animation: slideInTop 0.3s ease forwards;
|
|
7354
|
+
}
|
|
7355
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-wrapper {
|
|
7356
|
+
animation: slideInBottom 0.3s ease forwards;
|
|
7357
|
+
}
|
|
7358
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__container, .c-edge-panel--glass.c-edge-panel--top .c-edge-panel__container {
|
|
7359
|
+
width: 100vw;
|
|
7360
|
+
height: auto;
|
|
7361
|
+
}
|
|
7362
|
+
.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 {
|
|
7363
|
+
width: 100vw;
|
|
7364
|
+
height: auto;
|
|
7365
|
+
}
|
|
7232
7366
|
.c-footer {
|
|
7233
7367
|
--atomix-footer-padding-x: 1rem;
|
|
7234
7368
|
--atomix-footer-padding-y: 3rem;
|
|
@@ -9063,6 +9197,134 @@ a, a:hover {
|
|
|
9063
9197
|
opacity: 0.5;
|
|
9064
9198
|
cursor: not-allowed;
|
|
9065
9199
|
}
|
|
9200
|
+
.c-messages--glass {
|
|
9201
|
+
background: transparent;
|
|
9202
|
+
border: none;
|
|
9203
|
+
padding: 0;
|
|
9204
|
+
}
|
|
9205
|
+
.c-messages--glass .c-messages__glass-content {
|
|
9206
|
+
padding: var(--atomix-messages-padding-y) var(--atomix-messages-padding-x);
|
|
9207
|
+
border-radius: var(--atomix-messages-border-radius);
|
|
9208
|
+
}
|
|
9209
|
+
.c-messages--glass .c-messages__body {
|
|
9210
|
+
border-radius: 0.25rem;
|
|
9211
|
+
padding: 0.5rem;
|
|
9212
|
+
background-color: color-mix(in srgb, var(--atomix-body-bg) 15%, transparent);
|
|
9213
|
+
}
|
|
9214
|
+
.c-messages--glass .c-messages__text {
|
|
9215
|
+
background-color: color-mix(in srgb, var(--atomix-body-bg) 50%, transparent);
|
|
9216
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9217
|
+
backdrop-filter: blur(8px);
|
|
9218
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
9219
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
9220
|
+
}
|
|
9221
|
+
.c-messages--glass .c-messages__content--self .c-messages__text {
|
|
9222
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
9223
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
9224
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9225
|
+
backdrop-filter: blur(8px);
|
|
9226
|
+
}
|
|
9227
|
+
.c-messages--glass .c-messages__content--self .c-messages__file {
|
|
9228
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
9229
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
9230
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9231
|
+
backdrop-filter: blur(8px);
|
|
9232
|
+
}
|
|
9233
|
+
.c-messages--glass .c-messages__file {
|
|
9234
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
9235
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.3);
|
|
9236
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9237
|
+
backdrop-filter: blur(8px);
|
|
9238
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
9239
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
9240
|
+
}
|
|
9241
|
+
.c-messages--glass .c-messages__file-icon {
|
|
9242
|
+
background-color: color-mix(in srgb, var(--atomix-brand-bg-subtle) 50%, transparent);
|
|
9243
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9244
|
+
backdrop-filter: blur(8px);
|
|
9245
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
9246
|
+
}
|
|
9247
|
+
.c-messages--glass .c-messages__image {
|
|
9248
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
9249
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
9250
|
+
}
|
|
9251
|
+
.c-messages--glass .c-messages__avatar {
|
|
9252
|
+
border: 2px solid rgba(255, 255, 255, 0.4);
|
|
9253
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
9254
|
+
}
|
|
9255
|
+
.c-messages--glass .c-messages__name {
|
|
9256
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
9257
|
+
font-weight: 600;
|
|
9258
|
+
}
|
|
9259
|
+
.c-messages--glass .c-messages__time {
|
|
9260
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
9261
|
+
}
|
|
9262
|
+
.c-messages--glass .c-messages__form {
|
|
9263
|
+
padding-top: 0.75rem;
|
|
9264
|
+
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
9265
|
+
margin-top: 1rem;
|
|
9266
|
+
}
|
|
9267
|
+
.c-messages--glass .c-messages__input {
|
|
9268
|
+
background: rgba(255, 255, 255, 0.3);
|
|
9269
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9270
|
+
backdrop-filter: blur(8px);
|
|
9271
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
9272
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
|
|
9273
|
+
color: var(--atomix-primary-text-emphasis);
|
|
9274
|
+
}
|
|
9275
|
+
.c-messages--glass .c-messages__input:focus {
|
|
9276
|
+
background: rgba(255, 255, 255, 0.45);
|
|
9277
|
+
border-color: var(--atomix-primary);
|
|
9278
|
+
box-shadow: 0 0 0 3px rgba(var(--atomix-primary-rgb), 0.15);
|
|
9279
|
+
}
|
|
9280
|
+
.c-messages--glass .c-messages__input::-moz-placeholder {
|
|
9281
|
+
opacity: 0.8;
|
|
9282
|
+
color: var(--atomix-primary-text-emphasis);
|
|
9283
|
+
}
|
|
9284
|
+
.c-messages--glass .c-messages__input::placeholder {
|
|
9285
|
+
opacity: 0.8;
|
|
9286
|
+
color: var(--atomix-primary-text-emphasis);
|
|
9287
|
+
}
|
|
9288
|
+
.c-messages--glass .c-messages__option {
|
|
9289
|
+
padding: 0.375rem;
|
|
9290
|
+
border-radius: 0.25rem;
|
|
9291
|
+
transition: background-color 0.2s ease;
|
|
9292
|
+
}
|
|
9293
|
+
.c-messages--glass .c-messages__option:hover:not(:disabled) {
|
|
9294
|
+
background: rgba(var(--atomix-secondary-bg-rgb), 0.4);
|
|
9295
|
+
}
|
|
9296
|
+
.c-messages--glass .c-messages__option:focus-visible {
|
|
9297
|
+
outline: 2px solid var(--atomix-primary);
|
|
9298
|
+
outline-offset: 2px;
|
|
9299
|
+
}
|
|
9300
|
+
.c-messages--glass .c-messages__option-icon {
|
|
9301
|
+
opacity: 0.8;
|
|
9302
|
+
transition: opacity 0.2s ease;
|
|
9303
|
+
}
|
|
9304
|
+
.c-messages__option:hover .c-messages--glass .c-messages__option-icon {
|
|
9305
|
+
opacity: 1;
|
|
9306
|
+
}
|
|
9307
|
+
.c-messages--glass .c-messages__submit {
|
|
9308
|
+
background: rgba(var(--atomix-primary-rgb), 0.9);
|
|
9309
|
+
-webkit-backdrop-filter: blur(8px);
|
|
9310
|
+
backdrop-filter: blur(8px);
|
|
9311
|
+
border: 1px solid rgba(var(--atomix-primary-rgb), 0.4);
|
|
9312
|
+
box-shadow: 0 2px 8px rgba(var(--atomix-primary-rgb), 0.3);
|
|
9313
|
+
transition: all 0.2s ease;
|
|
9314
|
+
}
|
|
9315
|
+
.c-messages--glass .c-messages__submit:hover:not(:disabled) {
|
|
9316
|
+
background: rgba(var(--atomix-primary-rgb), 1);
|
|
9317
|
+
box-shadow: 0 4px 12px rgba(var(--atomix-primary-rgb), 0.4);
|
|
9318
|
+
transform: translateY(-1px);
|
|
9319
|
+
}
|
|
9320
|
+
.c-messages--glass .c-messages__submit:active:not(:disabled) {
|
|
9321
|
+
transform: translateY(0);
|
|
9322
|
+
box-shadow: 0 1px 4px rgba(var(--atomix-primary-rgb), 0.3);
|
|
9323
|
+
}
|
|
9324
|
+
.c-messages--glass .c-messages__submit:disabled {
|
|
9325
|
+
opacity: 0.5;
|
|
9326
|
+
background: rgba(var(--atomix-primary-rgb), 0.5);
|
|
9327
|
+
}
|
|
9066
9328
|
.c-modal {
|
|
9067
9329
|
--atomix-modal-inner-padding: 1rem;
|
|
9068
9330
|
--atomix-modal-content-color: ;
|
|
@@ -9085,7 +9347,7 @@ a, a:hover {
|
|
|
9085
9347
|
--atomix-modal-lg: 62.5rem;
|
|
9086
9348
|
--atomix-modal-xl: 71.25rem;
|
|
9087
9349
|
--atomix-modal-width: var(--atomix-modal-md);
|
|
9088
|
-
position:
|
|
9350
|
+
position: absolute;
|
|
9089
9351
|
inset: 0;
|
|
9090
9352
|
width: 100%;
|
|
9091
9353
|
height: 100%;
|
|
@@ -9109,10 +9371,8 @@ a, a:hover {
|
|
|
9109
9371
|
margin-left: auto;
|
|
9110
9372
|
margin-right: auto;
|
|
9111
9373
|
opacity: 0;
|
|
9112
|
-
z-index: 2;
|
|
9113
9374
|
pointer-events: none;
|
|
9114
9375
|
transition: 0.3s ease;
|
|
9115
|
-
will-change: transform;
|
|
9116
9376
|
}
|
|
9117
9377
|
.c-modal__content {
|
|
9118
9378
|
display: flex;
|
|
@@ -9176,6 +9436,9 @@ a, a:hover {
|
|
|
9176
9436
|
.c-modal--xl {
|
|
9177
9437
|
--atomix-modal-width: var(--atomix-modal-xl);
|
|
9178
9438
|
}
|
|
9439
|
+
.c-modal--glass .c-modal .c-modal--glass .c-modal__content {
|
|
9440
|
+
background-color: color-mix(in srgb, var(--atomix-modal-content-bg) 50%, transparent);
|
|
9441
|
+
}
|
|
9179
9442
|
.c-modal.is-open .c-modal__backdrop {
|
|
9180
9443
|
opacity: var(--atomix-modal-backdrop-opacity);
|
|
9181
9444
|
}
|
|
@@ -9498,8 +9761,10 @@ a, a:hover {
|
|
|
9498
9761
|
display: flex !important;
|
|
9499
9762
|
}
|
|
9500
9763
|
}
|
|
9501
|
-
.c-navbar--fixed, .c-navbar--fixed-bottom {
|
|
9764
|
+
.c-navbar--fixed:not(.c-navbar--glass), .c-navbar--fixed-bottom:not(.c-navbar--glass) {
|
|
9502
9765
|
position: fixed;
|
|
9766
|
+
}
|
|
9767
|
+
.c-navbar--fixed, .c-navbar--fixed-bottom {
|
|
9503
9768
|
left: 0;
|
|
9504
9769
|
right: 0;
|
|
9505
9770
|
width: 100%;
|
|
@@ -9508,12 +9773,18 @@ a, a:hover {
|
|
|
9508
9773
|
.c-navbar--fixed {
|
|
9509
9774
|
top: 0;
|
|
9510
9775
|
}
|
|
9776
|
+
.c-navbar--glass {
|
|
9777
|
+
position: relative;
|
|
9778
|
+
background-color: transparent;
|
|
9779
|
+
border-bottom: none;
|
|
9780
|
+
}
|
|
9511
9781
|
.c-navbar--fixed-bottom {
|
|
9512
9782
|
bottom: 0;
|
|
9513
9783
|
}
|
|
9514
9784
|
.c-navbar--fixed-bottom .c-nav__dropdown-menu {
|
|
9515
9785
|
top: auto;
|
|
9516
9786
|
bottom: 100%;
|
|
9787
|
+
z-index: 999;
|
|
9517
9788
|
}
|
|
9518
9789
|
.c-navbar--fixed-bottom .c-nav--end .c-nav__dropdown-menu {
|
|
9519
9790
|
left: 50%;
|
|
@@ -9854,7 +10125,7 @@ a, a:hover {
|
|
|
9854
10125
|
--atomix-callout-icon-color: var(--atomix-light);
|
|
9855
10126
|
}
|
|
9856
10127
|
.c-callout--glass {
|
|
9857
|
-
background
|
|
10128
|
+
background: none;
|
|
9858
10129
|
padding: 0;
|
|
9859
10130
|
border: none;
|
|
9860
10131
|
display: block;
|
|
@@ -9864,10 +10135,11 @@ a, a:hover {
|
|
|
9864
10135
|
justify-content: center;
|
|
9865
10136
|
align-items: center;
|
|
9866
10137
|
padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
|
|
9867
|
-
border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
|
|
10138
|
+
border: var(--atomix-callout-border-witdh) solid color-mix(in srgb, var(--atomix-callout-border-color) 20%, transparent);
|
|
9868
10139
|
max-width: var(--atomix-callout-width);
|
|
9869
10140
|
border-radius: var(--atomix-callout-border-radius);
|
|
9870
10141
|
width: 100%;
|
|
10142
|
+
background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
|
|
9871
10143
|
}
|
|
9872
10144
|
.c-callout--glass .c-callout__title {
|
|
9873
10145
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
@@ -11042,6 +11314,10 @@ a, a:hover {
|
|
|
11042
11314
|
.c-side-menu__link-text {
|
|
11043
11315
|
flex: 1 1;
|
|
11044
11316
|
}
|
|
11317
|
+
.c-side-menu--glass {
|
|
11318
|
+
background-color: transparent;
|
|
11319
|
+
border-bottom: none;
|
|
11320
|
+
}
|
|
11045
11321
|
.c-side-menu.is-open .c-side-menu__toggler-icon {
|
|
11046
11322
|
transform: rotate(90deg);
|
|
11047
11323
|
}
|
|
@@ -13458,6 +13734,35 @@ body.is-open-photoviewer {
|
|
|
13458
13734
|
display: block !important;
|
|
13459
13735
|
clear: both !important;
|
|
13460
13736
|
}
|
|
13737
|
+
.u-glass-clean-root {
|
|
13738
|
+
isolation: initial !important;
|
|
13739
|
+
contain: none !important;
|
|
13740
|
+
transform-style: flat !important;
|
|
13741
|
+
will-change: auto !important;
|
|
13742
|
+
transform: none !important;
|
|
13743
|
+
z-index: auto;
|
|
13744
|
+
z-index: initial;
|
|
13745
|
+
}
|
|
13746
|
+
.u-glass-debug {
|
|
13747
|
+
outline: 2px dashed red !important;
|
|
13748
|
+
}
|
|
13749
|
+
.u-glass-debug::after {
|
|
13750
|
+
content: "Glass Debug";
|
|
13751
|
+
position: absolute;
|
|
13752
|
+
top: -20px;
|
|
13753
|
+
left: 0;
|
|
13754
|
+
background: red;
|
|
13755
|
+
color: white;
|
|
13756
|
+
font-size: 10px;
|
|
13757
|
+
padding: 2px 4px;
|
|
13758
|
+
z-index: 9999;
|
|
13759
|
+
}
|
|
13760
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13761
|
+
.u-glass-no-motion {
|
|
13762
|
+
transition: none !important;
|
|
13763
|
+
animation: none !important;
|
|
13764
|
+
}
|
|
13765
|
+
}
|
|
13461
13766
|
.u-link-primary {
|
|
13462
13767
|
color: RGBA(var(--atomix-primary-rgb), var(--atomix-u-link-opacity, 1)) !important;
|
|
13463
13768
|
text-decoration-color: RGBA(var(--atomix-primary-rgb), var(--atomix-u-link-underline-opacity, 1)) !important;
|
|
@@ -13708,19 +14013,19 @@ body.is-open-photoviewer {
|
|
|
13708
14013
|
border-width: 5px;
|
|
13709
14014
|
}
|
|
13710
14015
|
.u-border-opacity-10 {
|
|
13711
|
-
: 0.1;
|
|
14016
|
+
--atomix-u-u-border-opacity-10: 0.1;
|
|
13712
14017
|
}
|
|
13713
14018
|
.u-border-opacity-25 {
|
|
13714
|
-
: 0.25;
|
|
14019
|
+
--atomix-u-u-border-opacity-25: 0.25;
|
|
13715
14020
|
}
|
|
13716
14021
|
.u-border-opacity-50 {
|
|
13717
|
-
: 0.5;
|
|
14022
|
+
--atomix-u-u-border-opacity-50: 0.5;
|
|
13718
14023
|
}
|
|
13719
14024
|
.u-border-opacity-75 {
|
|
13720
|
-
: 0.75;
|
|
14025
|
+
--atomix-u-u-border-opacity-75: 0.75;
|
|
13721
14026
|
}
|
|
13722
14027
|
.u-border-opacity-100 {
|
|
13723
|
-
: 1;
|
|
14028
|
+
--atomix-u-u-border-opacity-100: 1;
|
|
13724
14029
|
}
|
|
13725
14030
|
.u-rounded {
|
|
13726
14031
|
border-radius: var(--atomix-border-radius);
|
|
@@ -14056,27 +14361,27 @@ body.is-open-photoviewer {
|
|
|
14056
14361
|
order: 6;
|
|
14057
14362
|
}
|
|
14058
14363
|
.u-link-opacityhover-10 {
|
|
14059
|
-
: 0.1;
|
|
14364
|
+
--atomix-u-u-link-opacity-10: 0.1;
|
|
14060
14365
|
}
|
|
14061
|
-
.u-link-
|
|
14062
|
-
: 0.25;
|
|
14366
|
+
.u-link-opacityhover-25 {
|
|
14367
|
+
--atomix-u-u-link-opacity-25: 0.25;
|
|
14063
14368
|
}
|
|
14064
|
-
.u-link-
|
|
14065
|
-
: 0.5;
|
|
14369
|
+
.u-link-opacityhover-50 {
|
|
14370
|
+
--atomix-u-u-link-opacity-50: 0.5;
|
|
14066
14371
|
}
|
|
14067
|
-
.u-link-
|
|
14068
|
-
: 0.75;
|
|
14372
|
+
.u-link-opacityhover-75 {
|
|
14373
|
+
--atomix-u-u-link-opacity-75: 0.75;
|
|
14069
14374
|
}
|
|
14070
|
-
.u-link-
|
|
14071
|
-
: 1;
|
|
14375
|
+
.u-link-opacityhover-100 {
|
|
14376
|
+
--atomix-u-u-link-opacity-100: 1;
|
|
14072
14377
|
}
|
|
14073
14378
|
.u-link-offsethover-1 {
|
|
14074
14379
|
text-underline-offset: 0.125em;
|
|
14075
14380
|
}
|
|
14076
|
-
.u-link-
|
|
14381
|
+
.u-link-offsethover-2 {
|
|
14077
14382
|
text-underline-offset: 0.25em;
|
|
14078
14383
|
}
|
|
14079
|
-
.u-link-
|
|
14384
|
+
.u-link-offsethover-3 {
|
|
14080
14385
|
text-underline-offset: 0.375em;
|
|
14081
14386
|
}
|
|
14082
14387
|
.u-link-underline-primary {
|
|
@@ -14113,22 +14418,22 @@ body.is-open-photoviewer {
|
|
|
14113
14418
|
text-decoration-color: rgba(var(--atomix-link-color-rgb), var(--atomix-u-link-underline-opacity, 1));
|
|
14114
14419
|
}
|
|
14115
14420
|
.u-link-underline-opacityhover-0 {
|
|
14116
|
-
: 0;
|
|
14421
|
+
--atomix-u-u-link-underline-opacity-0: 0;
|
|
14117
14422
|
}
|
|
14118
|
-
.u-link-underline-
|
|
14119
|
-
: 0.1;
|
|
14423
|
+
.u-link-underline-opacityhover-10 {
|
|
14424
|
+
--atomix-u-u-link-underline-opacity-10: 0.1;
|
|
14120
14425
|
}
|
|
14121
|
-
.u-link-underline-
|
|
14122
|
-
: 0.25;
|
|
14426
|
+
.u-link-underline-opacityhover-25 {
|
|
14427
|
+
--atomix-u-u-link-underline-opacity-25: 0.25;
|
|
14123
14428
|
}
|
|
14124
|
-
.u-link-underline-
|
|
14125
|
-
: 0.5;
|
|
14429
|
+
.u-link-underline-opacityhover-50 {
|
|
14430
|
+
--atomix-u-u-link-underline-opacity-50: 0.5;
|
|
14126
14431
|
}
|
|
14127
|
-
.u-link-underline-
|
|
14128
|
-
: 0.75;
|
|
14432
|
+
.u-link-underline-opacityhover-75 {
|
|
14433
|
+
--atomix-u-u-link-underline-opacity-75: 0.75;
|
|
14129
14434
|
}
|
|
14130
|
-
.u-link-underline-
|
|
14131
|
-
: 1;
|
|
14435
|
+
.u-link-underline-opacityhover-100 {
|
|
14436
|
+
--atomix-u-u-link-underline-opacity-100: 1;
|
|
14132
14437
|
}
|
|
14133
14438
|
.u-object-fit-contain {
|
|
14134
14439
|
-o-object-fit: contain;
|
|
@@ -14372,19 +14677,19 @@ body.is-open-photoviewer {
|
|
|
14372
14677
|
.u-m-1 {
|
|
14373
14678
|
margin: 0.25rem;
|
|
14374
14679
|
}
|
|
14375
|
-
.u-m-
|
|
14680
|
+
.u-m-1\.5 {
|
|
14376
14681
|
margin: 0.375rem;
|
|
14377
14682
|
}
|
|
14378
14683
|
.u-m-2 {
|
|
14379
14684
|
margin: 0.5rem;
|
|
14380
14685
|
}
|
|
14381
|
-
.u-m-
|
|
14686
|
+
.u-m-2\.5 {
|
|
14382
14687
|
margin: 0.625rem;
|
|
14383
14688
|
}
|
|
14384
14689
|
.u-m-3 {
|
|
14385
14690
|
margin: 0.75rem;
|
|
14386
14691
|
}
|
|
14387
|
-
.u-m-
|
|
14692
|
+
.u-m-3\.5 {
|
|
14388
14693
|
margin: 0.875rem;
|
|
14389
14694
|
}
|
|
14390
14695
|
.u-m-4 {
|
|
@@ -14393,7 +14698,7 @@ body.is-open-photoviewer {
|
|
|
14393
14698
|
.u-m-5 {
|
|
14394
14699
|
margin: 1.25rem;
|
|
14395
14700
|
}
|
|
14396
|
-
.u-m-
|
|
14701
|
+
.u-m-5\.5 {
|
|
14397
14702
|
margin: 1.375rem;
|
|
14398
14703
|
}
|
|
14399
14704
|
.u-m-6 {
|
|
@@ -14402,7 +14707,7 @@ body.is-open-photoviewer {
|
|
|
14402
14707
|
.u-m-7 {
|
|
14403
14708
|
margin: 1.75rem;
|
|
14404
14709
|
}
|
|
14405
|
-
.u-m-
|
|
14710
|
+
.u-m-7\.5 {
|
|
14406
14711
|
margin: 1.875rem;
|
|
14407
14712
|
}
|
|
14408
14713
|
.u-m-8 {
|
|
@@ -14485,7 +14790,7 @@ body.is-open-photoviewer {
|
|
|
14485
14790
|
margin-right: 0.25rem;
|
|
14486
14791
|
margin-left: 0.25rem;
|
|
14487
14792
|
}
|
|
14488
|
-
.u-mx-
|
|
14793
|
+
.u-mx-1\.5 {
|
|
14489
14794
|
margin-right: 0.375rem;
|
|
14490
14795
|
margin-left: 0.375rem;
|
|
14491
14796
|
}
|
|
@@ -14493,7 +14798,7 @@ body.is-open-photoviewer {
|
|
|
14493
14798
|
margin-right: 0.5rem;
|
|
14494
14799
|
margin-left: 0.5rem;
|
|
14495
14800
|
}
|
|
14496
|
-
.u-mx-
|
|
14801
|
+
.u-mx-2\.5 {
|
|
14497
14802
|
margin-right: 0.625rem;
|
|
14498
14803
|
margin-left: 0.625rem;
|
|
14499
14804
|
}
|
|
@@ -14501,7 +14806,7 @@ body.is-open-photoviewer {
|
|
|
14501
14806
|
margin-right: 0.75rem;
|
|
14502
14807
|
margin-left: 0.75rem;
|
|
14503
14808
|
}
|
|
14504
|
-
.u-mx-
|
|
14809
|
+
.u-mx-3\.5 {
|
|
14505
14810
|
margin-right: 0.875rem;
|
|
14506
14811
|
margin-left: 0.875rem;
|
|
14507
14812
|
}
|
|
@@ -14513,7 +14818,7 @@ body.is-open-photoviewer {
|
|
|
14513
14818
|
margin-right: 1.25rem;
|
|
14514
14819
|
margin-left: 1.25rem;
|
|
14515
14820
|
}
|
|
14516
|
-
.u-mx-
|
|
14821
|
+
.u-mx-5\.5 {
|
|
14517
14822
|
margin-right: 1.375rem;
|
|
14518
14823
|
margin-left: 1.375rem;
|
|
14519
14824
|
}
|
|
@@ -14525,7 +14830,7 @@ body.is-open-photoviewer {
|
|
|
14525
14830
|
margin-right: 1.75rem;
|
|
14526
14831
|
margin-left: 1.75rem;
|
|
14527
14832
|
}
|
|
14528
|
-
.u-mx-
|
|
14833
|
+
.u-mx-7\.5 {
|
|
14529
14834
|
margin-right: 1.875rem;
|
|
14530
14835
|
margin-left: 1.875rem;
|
|
14531
14836
|
}
|
|
@@ -14633,7 +14938,7 @@ body.is-open-photoviewer {
|
|
|
14633
14938
|
margin-top: 0.25rem;
|
|
14634
14939
|
margin-bottom: 0.25rem;
|
|
14635
14940
|
}
|
|
14636
|
-
.u-my-
|
|
14941
|
+
.u-my-1\.5 {
|
|
14637
14942
|
margin-top: 0.375rem;
|
|
14638
14943
|
margin-bottom: 0.375rem;
|
|
14639
14944
|
}
|
|
@@ -14641,7 +14946,7 @@ body.is-open-photoviewer {
|
|
|
14641
14946
|
margin-top: 0.5rem;
|
|
14642
14947
|
margin-bottom: 0.5rem;
|
|
14643
14948
|
}
|
|
14644
|
-
.u-my-
|
|
14949
|
+
.u-my-2\.5 {
|
|
14645
14950
|
margin-top: 0.625rem;
|
|
14646
14951
|
margin-bottom: 0.625rem;
|
|
14647
14952
|
}
|
|
@@ -14649,7 +14954,7 @@ body.is-open-photoviewer {
|
|
|
14649
14954
|
margin-top: 0.75rem;
|
|
14650
14955
|
margin-bottom: 0.75rem;
|
|
14651
14956
|
}
|
|
14652
|
-
.u-my-
|
|
14957
|
+
.u-my-3\.5 {
|
|
14653
14958
|
margin-top: 0.875rem;
|
|
14654
14959
|
margin-bottom: 0.875rem;
|
|
14655
14960
|
}
|
|
@@ -14661,7 +14966,7 @@ body.is-open-photoviewer {
|
|
|
14661
14966
|
margin-top: 1.25rem;
|
|
14662
14967
|
margin-bottom: 1.25rem;
|
|
14663
14968
|
}
|
|
14664
|
-
.u-my-
|
|
14969
|
+
.u-my-5\.5 {
|
|
14665
14970
|
margin-top: 1.375rem;
|
|
14666
14971
|
margin-bottom: 1.375rem;
|
|
14667
14972
|
}
|
|
@@ -14673,7 +14978,7 @@ body.is-open-photoviewer {
|
|
|
14673
14978
|
margin-top: 1.75rem;
|
|
14674
14979
|
margin-bottom: 1.75rem;
|
|
14675
14980
|
}
|
|
14676
|
-
.u-my-
|
|
14981
|
+
.u-my-7\.5 {
|
|
14677
14982
|
margin-top: 1.875rem;
|
|
14678
14983
|
margin-bottom: 1.875rem;
|
|
14679
14984
|
}
|
|
@@ -14779,19 +15084,19 @@ body.is-open-photoviewer {
|
|
|
14779
15084
|
.u-mt-1 {
|
|
14780
15085
|
margin-top: 0.25rem;
|
|
14781
15086
|
}
|
|
14782
|
-
.u-mt-
|
|
15087
|
+
.u-mt-1\.5 {
|
|
14783
15088
|
margin-top: 0.375rem;
|
|
14784
15089
|
}
|
|
14785
15090
|
.u-mt-2 {
|
|
14786
15091
|
margin-top: 0.5rem;
|
|
14787
15092
|
}
|
|
14788
|
-
.u-mt-
|
|
15093
|
+
.u-mt-2\.5 {
|
|
14789
15094
|
margin-top: 0.625rem;
|
|
14790
15095
|
}
|
|
14791
15096
|
.u-mt-3 {
|
|
14792
15097
|
margin-top: 0.75rem;
|
|
14793
15098
|
}
|
|
14794
|
-
.u-mt-
|
|
15099
|
+
.u-mt-3\.5 {
|
|
14795
15100
|
margin-top: 0.875rem;
|
|
14796
15101
|
}
|
|
14797
15102
|
.u-mt-4 {
|
|
@@ -14800,7 +15105,7 @@ body.is-open-photoviewer {
|
|
|
14800
15105
|
.u-mt-5 {
|
|
14801
15106
|
margin-top: 1.25rem;
|
|
14802
15107
|
}
|
|
14803
|
-
.u-mt-
|
|
15108
|
+
.u-mt-5\.5 {
|
|
14804
15109
|
margin-top: 1.375rem;
|
|
14805
15110
|
}
|
|
14806
15111
|
.u-mt-6 {
|
|
@@ -14809,7 +15114,7 @@ body.is-open-photoviewer {
|
|
|
14809
15114
|
.u-mt-7 {
|
|
14810
15115
|
margin-top: 1.75rem;
|
|
14811
15116
|
}
|
|
14812
|
-
.u-mt-
|
|
15117
|
+
.u-mt-7\.5 {
|
|
14813
15118
|
margin-top: 1.875rem;
|
|
14814
15119
|
}
|
|
14815
15120
|
.u-mt-8 {
|
|
@@ -14890,19 +15195,19 @@ body.is-open-photoviewer {
|
|
|
14890
15195
|
.u-me-1 {
|
|
14891
15196
|
margin-right: 0.25rem;
|
|
14892
15197
|
}
|
|
14893
|
-
.u-me-
|
|
15198
|
+
.u-me-1\.5 {
|
|
14894
15199
|
margin-right: 0.375rem;
|
|
14895
15200
|
}
|
|
14896
15201
|
.u-me-2 {
|
|
14897
15202
|
margin-right: 0.5rem;
|
|
14898
15203
|
}
|
|
14899
|
-
.u-me-
|
|
15204
|
+
.u-me-2\.5 {
|
|
14900
15205
|
margin-right: 0.625rem;
|
|
14901
15206
|
}
|
|
14902
15207
|
.u-me-3 {
|
|
14903
15208
|
margin-right: 0.75rem;
|
|
14904
15209
|
}
|
|
14905
|
-
.u-me-
|
|
15210
|
+
.u-me-3\.5 {
|
|
14906
15211
|
margin-right: 0.875rem;
|
|
14907
15212
|
}
|
|
14908
15213
|
.u-me-4 {
|
|
@@ -14911,7 +15216,7 @@ body.is-open-photoviewer {
|
|
|
14911
15216
|
.u-me-5 {
|
|
14912
15217
|
margin-right: 1.25rem;
|
|
14913
15218
|
}
|
|
14914
|
-
.u-me-
|
|
15219
|
+
.u-me-5\.5 {
|
|
14915
15220
|
margin-right: 1.375rem;
|
|
14916
15221
|
}
|
|
14917
15222
|
.u-me-6 {
|
|
@@ -14920,7 +15225,7 @@ body.is-open-photoviewer {
|
|
|
14920
15225
|
.u-me-7 {
|
|
14921
15226
|
margin-right: 1.75rem;
|
|
14922
15227
|
}
|
|
14923
|
-
.u-me-
|
|
15228
|
+
.u-me-7\.5 {
|
|
14924
15229
|
margin-right: 1.875rem;
|
|
14925
15230
|
}
|
|
14926
15231
|
.u-me-8 {
|
|
@@ -15001,19 +15306,19 @@ body.is-open-photoviewer {
|
|
|
15001
15306
|
.u-mb-1 {
|
|
15002
15307
|
margin-bottom: 0.25rem;
|
|
15003
15308
|
}
|
|
15004
|
-
.u-mb-
|
|
15309
|
+
.u-mb-1\.5 {
|
|
15005
15310
|
margin-bottom: 0.375rem;
|
|
15006
15311
|
}
|
|
15007
15312
|
.u-mb-2 {
|
|
15008
15313
|
margin-bottom: 0.5rem;
|
|
15009
15314
|
}
|
|
15010
|
-
.u-mb-
|
|
15315
|
+
.u-mb-2\.5 {
|
|
15011
15316
|
margin-bottom: 0.625rem;
|
|
15012
15317
|
}
|
|
15013
15318
|
.u-mb-3 {
|
|
15014
15319
|
margin-bottom: 0.75rem;
|
|
15015
15320
|
}
|
|
15016
|
-
.u-mb-
|
|
15321
|
+
.u-mb-3\.5 {
|
|
15017
15322
|
margin-bottom: 0.875rem;
|
|
15018
15323
|
}
|
|
15019
15324
|
.u-mb-4 {
|
|
@@ -15022,7 +15327,7 @@ body.is-open-photoviewer {
|
|
|
15022
15327
|
.u-mb-5 {
|
|
15023
15328
|
margin-bottom: 1.25rem;
|
|
15024
15329
|
}
|
|
15025
|
-
.u-mb-
|
|
15330
|
+
.u-mb-5\.5 {
|
|
15026
15331
|
margin-bottom: 1.375rem;
|
|
15027
15332
|
}
|
|
15028
15333
|
.u-mb-6 {
|
|
@@ -15031,7 +15336,7 @@ body.is-open-photoviewer {
|
|
|
15031
15336
|
.u-mb-7 {
|
|
15032
15337
|
margin-bottom: 1.75rem;
|
|
15033
15338
|
}
|
|
15034
|
-
.u-mb-
|
|
15339
|
+
.u-mb-7\.5 {
|
|
15035
15340
|
margin-bottom: 1.875rem;
|
|
15036
15341
|
}
|
|
15037
15342
|
.u-mb-8 {
|
|
@@ -15112,19 +15417,19 @@ body.is-open-photoviewer {
|
|
|
15112
15417
|
.u-ms-1 {
|
|
15113
15418
|
margin-left: 0.25rem;
|
|
15114
15419
|
}
|
|
15115
|
-
.u-ms-
|
|
15420
|
+
.u-ms-1\.5 {
|
|
15116
15421
|
margin-left: 0.375rem;
|
|
15117
15422
|
}
|
|
15118
15423
|
.u-ms-2 {
|
|
15119
15424
|
margin-left: 0.5rem;
|
|
15120
15425
|
}
|
|
15121
|
-
.u-ms-
|
|
15426
|
+
.u-ms-2\.5 {
|
|
15122
15427
|
margin-left: 0.625rem;
|
|
15123
15428
|
}
|
|
15124
15429
|
.u-ms-3 {
|
|
15125
15430
|
margin-left: 0.75rem;
|
|
15126
15431
|
}
|
|
15127
|
-
.u-ms-
|
|
15432
|
+
.u-ms-3\.5 {
|
|
15128
15433
|
margin-left: 0.875rem;
|
|
15129
15434
|
}
|
|
15130
15435
|
.u-ms-4 {
|
|
@@ -15133,7 +15438,7 @@ body.is-open-photoviewer {
|
|
|
15133
15438
|
.u-ms-5 {
|
|
15134
15439
|
margin-left: 1.25rem;
|
|
15135
15440
|
}
|
|
15136
|
-
.u-ms-
|
|
15441
|
+
.u-ms-5\.5 {
|
|
15137
15442
|
margin-left: 1.375rem;
|
|
15138
15443
|
}
|
|
15139
15444
|
.u-ms-6 {
|
|
@@ -15142,7 +15447,7 @@ body.is-open-photoviewer {
|
|
|
15142
15447
|
.u-ms-7 {
|
|
15143
15448
|
margin-left: 1.75rem;
|
|
15144
15449
|
}
|
|
15145
|
-
.u-ms-
|
|
15450
|
+
.u-ms-7\.5 {
|
|
15146
15451
|
margin-left: 1.875rem;
|
|
15147
15452
|
}
|
|
15148
15453
|
.u-ms-8 {
|
|
@@ -15223,19 +15528,19 @@ body.is-open-photoviewer {
|
|
|
15223
15528
|
.u-p-1 {
|
|
15224
15529
|
padding: 0.25rem;
|
|
15225
15530
|
}
|
|
15226
|
-
.u-p-
|
|
15531
|
+
.u-p-1\.5 {
|
|
15227
15532
|
padding: 0.375rem;
|
|
15228
15533
|
}
|
|
15229
15534
|
.u-p-2 {
|
|
15230
15535
|
padding: 0.5rem;
|
|
15231
15536
|
}
|
|
15232
|
-
.u-p-
|
|
15537
|
+
.u-p-2\.5 {
|
|
15233
15538
|
padding: 0.625rem;
|
|
15234
15539
|
}
|
|
15235
15540
|
.u-p-3 {
|
|
15236
15541
|
padding: 0.75rem;
|
|
15237
15542
|
}
|
|
15238
|
-
.u-p-
|
|
15543
|
+
.u-p-3\.5 {
|
|
15239
15544
|
padding: 0.875rem;
|
|
15240
15545
|
}
|
|
15241
15546
|
.u-p-4 {
|
|
@@ -15244,7 +15549,7 @@ body.is-open-photoviewer {
|
|
|
15244
15549
|
.u-p-5 {
|
|
15245
15550
|
padding: 1.25rem;
|
|
15246
15551
|
}
|
|
15247
|
-
.u-p-
|
|
15552
|
+
.u-p-5\.5 {
|
|
15248
15553
|
padding: 1.375rem;
|
|
15249
15554
|
}
|
|
15250
15555
|
.u-p-6 {
|
|
@@ -15253,7 +15558,7 @@ body.is-open-photoviewer {
|
|
|
15253
15558
|
.u-p-7 {
|
|
15254
15559
|
padding: 1.75rem;
|
|
15255
15560
|
}
|
|
15256
|
-
.u-p-
|
|
15561
|
+
.u-p-7\.5 {
|
|
15257
15562
|
padding: 1.875rem;
|
|
15258
15563
|
}
|
|
15259
15564
|
.u-p-8 {
|
|
@@ -15333,7 +15638,7 @@ body.is-open-photoviewer {
|
|
|
15333
15638
|
padding-right: 0.25rem;
|
|
15334
15639
|
padding-left: 0.25rem;
|
|
15335
15640
|
}
|
|
15336
|
-
.u-px-
|
|
15641
|
+
.u-px-1\.5 {
|
|
15337
15642
|
padding-right: 0.375rem;
|
|
15338
15643
|
padding-left: 0.375rem;
|
|
15339
15644
|
}
|
|
@@ -15341,7 +15646,7 @@ body.is-open-photoviewer {
|
|
|
15341
15646
|
padding-right: 0.5rem;
|
|
15342
15647
|
padding-left: 0.5rem;
|
|
15343
15648
|
}
|
|
15344
|
-
.u-px-
|
|
15649
|
+
.u-px-2\.5 {
|
|
15345
15650
|
padding-right: 0.625rem;
|
|
15346
15651
|
padding-left: 0.625rem;
|
|
15347
15652
|
}
|
|
@@ -15349,7 +15654,7 @@ body.is-open-photoviewer {
|
|
|
15349
15654
|
padding-right: 0.75rem;
|
|
15350
15655
|
padding-left: 0.75rem;
|
|
15351
15656
|
}
|
|
15352
|
-
.u-px-
|
|
15657
|
+
.u-px-3\.5 {
|
|
15353
15658
|
padding-right: 0.875rem;
|
|
15354
15659
|
padding-left: 0.875rem;
|
|
15355
15660
|
}
|
|
@@ -15361,7 +15666,7 @@ body.is-open-photoviewer {
|
|
|
15361
15666
|
padding-right: 1.25rem;
|
|
15362
15667
|
padding-left: 1.25rem;
|
|
15363
15668
|
}
|
|
15364
|
-
.u-px-
|
|
15669
|
+
.u-px-5\.5 {
|
|
15365
15670
|
padding-right: 1.375rem;
|
|
15366
15671
|
padding-left: 1.375rem;
|
|
15367
15672
|
}
|
|
@@ -15373,7 +15678,7 @@ body.is-open-photoviewer {
|
|
|
15373
15678
|
padding-right: 1.75rem;
|
|
15374
15679
|
padding-left: 1.75rem;
|
|
15375
15680
|
}
|
|
15376
|
-
.u-px-
|
|
15681
|
+
.u-px-7\.5 {
|
|
15377
15682
|
padding-right: 1.875rem;
|
|
15378
15683
|
padding-left: 1.875rem;
|
|
15379
15684
|
}
|
|
@@ -15477,7 +15782,7 @@ body.is-open-photoviewer {
|
|
|
15477
15782
|
padding-top: 0.25rem;
|
|
15478
15783
|
padding-bottom: 0.25rem;
|
|
15479
15784
|
}
|
|
15480
|
-
.u-py-
|
|
15785
|
+
.u-py-1\.5 {
|
|
15481
15786
|
padding-top: 0.375rem;
|
|
15482
15787
|
padding-bottom: 0.375rem;
|
|
15483
15788
|
}
|
|
@@ -15485,7 +15790,7 @@ body.is-open-photoviewer {
|
|
|
15485
15790
|
padding-top: 0.5rem;
|
|
15486
15791
|
padding-bottom: 0.5rem;
|
|
15487
15792
|
}
|
|
15488
|
-
.u-py-
|
|
15793
|
+
.u-py-2\.5 {
|
|
15489
15794
|
padding-top: 0.625rem;
|
|
15490
15795
|
padding-bottom: 0.625rem;
|
|
15491
15796
|
}
|
|
@@ -15493,7 +15798,7 @@ body.is-open-photoviewer {
|
|
|
15493
15798
|
padding-top: 0.75rem;
|
|
15494
15799
|
padding-bottom: 0.75rem;
|
|
15495
15800
|
}
|
|
15496
|
-
.u-py-
|
|
15801
|
+
.u-py-3\.5 {
|
|
15497
15802
|
padding-top: 0.875rem;
|
|
15498
15803
|
padding-bottom: 0.875rem;
|
|
15499
15804
|
}
|
|
@@ -15505,7 +15810,7 @@ body.is-open-photoviewer {
|
|
|
15505
15810
|
padding-top: 1.25rem;
|
|
15506
15811
|
padding-bottom: 1.25rem;
|
|
15507
15812
|
}
|
|
15508
|
-
.u-py-
|
|
15813
|
+
.u-py-5\.5 {
|
|
15509
15814
|
padding-top: 1.375rem;
|
|
15510
15815
|
padding-bottom: 1.375rem;
|
|
15511
15816
|
}
|
|
@@ -15517,7 +15822,7 @@ body.is-open-photoviewer {
|
|
|
15517
15822
|
padding-top: 1.75rem;
|
|
15518
15823
|
padding-bottom: 1.75rem;
|
|
15519
15824
|
}
|
|
15520
|
-
.u-py-
|
|
15825
|
+
.u-py-7\.5 {
|
|
15521
15826
|
padding-top: 1.875rem;
|
|
15522
15827
|
padding-bottom: 1.875rem;
|
|
15523
15828
|
}
|
|
@@ -15619,19 +15924,19 @@ body.is-open-photoviewer {
|
|
|
15619
15924
|
.u-pt-1 {
|
|
15620
15925
|
padding-top: 0.25rem;
|
|
15621
15926
|
}
|
|
15622
|
-
.u-pt-
|
|
15927
|
+
.u-pt-1\.5 {
|
|
15623
15928
|
padding-top: 0.375rem;
|
|
15624
15929
|
}
|
|
15625
15930
|
.u-pt-2 {
|
|
15626
15931
|
padding-top: 0.5rem;
|
|
15627
15932
|
}
|
|
15628
|
-
.u-pt-
|
|
15933
|
+
.u-pt-2\.5 {
|
|
15629
15934
|
padding-top: 0.625rem;
|
|
15630
15935
|
}
|
|
15631
15936
|
.u-pt-3 {
|
|
15632
15937
|
padding-top: 0.75rem;
|
|
15633
15938
|
}
|
|
15634
|
-
.u-pt-
|
|
15939
|
+
.u-pt-3\.5 {
|
|
15635
15940
|
padding-top: 0.875rem;
|
|
15636
15941
|
}
|
|
15637
15942
|
.u-pt-4 {
|
|
@@ -15640,7 +15945,7 @@ body.is-open-photoviewer {
|
|
|
15640
15945
|
.u-pt-5 {
|
|
15641
15946
|
padding-top: 1.25rem;
|
|
15642
15947
|
}
|
|
15643
|
-
.u-pt-
|
|
15948
|
+
.u-pt-5\.5 {
|
|
15644
15949
|
padding-top: 1.375rem;
|
|
15645
15950
|
}
|
|
15646
15951
|
.u-pt-6 {
|
|
@@ -15649,7 +15954,7 @@ body.is-open-photoviewer {
|
|
|
15649
15954
|
.u-pt-7 {
|
|
15650
15955
|
padding-top: 1.75rem;
|
|
15651
15956
|
}
|
|
15652
|
-
.u-pt-
|
|
15957
|
+
.u-pt-7\.5 {
|
|
15653
15958
|
padding-top: 1.875rem;
|
|
15654
15959
|
}
|
|
15655
15960
|
.u-pt-8 {
|
|
@@ -15727,19 +16032,19 @@ body.is-open-photoviewer {
|
|
|
15727
16032
|
.u-pe-1 {
|
|
15728
16033
|
padding-right: 0.25rem;
|
|
15729
16034
|
}
|
|
15730
|
-
.u-pe-
|
|
16035
|
+
.u-pe-1\.5 {
|
|
15731
16036
|
padding-right: 0.375rem;
|
|
15732
16037
|
}
|
|
15733
16038
|
.u-pe-2 {
|
|
15734
16039
|
padding-right: 0.5rem;
|
|
15735
16040
|
}
|
|
15736
|
-
.u-pe-
|
|
16041
|
+
.u-pe-2\.5 {
|
|
15737
16042
|
padding-right: 0.625rem;
|
|
15738
16043
|
}
|
|
15739
16044
|
.u-pe-3 {
|
|
15740
16045
|
padding-right: 0.75rem;
|
|
15741
16046
|
}
|
|
15742
|
-
.u-pe-
|
|
16047
|
+
.u-pe-3\.5 {
|
|
15743
16048
|
padding-right: 0.875rem;
|
|
15744
16049
|
}
|
|
15745
16050
|
.u-pe-4 {
|
|
@@ -15748,7 +16053,7 @@ body.is-open-photoviewer {
|
|
|
15748
16053
|
.u-pe-5 {
|
|
15749
16054
|
padding-right: 1.25rem;
|
|
15750
16055
|
}
|
|
15751
|
-
.u-pe-
|
|
16056
|
+
.u-pe-5\.5 {
|
|
15752
16057
|
padding-right: 1.375rem;
|
|
15753
16058
|
}
|
|
15754
16059
|
.u-pe-6 {
|
|
@@ -15757,7 +16062,7 @@ body.is-open-photoviewer {
|
|
|
15757
16062
|
.u-pe-7 {
|
|
15758
16063
|
padding-right: 1.75rem;
|
|
15759
16064
|
}
|
|
15760
|
-
.u-pe-
|
|
16065
|
+
.u-pe-7\.5 {
|
|
15761
16066
|
padding-right: 1.875rem;
|
|
15762
16067
|
}
|
|
15763
16068
|
.u-pe-8 {
|
|
@@ -15835,19 +16140,19 @@ body.is-open-photoviewer {
|
|
|
15835
16140
|
.u-pb-1 {
|
|
15836
16141
|
padding-bottom: 0.25rem;
|
|
15837
16142
|
}
|
|
15838
|
-
.u-pb-
|
|
16143
|
+
.u-pb-1\.5 {
|
|
15839
16144
|
padding-bottom: 0.375rem;
|
|
15840
16145
|
}
|
|
15841
16146
|
.u-pb-2 {
|
|
15842
16147
|
padding-bottom: 0.5rem;
|
|
15843
16148
|
}
|
|
15844
|
-
.u-pb-
|
|
16149
|
+
.u-pb-2\.5 {
|
|
15845
16150
|
padding-bottom: 0.625rem;
|
|
15846
16151
|
}
|
|
15847
16152
|
.u-pb-3 {
|
|
15848
16153
|
padding-bottom: 0.75rem;
|
|
15849
16154
|
}
|
|
15850
|
-
.u-pb-
|
|
16155
|
+
.u-pb-3\.5 {
|
|
15851
16156
|
padding-bottom: 0.875rem;
|
|
15852
16157
|
}
|
|
15853
16158
|
.u-pb-4 {
|
|
@@ -15856,7 +16161,7 @@ body.is-open-photoviewer {
|
|
|
15856
16161
|
.u-pb-5 {
|
|
15857
16162
|
padding-bottom: 1.25rem;
|
|
15858
16163
|
}
|
|
15859
|
-
.u-pb-
|
|
16164
|
+
.u-pb-5\.5 {
|
|
15860
16165
|
padding-bottom: 1.375rem;
|
|
15861
16166
|
}
|
|
15862
16167
|
.u-pb-6 {
|
|
@@ -15865,7 +16170,7 @@ body.is-open-photoviewer {
|
|
|
15865
16170
|
.u-pb-7 {
|
|
15866
16171
|
padding-bottom: 1.75rem;
|
|
15867
16172
|
}
|
|
15868
|
-
.u-pb-
|
|
16173
|
+
.u-pb-7\.5 {
|
|
15869
16174
|
padding-bottom: 1.875rem;
|
|
15870
16175
|
}
|
|
15871
16176
|
.u-pb-8 {
|
|
@@ -15943,19 +16248,19 @@ body.is-open-photoviewer {
|
|
|
15943
16248
|
.u-ps-1 {
|
|
15944
16249
|
padding-left: 0.25rem;
|
|
15945
16250
|
}
|
|
15946
|
-
.u-ps-
|
|
16251
|
+
.u-ps-1\.5 {
|
|
15947
16252
|
padding-left: 0.375rem;
|
|
15948
16253
|
}
|
|
15949
16254
|
.u-ps-2 {
|
|
15950
16255
|
padding-left: 0.5rem;
|
|
15951
16256
|
}
|
|
15952
|
-
.u-ps-
|
|
16257
|
+
.u-ps-2\.5 {
|
|
15953
16258
|
padding-left: 0.625rem;
|
|
15954
16259
|
}
|
|
15955
16260
|
.u-ps-3 {
|
|
15956
16261
|
padding-left: 0.75rem;
|
|
15957
16262
|
}
|
|
15958
|
-
.u-ps-
|
|
16263
|
+
.u-ps-3\.5 {
|
|
15959
16264
|
padding-left: 0.875rem;
|
|
15960
16265
|
}
|
|
15961
16266
|
.u-ps-4 {
|
|
@@ -15964,7 +16269,7 @@ body.is-open-photoviewer {
|
|
|
15964
16269
|
.u-ps-5 {
|
|
15965
16270
|
padding-left: 1.25rem;
|
|
15966
16271
|
}
|
|
15967
|
-
.u-ps-
|
|
16272
|
+
.u-ps-5\.5 {
|
|
15968
16273
|
padding-left: 1.375rem;
|
|
15969
16274
|
}
|
|
15970
16275
|
.u-ps-6 {
|
|
@@ -15973,7 +16278,7 @@ body.is-open-photoviewer {
|
|
|
15973
16278
|
.u-ps-7 {
|
|
15974
16279
|
padding-left: 1.75rem;
|
|
15975
16280
|
}
|
|
15976
|
-
.u-ps-
|
|
16281
|
+
.u-ps-7\.5 {
|
|
15977
16282
|
padding-left: 1.875rem;
|
|
15978
16283
|
}
|
|
15979
16284
|
.u-ps-8 {
|
|
@@ -16051,19 +16356,19 @@ body.is-open-photoviewer {
|
|
|
16051
16356
|
.u-gap-1 {
|
|
16052
16357
|
gap: 0.25rem;
|
|
16053
16358
|
}
|
|
16054
|
-
.u-gap-
|
|
16359
|
+
.u-gap-1\.5 {
|
|
16055
16360
|
gap: 0.375rem;
|
|
16056
16361
|
}
|
|
16057
16362
|
.u-gap-2 {
|
|
16058
16363
|
gap: 0.5rem;
|
|
16059
16364
|
}
|
|
16060
|
-
.u-gap-
|
|
16365
|
+
.u-gap-2\.5 {
|
|
16061
16366
|
gap: 0.625rem;
|
|
16062
16367
|
}
|
|
16063
16368
|
.u-gap-3 {
|
|
16064
16369
|
gap: 0.75rem;
|
|
16065
16370
|
}
|
|
16066
|
-
.u-gap-
|
|
16371
|
+
.u-gap-3\.5 {
|
|
16067
16372
|
gap: 0.875rem;
|
|
16068
16373
|
}
|
|
16069
16374
|
.u-gap-4 {
|
|
@@ -16072,7 +16377,7 @@ body.is-open-photoviewer {
|
|
|
16072
16377
|
.u-gap-5 {
|
|
16073
16378
|
gap: 1.25rem;
|
|
16074
16379
|
}
|
|
16075
|
-
.u-gap-
|
|
16380
|
+
.u-gap-5\.5 {
|
|
16076
16381
|
gap: 1.375rem;
|
|
16077
16382
|
}
|
|
16078
16383
|
.u-gap-6 {
|
|
@@ -16081,7 +16386,7 @@ body.is-open-photoviewer {
|
|
|
16081
16386
|
.u-gap-7 {
|
|
16082
16387
|
gap: 1.75rem;
|
|
16083
16388
|
}
|
|
16084
|
-
.u-gap-
|
|
16389
|
+
.u-gap-7\.5 {
|
|
16085
16390
|
gap: 1.875rem;
|
|
16086
16391
|
}
|
|
16087
16392
|
.u-gap-8 {
|
|
@@ -16159,19 +16464,19 @@ body.is-open-photoviewer {
|
|
|
16159
16464
|
.u-row-gap-1 {
|
|
16160
16465
|
row-gap: 0.25rem;
|
|
16161
16466
|
}
|
|
16162
|
-
.u-row-gap-
|
|
16467
|
+
.u-row-gap-1\.5 {
|
|
16163
16468
|
row-gap: 0.375rem;
|
|
16164
16469
|
}
|
|
16165
16470
|
.u-row-gap-2 {
|
|
16166
16471
|
row-gap: 0.5rem;
|
|
16167
16472
|
}
|
|
16168
|
-
.u-row-gap-
|
|
16473
|
+
.u-row-gap-2\.5 {
|
|
16169
16474
|
row-gap: 0.625rem;
|
|
16170
16475
|
}
|
|
16171
16476
|
.u-row-gap-3 {
|
|
16172
16477
|
row-gap: 0.75rem;
|
|
16173
16478
|
}
|
|
16174
|
-
.u-row-gap-
|
|
16479
|
+
.u-row-gap-3\.5 {
|
|
16175
16480
|
row-gap: 0.875rem;
|
|
16176
16481
|
}
|
|
16177
16482
|
.u-row-gap-4 {
|
|
@@ -16180,7 +16485,7 @@ body.is-open-photoviewer {
|
|
|
16180
16485
|
.u-row-gap-5 {
|
|
16181
16486
|
row-gap: 1.25rem;
|
|
16182
16487
|
}
|
|
16183
|
-
.u-row-gap-
|
|
16488
|
+
.u-row-gap-5\.5 {
|
|
16184
16489
|
row-gap: 1.375rem;
|
|
16185
16490
|
}
|
|
16186
16491
|
.u-row-gap-6 {
|
|
@@ -16189,7 +16494,7 @@ body.is-open-photoviewer {
|
|
|
16189
16494
|
.u-row-gap-7 {
|
|
16190
16495
|
row-gap: 1.75rem;
|
|
16191
16496
|
}
|
|
16192
|
-
.u-row-gap-
|
|
16497
|
+
.u-row-gap-7\.5 {
|
|
16193
16498
|
row-gap: 1.875rem;
|
|
16194
16499
|
}
|
|
16195
16500
|
.u-row-gap-8 {
|
|
@@ -16269,7 +16574,7 @@ body.is-open-photoviewer {
|
|
|
16269
16574
|
-moz-column-gap: 0.25rem;
|
|
16270
16575
|
column-gap: 0.25rem;
|
|
16271
16576
|
}
|
|
16272
|
-
.u-column-gap-
|
|
16577
|
+
.u-column-gap-1\.5 {
|
|
16273
16578
|
-moz-column-gap: 0.375rem;
|
|
16274
16579
|
column-gap: 0.375rem;
|
|
16275
16580
|
}
|
|
@@ -16277,7 +16582,7 @@ body.is-open-photoviewer {
|
|
|
16277
16582
|
-moz-column-gap: 0.5rem;
|
|
16278
16583
|
column-gap: 0.5rem;
|
|
16279
16584
|
}
|
|
16280
|
-
.u-column-gap-
|
|
16585
|
+
.u-column-gap-2\.5 {
|
|
16281
16586
|
-moz-column-gap: 0.625rem;
|
|
16282
16587
|
column-gap: 0.625rem;
|
|
16283
16588
|
}
|
|
@@ -16285,7 +16590,7 @@ body.is-open-photoviewer {
|
|
|
16285
16590
|
-moz-column-gap: 0.75rem;
|
|
16286
16591
|
column-gap: 0.75rem;
|
|
16287
16592
|
}
|
|
16288
|
-
.u-column-gap-
|
|
16593
|
+
.u-column-gap-3\.5 {
|
|
16289
16594
|
-moz-column-gap: 0.875rem;
|
|
16290
16595
|
column-gap: 0.875rem;
|
|
16291
16596
|
}
|
|
@@ -16297,7 +16602,7 @@ body.is-open-photoviewer {
|
|
|
16297
16602
|
-moz-column-gap: 1.25rem;
|
|
16298
16603
|
column-gap: 1.25rem;
|
|
16299
16604
|
}
|
|
16300
|
-
.u-column-gap-
|
|
16605
|
+
.u-column-gap-5\.5 {
|
|
16301
16606
|
-moz-column-gap: 1.375rem;
|
|
16302
16607
|
column-gap: 1.375rem;
|
|
16303
16608
|
}
|
|
@@ -16309,7 +16614,7 @@ body.is-open-photoviewer {
|
|
|
16309
16614
|
-moz-column-gap: 1.75rem;
|
|
16310
16615
|
column-gap: 1.75rem;
|
|
16311
16616
|
}
|
|
16312
|
-
.u-column-gap-
|
|
16617
|
+
.u-column-gap-7\.5 {
|
|
16313
16618
|
-moz-column-gap: 1.875rem;
|
|
16314
16619
|
column-gap: 1.875rem;
|
|
16315
16620
|
}
|