@nuvoui/core 1.2.6 → 1.2.7
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/nuvoui.css +821 -526
- package/dist/nuvoui.css.map +1 -1
- package/dist/nuvoui.min.css +1 -1
- package/dist/nuvoui.min.css.map +1 -1
- package/package.json +2 -2
- package/src/styles/abstracts/_config.scss +50 -16
- package/src/styles/layouts/_grid.scss +6 -6
- package/src/styles/mixins-map.json +482 -0
- package/src/styles/mixins-map.scss +1 -1085
- package/src/styles/themes/_theme.scss +53 -69
- package/src/styles/utilities/_backdrop-filters.scss +51 -30
- package/src/styles/utilities/_borders.scss +1 -1
- package/src/styles/utilities/_shadows.scss +2 -2
- package/src/styles/utilities/_z-index.scss +5 -5
package/dist/nuvoui.css
CHANGED
|
@@ -143,7 +143,7 @@ textarea:not([rows]) {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
html {
|
|
146
|
-
font-size:
|
|
146
|
+
font-size: 16px;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
body {
|
|
@@ -185,6 +185,10 @@ h5 {
|
|
|
185
185
|
font-size: 1.25rem;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
+
h6 {
|
|
189
|
+
font-size: 1rem;
|
|
190
|
+
}
|
|
191
|
+
|
|
188
192
|
p {
|
|
189
193
|
margin-bottom: 1rem;
|
|
190
194
|
}
|
|
@@ -3218,303 +3222,303 @@ code {
|
|
|
3218
3222
|
grid-row: span 12/span 12;
|
|
3219
3223
|
}
|
|
3220
3224
|
}
|
|
3221
|
-
.grid
|
|
3225
|
+
.grid.justify-start {
|
|
3222
3226
|
justify-items: start;
|
|
3223
3227
|
}
|
|
3224
|
-
.grid
|
|
3228
|
+
.grid.align-start {
|
|
3225
3229
|
align-items: start;
|
|
3226
3230
|
}
|
|
3227
|
-
.grid
|
|
3231
|
+
.grid.place-start {
|
|
3228
3232
|
place-items: start;
|
|
3229
3233
|
}
|
|
3230
3234
|
@media (min-width: 480px) {
|
|
3231
|
-
.grid
|
|
3235
|
+
.grid.justify-start\@xs {
|
|
3232
3236
|
justify-items: start;
|
|
3233
3237
|
}
|
|
3234
|
-
.grid
|
|
3238
|
+
.grid.align-start\@xs {
|
|
3235
3239
|
align-items: start;
|
|
3236
3240
|
}
|
|
3237
|
-
.grid
|
|
3241
|
+
.grid.place-start\@xs {
|
|
3238
3242
|
place-items: start;
|
|
3239
3243
|
}
|
|
3240
3244
|
}
|
|
3241
3245
|
@media (min-width: 640px) {
|
|
3242
|
-
.grid
|
|
3246
|
+
.grid.justify-start\@sm {
|
|
3243
3247
|
justify-items: start;
|
|
3244
3248
|
}
|
|
3245
|
-
.grid
|
|
3249
|
+
.grid.align-start\@sm {
|
|
3246
3250
|
align-items: start;
|
|
3247
3251
|
}
|
|
3248
|
-
.grid
|
|
3252
|
+
.grid.place-start\@sm {
|
|
3249
3253
|
place-items: start;
|
|
3250
3254
|
}
|
|
3251
3255
|
}
|
|
3252
3256
|
@media (min-width: 768px) {
|
|
3253
|
-
.grid
|
|
3257
|
+
.grid.justify-start\@md {
|
|
3254
3258
|
justify-items: start;
|
|
3255
3259
|
}
|
|
3256
|
-
.grid
|
|
3260
|
+
.grid.align-start\@md {
|
|
3257
3261
|
align-items: start;
|
|
3258
3262
|
}
|
|
3259
|
-
.grid
|
|
3263
|
+
.grid.place-start\@md {
|
|
3260
3264
|
place-items: start;
|
|
3261
3265
|
}
|
|
3262
3266
|
}
|
|
3263
3267
|
@media (min-width: 1024px) {
|
|
3264
|
-
.grid
|
|
3268
|
+
.grid.justify-start\@lg {
|
|
3265
3269
|
justify-items: start;
|
|
3266
3270
|
}
|
|
3267
|
-
.grid
|
|
3271
|
+
.grid.align-start\@lg {
|
|
3268
3272
|
align-items: start;
|
|
3269
3273
|
}
|
|
3270
|
-
.grid
|
|
3274
|
+
.grid.place-start\@lg {
|
|
3271
3275
|
place-items: start;
|
|
3272
3276
|
}
|
|
3273
3277
|
}
|
|
3274
3278
|
@media (min-width: 1280px) {
|
|
3275
|
-
.grid
|
|
3279
|
+
.grid.justify-start\@xl {
|
|
3276
3280
|
justify-items: start;
|
|
3277
3281
|
}
|
|
3278
|
-
.grid
|
|
3282
|
+
.grid.align-start\@xl {
|
|
3279
3283
|
align-items: start;
|
|
3280
3284
|
}
|
|
3281
|
-
.grid
|
|
3285
|
+
.grid.place-start\@xl {
|
|
3282
3286
|
place-items: start;
|
|
3283
3287
|
}
|
|
3284
3288
|
}
|
|
3285
3289
|
@media (min-width: 1536px) {
|
|
3286
|
-
.grid
|
|
3290
|
+
.grid.justify-start\@2xl {
|
|
3287
3291
|
justify-items: start;
|
|
3288
3292
|
}
|
|
3289
|
-
.grid
|
|
3293
|
+
.grid.align-start\@2xl {
|
|
3290
3294
|
align-items: start;
|
|
3291
3295
|
}
|
|
3292
|
-
.grid
|
|
3296
|
+
.grid.place-start\@2xl {
|
|
3293
3297
|
place-items: start;
|
|
3294
3298
|
}
|
|
3295
3299
|
}
|
|
3296
|
-
.grid
|
|
3300
|
+
.grid.justify-end {
|
|
3297
3301
|
justify-items: end;
|
|
3298
3302
|
}
|
|
3299
|
-
.grid
|
|
3303
|
+
.grid.align-end {
|
|
3300
3304
|
align-items: end;
|
|
3301
3305
|
}
|
|
3302
|
-
.grid
|
|
3306
|
+
.grid.place-end {
|
|
3303
3307
|
place-items: end;
|
|
3304
3308
|
}
|
|
3305
3309
|
@media (min-width: 480px) {
|
|
3306
|
-
.grid
|
|
3310
|
+
.grid.justify-end\@xs {
|
|
3307
3311
|
justify-items: end;
|
|
3308
3312
|
}
|
|
3309
|
-
.grid
|
|
3313
|
+
.grid.align-end\@xs {
|
|
3310
3314
|
align-items: end;
|
|
3311
3315
|
}
|
|
3312
|
-
.grid
|
|
3316
|
+
.grid.place-end\@xs {
|
|
3313
3317
|
place-items: end;
|
|
3314
3318
|
}
|
|
3315
3319
|
}
|
|
3316
3320
|
@media (min-width: 640px) {
|
|
3317
|
-
.grid
|
|
3321
|
+
.grid.justify-end\@sm {
|
|
3318
3322
|
justify-items: end;
|
|
3319
3323
|
}
|
|
3320
|
-
.grid
|
|
3324
|
+
.grid.align-end\@sm {
|
|
3321
3325
|
align-items: end;
|
|
3322
3326
|
}
|
|
3323
|
-
.grid
|
|
3327
|
+
.grid.place-end\@sm {
|
|
3324
3328
|
place-items: end;
|
|
3325
3329
|
}
|
|
3326
3330
|
}
|
|
3327
3331
|
@media (min-width: 768px) {
|
|
3328
|
-
.grid
|
|
3332
|
+
.grid.justify-end\@md {
|
|
3329
3333
|
justify-items: end;
|
|
3330
3334
|
}
|
|
3331
|
-
.grid
|
|
3335
|
+
.grid.align-end\@md {
|
|
3332
3336
|
align-items: end;
|
|
3333
3337
|
}
|
|
3334
|
-
.grid
|
|
3338
|
+
.grid.place-end\@md {
|
|
3335
3339
|
place-items: end;
|
|
3336
3340
|
}
|
|
3337
3341
|
}
|
|
3338
3342
|
@media (min-width: 1024px) {
|
|
3339
|
-
.grid
|
|
3343
|
+
.grid.justify-end\@lg {
|
|
3340
3344
|
justify-items: end;
|
|
3341
3345
|
}
|
|
3342
|
-
.grid
|
|
3346
|
+
.grid.align-end\@lg {
|
|
3343
3347
|
align-items: end;
|
|
3344
3348
|
}
|
|
3345
|
-
.grid
|
|
3349
|
+
.grid.place-end\@lg {
|
|
3346
3350
|
place-items: end;
|
|
3347
3351
|
}
|
|
3348
3352
|
}
|
|
3349
3353
|
@media (min-width: 1280px) {
|
|
3350
|
-
.grid
|
|
3354
|
+
.grid.justify-end\@xl {
|
|
3351
3355
|
justify-items: end;
|
|
3352
3356
|
}
|
|
3353
|
-
.grid
|
|
3357
|
+
.grid.align-end\@xl {
|
|
3354
3358
|
align-items: end;
|
|
3355
3359
|
}
|
|
3356
|
-
.grid
|
|
3360
|
+
.grid.place-end\@xl {
|
|
3357
3361
|
place-items: end;
|
|
3358
3362
|
}
|
|
3359
3363
|
}
|
|
3360
3364
|
@media (min-width: 1536px) {
|
|
3361
|
-
.grid
|
|
3365
|
+
.grid.justify-end\@2xl {
|
|
3362
3366
|
justify-items: end;
|
|
3363
3367
|
}
|
|
3364
|
-
.grid
|
|
3368
|
+
.grid.align-end\@2xl {
|
|
3365
3369
|
align-items: end;
|
|
3366
3370
|
}
|
|
3367
|
-
.grid
|
|
3371
|
+
.grid.place-end\@2xl {
|
|
3368
3372
|
place-items: end;
|
|
3369
3373
|
}
|
|
3370
3374
|
}
|
|
3371
|
-
.grid
|
|
3375
|
+
.grid.justify-center {
|
|
3372
3376
|
justify-items: center;
|
|
3373
3377
|
}
|
|
3374
|
-
.grid
|
|
3378
|
+
.grid.align-center {
|
|
3375
3379
|
align-items: center;
|
|
3376
3380
|
}
|
|
3377
|
-
.grid
|
|
3381
|
+
.grid.place-center {
|
|
3378
3382
|
place-items: center;
|
|
3379
3383
|
}
|
|
3380
3384
|
@media (min-width: 480px) {
|
|
3381
|
-
.grid
|
|
3385
|
+
.grid.justify-center\@xs {
|
|
3382
3386
|
justify-items: center;
|
|
3383
3387
|
}
|
|
3384
|
-
.grid
|
|
3388
|
+
.grid.align-center\@xs {
|
|
3385
3389
|
align-items: center;
|
|
3386
3390
|
}
|
|
3387
|
-
.grid
|
|
3391
|
+
.grid.place-center\@xs {
|
|
3388
3392
|
place-items: center;
|
|
3389
3393
|
}
|
|
3390
3394
|
}
|
|
3391
3395
|
@media (min-width: 640px) {
|
|
3392
|
-
.grid
|
|
3396
|
+
.grid.justify-center\@sm {
|
|
3393
3397
|
justify-items: center;
|
|
3394
3398
|
}
|
|
3395
|
-
.grid
|
|
3399
|
+
.grid.align-center\@sm {
|
|
3396
3400
|
align-items: center;
|
|
3397
3401
|
}
|
|
3398
|
-
.grid
|
|
3402
|
+
.grid.place-center\@sm {
|
|
3399
3403
|
place-items: center;
|
|
3400
3404
|
}
|
|
3401
3405
|
}
|
|
3402
3406
|
@media (min-width: 768px) {
|
|
3403
|
-
.grid
|
|
3407
|
+
.grid.justify-center\@md {
|
|
3404
3408
|
justify-items: center;
|
|
3405
3409
|
}
|
|
3406
|
-
.grid
|
|
3410
|
+
.grid.align-center\@md {
|
|
3407
3411
|
align-items: center;
|
|
3408
3412
|
}
|
|
3409
|
-
.grid
|
|
3413
|
+
.grid.place-center\@md {
|
|
3410
3414
|
place-items: center;
|
|
3411
3415
|
}
|
|
3412
3416
|
}
|
|
3413
3417
|
@media (min-width: 1024px) {
|
|
3414
|
-
.grid
|
|
3418
|
+
.grid.justify-center\@lg {
|
|
3415
3419
|
justify-items: center;
|
|
3416
3420
|
}
|
|
3417
|
-
.grid
|
|
3421
|
+
.grid.align-center\@lg {
|
|
3418
3422
|
align-items: center;
|
|
3419
3423
|
}
|
|
3420
|
-
.grid
|
|
3424
|
+
.grid.place-center\@lg {
|
|
3421
3425
|
place-items: center;
|
|
3422
3426
|
}
|
|
3423
3427
|
}
|
|
3424
3428
|
@media (min-width: 1280px) {
|
|
3425
|
-
.grid
|
|
3429
|
+
.grid.justify-center\@xl {
|
|
3426
3430
|
justify-items: center;
|
|
3427
3431
|
}
|
|
3428
|
-
.grid
|
|
3432
|
+
.grid.align-center\@xl {
|
|
3429
3433
|
align-items: center;
|
|
3430
3434
|
}
|
|
3431
|
-
.grid
|
|
3435
|
+
.grid.place-center\@xl {
|
|
3432
3436
|
place-items: center;
|
|
3433
3437
|
}
|
|
3434
3438
|
}
|
|
3435
3439
|
@media (min-width: 1536px) {
|
|
3436
|
-
.grid
|
|
3440
|
+
.grid.justify-center\@2xl {
|
|
3437
3441
|
justify-items: center;
|
|
3438
3442
|
}
|
|
3439
|
-
.grid
|
|
3443
|
+
.grid.align-center\@2xl {
|
|
3440
3444
|
align-items: center;
|
|
3441
3445
|
}
|
|
3442
|
-
.grid
|
|
3446
|
+
.grid.place-center\@2xl {
|
|
3443
3447
|
place-items: center;
|
|
3444
3448
|
}
|
|
3445
3449
|
}
|
|
3446
|
-
.grid
|
|
3450
|
+
.grid.justify-stretch {
|
|
3447
3451
|
justify-items: stretch;
|
|
3448
3452
|
}
|
|
3449
|
-
.grid
|
|
3453
|
+
.grid.align-stretch {
|
|
3450
3454
|
align-items: stretch;
|
|
3451
3455
|
}
|
|
3452
|
-
.grid
|
|
3456
|
+
.grid.place-stretch {
|
|
3453
3457
|
place-items: stretch;
|
|
3454
3458
|
}
|
|
3455
3459
|
@media (min-width: 480px) {
|
|
3456
|
-
.grid
|
|
3460
|
+
.grid.justify-stretch\@xs {
|
|
3457
3461
|
justify-items: stretch;
|
|
3458
3462
|
}
|
|
3459
|
-
.grid
|
|
3463
|
+
.grid.align-stretch\@xs {
|
|
3460
3464
|
align-items: stretch;
|
|
3461
3465
|
}
|
|
3462
|
-
.grid
|
|
3466
|
+
.grid.place-stretch\@xs {
|
|
3463
3467
|
place-items: stretch;
|
|
3464
3468
|
}
|
|
3465
3469
|
}
|
|
3466
3470
|
@media (min-width: 640px) {
|
|
3467
|
-
.grid
|
|
3471
|
+
.grid.justify-stretch\@sm {
|
|
3468
3472
|
justify-items: stretch;
|
|
3469
3473
|
}
|
|
3470
|
-
.grid
|
|
3474
|
+
.grid.align-stretch\@sm {
|
|
3471
3475
|
align-items: stretch;
|
|
3472
3476
|
}
|
|
3473
|
-
.grid
|
|
3477
|
+
.grid.place-stretch\@sm {
|
|
3474
3478
|
place-items: stretch;
|
|
3475
3479
|
}
|
|
3476
3480
|
}
|
|
3477
3481
|
@media (min-width: 768px) {
|
|
3478
|
-
.grid
|
|
3482
|
+
.grid.justify-stretch\@md {
|
|
3479
3483
|
justify-items: stretch;
|
|
3480
3484
|
}
|
|
3481
|
-
.grid
|
|
3485
|
+
.grid.align-stretch\@md {
|
|
3482
3486
|
align-items: stretch;
|
|
3483
3487
|
}
|
|
3484
|
-
.grid
|
|
3488
|
+
.grid.place-stretch\@md {
|
|
3485
3489
|
place-items: stretch;
|
|
3486
3490
|
}
|
|
3487
3491
|
}
|
|
3488
3492
|
@media (min-width: 1024px) {
|
|
3489
|
-
.grid
|
|
3493
|
+
.grid.justify-stretch\@lg {
|
|
3490
3494
|
justify-items: stretch;
|
|
3491
3495
|
}
|
|
3492
|
-
.grid
|
|
3496
|
+
.grid.align-stretch\@lg {
|
|
3493
3497
|
align-items: stretch;
|
|
3494
3498
|
}
|
|
3495
|
-
.grid
|
|
3499
|
+
.grid.place-stretch\@lg {
|
|
3496
3500
|
place-items: stretch;
|
|
3497
3501
|
}
|
|
3498
3502
|
}
|
|
3499
3503
|
@media (min-width: 1280px) {
|
|
3500
|
-
.grid
|
|
3504
|
+
.grid.justify-stretch\@xl {
|
|
3501
3505
|
justify-items: stretch;
|
|
3502
3506
|
}
|
|
3503
|
-
.grid
|
|
3507
|
+
.grid.align-stretch\@xl {
|
|
3504
3508
|
align-items: stretch;
|
|
3505
3509
|
}
|
|
3506
|
-
.grid
|
|
3510
|
+
.grid.place-stretch\@xl {
|
|
3507
3511
|
place-items: stretch;
|
|
3508
3512
|
}
|
|
3509
3513
|
}
|
|
3510
3514
|
@media (min-width: 1536px) {
|
|
3511
|
-
.grid
|
|
3515
|
+
.grid.justify-stretch\@2xl {
|
|
3512
3516
|
justify-items: stretch;
|
|
3513
3517
|
}
|
|
3514
|
-
.grid
|
|
3518
|
+
.grid.align-stretch\@2xl {
|
|
3515
3519
|
align-items: stretch;
|
|
3516
3520
|
}
|
|
3517
|
-
.grid
|
|
3521
|
+
.grid.place-stretch\@2xl {
|
|
3518
3522
|
place-items: stretch;
|
|
3519
3523
|
}
|
|
3520
3524
|
}
|
|
@@ -4407,180 +4411,200 @@ code {
|
|
|
4407
4411
|
* <div class="backdrop-blur-md">Blurred backdrop</div>
|
|
4408
4412
|
* <div class="backdrop-blur-lg@md">Blurred backdrop on medium screens and up</div>
|
|
4409
4413
|
*/
|
|
4414
|
+
.backdrop-layer {
|
|
4415
|
+
--backdrop-blur: blur(0);
|
|
4416
|
+
--backdrop-brightness: brightness(100%);
|
|
4417
|
+
--backdrop-contrast: contrast(100%);
|
|
4418
|
+
--backdrop-grayscale: grayscale(0);
|
|
4419
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4420
|
+
--backdrop-invert: invert(0);
|
|
4421
|
+
--backdrop-saturate: saturate(100%);
|
|
4422
|
+
--backdrop-sepia: sepia(0);
|
|
4423
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4410
4426
|
.backdrop-none {
|
|
4411
4427
|
backdrop-filter: none;
|
|
4428
|
+
--backdrop-blur: none;
|
|
4429
|
+
--backdrop-brightness: none;
|
|
4430
|
+
--backdrop-contrast: none;
|
|
4431
|
+
--backdrop-grayscale: none;
|
|
4432
|
+
--backdrop-hue-rotate: none;
|
|
4433
|
+
--backdrop-invert: none;
|
|
4434
|
+
--backdrop-saturate: none;
|
|
4435
|
+
--backdrop-sepia: none;
|
|
4412
4436
|
}
|
|
4413
4437
|
|
|
4414
4438
|
.backdrop-blur-none {
|
|
4415
|
-
backdrop-
|
|
4439
|
+
--backdrop-blur: blur(0);
|
|
4416
4440
|
}
|
|
4417
4441
|
|
|
4418
4442
|
.backdrop-blur-sm {
|
|
4419
|
-
backdrop-
|
|
4443
|
+
--backdrop-blur: blur(4px);
|
|
4420
4444
|
}
|
|
4421
4445
|
|
|
4422
4446
|
.backdrop-blur-md {
|
|
4423
|
-
backdrop-
|
|
4447
|
+
--backdrop-blur: blur(8px);
|
|
4424
4448
|
}
|
|
4425
4449
|
|
|
4426
4450
|
.backdrop-blur-lg {
|
|
4427
|
-
backdrop-
|
|
4451
|
+
--backdrop-blur: blur(12px);
|
|
4428
4452
|
}
|
|
4429
4453
|
|
|
4430
4454
|
.backdrop-blur-xl {
|
|
4431
|
-
backdrop-
|
|
4455
|
+
--backdrop-blur: blur(24px);
|
|
4432
4456
|
}
|
|
4433
4457
|
|
|
4434
4458
|
.backdrop-blur-2xl {
|
|
4435
|
-
backdrop-
|
|
4459
|
+
--backdrop-blur: blur(40px);
|
|
4436
4460
|
}
|
|
4437
4461
|
|
|
4438
4462
|
.backdrop-brightness-none {
|
|
4439
|
-
backdrop-
|
|
4463
|
+
--backdrop-brightness: brightness(100%);
|
|
4440
4464
|
}
|
|
4441
4465
|
|
|
4442
4466
|
.backdrop-brightness-75 {
|
|
4443
|
-
backdrop-
|
|
4467
|
+
--backdrop-brightness: brightness(75%);
|
|
4444
4468
|
}
|
|
4445
4469
|
|
|
4446
4470
|
.backdrop-brightness-90 {
|
|
4447
|
-
backdrop-
|
|
4471
|
+
--backdrop-brightness: brightness(90%);
|
|
4448
4472
|
}
|
|
4449
4473
|
|
|
4450
4474
|
.backdrop-brightness-110 {
|
|
4451
|
-
backdrop-
|
|
4475
|
+
--backdrop-brightness: brightness(110%);
|
|
4452
4476
|
}
|
|
4453
4477
|
|
|
4454
4478
|
.backdrop-brightness-125 {
|
|
4455
|
-
backdrop-
|
|
4479
|
+
--backdrop-brightness: brightness(125%);
|
|
4456
4480
|
}
|
|
4457
4481
|
|
|
4458
4482
|
.backdrop-brightness-150 {
|
|
4459
|
-
backdrop-
|
|
4483
|
+
--backdrop-brightness: brightness(150%);
|
|
4460
4484
|
}
|
|
4461
4485
|
|
|
4462
4486
|
.backdrop-contrast-none {
|
|
4463
|
-
backdrop-
|
|
4487
|
+
--backdrop-contrast: contrast(100%);
|
|
4464
4488
|
}
|
|
4465
4489
|
|
|
4466
4490
|
.backdrop-contrast-75 {
|
|
4467
|
-
backdrop-
|
|
4491
|
+
--backdrop-contrast: contrast(75%);
|
|
4468
4492
|
}
|
|
4469
4493
|
|
|
4470
4494
|
.backdrop-contrast-90 {
|
|
4471
|
-
backdrop-
|
|
4495
|
+
--backdrop-contrast: contrast(90%);
|
|
4472
4496
|
}
|
|
4473
4497
|
|
|
4474
4498
|
.backdrop-contrast-110 {
|
|
4475
|
-
backdrop-
|
|
4499
|
+
--backdrop-contrast: contrast(110%);
|
|
4476
4500
|
}
|
|
4477
4501
|
|
|
4478
4502
|
.backdrop-contrast-125 {
|
|
4479
|
-
backdrop-
|
|
4503
|
+
--backdrop-contrast: contrast(125%);
|
|
4480
4504
|
}
|
|
4481
4505
|
|
|
4482
4506
|
.backdrop-contrast-150 {
|
|
4483
|
-
backdrop-
|
|
4507
|
+
--backdrop-contrast: contrast(150%);
|
|
4484
4508
|
}
|
|
4485
4509
|
|
|
4486
4510
|
.backdrop-grayscale-none {
|
|
4487
|
-
backdrop-
|
|
4511
|
+
--backdrop-grayscale: grayscale(0);
|
|
4488
4512
|
}
|
|
4489
4513
|
|
|
4490
4514
|
.backdrop-grayscale-25 {
|
|
4491
|
-
backdrop-
|
|
4515
|
+
--backdrop-grayscale: grayscale(25%);
|
|
4492
4516
|
}
|
|
4493
4517
|
|
|
4494
4518
|
.backdrop-grayscale-50 {
|
|
4495
|
-
backdrop-
|
|
4519
|
+
--backdrop-grayscale: grayscale(50%);
|
|
4496
4520
|
}
|
|
4497
4521
|
|
|
4498
4522
|
.backdrop-grayscale-75 {
|
|
4499
|
-
backdrop-
|
|
4523
|
+
--backdrop-grayscale: grayscale(75%);
|
|
4500
4524
|
}
|
|
4501
4525
|
|
|
4502
4526
|
.backdrop-grayscale-100 {
|
|
4503
|
-
backdrop-
|
|
4527
|
+
--backdrop-grayscale: grayscale(100%);
|
|
4504
4528
|
}
|
|
4505
4529
|
|
|
4506
4530
|
.backdrop-saturate-none {
|
|
4507
|
-
backdrop-
|
|
4531
|
+
--backdrop-saturate: saturate(100%);
|
|
4508
4532
|
}
|
|
4509
4533
|
|
|
4510
4534
|
.backdrop-saturate-50 {
|
|
4511
|
-
backdrop-
|
|
4535
|
+
--backdrop-saturate: saturate(50%);
|
|
4512
4536
|
}
|
|
4513
4537
|
|
|
4514
4538
|
.backdrop-saturate-75 {
|
|
4515
|
-
backdrop-
|
|
4539
|
+
--backdrop-saturate: saturate(75%);
|
|
4516
4540
|
}
|
|
4517
4541
|
|
|
4518
4542
|
.backdrop-saturate-125 {
|
|
4519
|
-
backdrop-
|
|
4543
|
+
--backdrop-saturate: saturate(125%);
|
|
4520
4544
|
}
|
|
4521
4545
|
|
|
4522
4546
|
.backdrop-saturate-150 {
|
|
4523
|
-
backdrop-
|
|
4547
|
+
--backdrop-saturate: saturate(150%);
|
|
4524
4548
|
}
|
|
4525
4549
|
|
|
4526
4550
|
.backdrop-saturate-200 {
|
|
4527
|
-
backdrop-
|
|
4551
|
+
--backdrop-saturate: saturate(200%);
|
|
4528
4552
|
}
|
|
4529
4553
|
|
|
4530
4554
|
.backdrop-sepia-none {
|
|
4531
|
-
backdrop-
|
|
4555
|
+
--backdrop-sepia: sepia(0);
|
|
4532
4556
|
}
|
|
4533
4557
|
|
|
4534
4558
|
.backdrop-sepia-25 {
|
|
4535
|
-
backdrop-
|
|
4559
|
+
--backdrop-sepia: sepia(25%);
|
|
4536
4560
|
}
|
|
4537
4561
|
|
|
4538
4562
|
.backdrop-sepia-50 {
|
|
4539
|
-
backdrop-
|
|
4563
|
+
--backdrop-sepia: sepia(50%);
|
|
4540
4564
|
}
|
|
4541
4565
|
|
|
4542
4566
|
.backdrop-sepia-75 {
|
|
4543
|
-
backdrop-
|
|
4567
|
+
--backdrop-sepia: sepia(75%);
|
|
4544
4568
|
}
|
|
4545
4569
|
|
|
4546
4570
|
.backdrop-sepia-100 {
|
|
4547
|
-
backdrop-
|
|
4571
|
+
--backdrop-sepia: sepia(100%);
|
|
4548
4572
|
}
|
|
4549
4573
|
|
|
4550
4574
|
.backdrop-hue-0 {
|
|
4551
|
-
backdrop-
|
|
4575
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4552
4576
|
}
|
|
4553
4577
|
|
|
4554
4578
|
.backdrop-hue-90 {
|
|
4555
|
-
backdrop-
|
|
4579
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
4556
4580
|
}
|
|
4557
4581
|
|
|
4558
4582
|
.backdrop-hue-180 {
|
|
4559
|
-
backdrop-
|
|
4583
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
4560
4584
|
}
|
|
4561
4585
|
|
|
4562
4586
|
.backdrop-hue-270 {
|
|
4563
|
-
backdrop-
|
|
4587
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
4564
4588
|
}
|
|
4565
4589
|
|
|
4566
4590
|
.backdrop-invert-none {
|
|
4567
|
-
backdrop-
|
|
4591
|
+
--backdrop-invert: invert(0);
|
|
4568
4592
|
}
|
|
4569
4593
|
|
|
4570
4594
|
.backdrop-invert-25 {
|
|
4571
|
-
backdrop-
|
|
4595
|
+
--backdrop-invert: invert(25%);
|
|
4572
4596
|
}
|
|
4573
4597
|
|
|
4574
4598
|
.backdrop-invert-50 {
|
|
4575
|
-
backdrop-
|
|
4599
|
+
--backdrop-invert: invert(50%);
|
|
4576
4600
|
}
|
|
4577
4601
|
|
|
4578
4602
|
.backdrop-invert-75 {
|
|
4579
|
-
backdrop-
|
|
4603
|
+
--backdrop-invert: invert(75%);
|
|
4580
4604
|
}
|
|
4581
4605
|
|
|
4582
4606
|
.backdrop-invert-100 {
|
|
4583
|
-
backdrop-
|
|
4607
|
+
--backdrop-invert: invert(100%);
|
|
4584
4608
|
}
|
|
4585
4609
|
|
|
4586
4610
|
.backdrop-frosted {
|
|
@@ -4604,137 +4628,156 @@ code {
|
|
|
4604
4628
|
}
|
|
4605
4629
|
|
|
4606
4630
|
@media (min-width: 480px) {
|
|
4631
|
+
.backdrop-layer\@xs {
|
|
4632
|
+
--backdrop-blur: blur(0);
|
|
4633
|
+
--backdrop-brightness: brightness(100%);
|
|
4634
|
+
--backdrop-contrast: contrast(100%);
|
|
4635
|
+
--backdrop-grayscale: grayscale(0);
|
|
4636
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4637
|
+
--backdrop-invert: invert(0);
|
|
4638
|
+
--backdrop-saturate: saturate(100%);
|
|
4639
|
+
--backdrop-sepia: sepia(0);
|
|
4640
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
4641
|
+
}
|
|
4607
4642
|
.backdrop-none\@xs {
|
|
4608
4643
|
backdrop-filter: none;
|
|
4644
|
+
--backdrop-blur: none;
|
|
4645
|
+
--backdrop-brightness: none;
|
|
4646
|
+
--backdrop-contrast: none;
|
|
4647
|
+
--backdrop-grayscale: none;
|
|
4648
|
+
--backdrop-hue-rotate: none;
|
|
4649
|
+
--backdrop-invert: none;
|
|
4650
|
+
--backdrop-saturate: none;
|
|
4651
|
+
--backdrop-sepia: none;
|
|
4609
4652
|
}
|
|
4610
4653
|
.backdrop-blur-none\@xs {
|
|
4611
|
-
backdrop-
|
|
4654
|
+
--backdrop-blur: blur(0);
|
|
4612
4655
|
}
|
|
4613
4656
|
.backdrop-blur-sm\@xs {
|
|
4614
|
-
backdrop-
|
|
4657
|
+
--backdrop-blur: blur(4px);
|
|
4615
4658
|
}
|
|
4616
4659
|
.backdrop-blur-md\@xs {
|
|
4617
|
-
backdrop-
|
|
4660
|
+
--backdrop-blur: blur(8px);
|
|
4618
4661
|
}
|
|
4619
4662
|
.backdrop-blur-lg\@xs {
|
|
4620
|
-
backdrop-
|
|
4663
|
+
--backdrop-blur: blur(12px);
|
|
4621
4664
|
}
|
|
4622
4665
|
.backdrop-blur-xl\@xs {
|
|
4623
|
-
backdrop-
|
|
4666
|
+
--backdrop-blur: blur(24px);
|
|
4624
4667
|
}
|
|
4625
4668
|
.backdrop-blur-2xl\@xs {
|
|
4626
|
-
backdrop-
|
|
4669
|
+
--backdrop-blur: blur(40px);
|
|
4627
4670
|
}
|
|
4628
4671
|
.backdrop-brightness-none\@xs {
|
|
4629
|
-
backdrop-
|
|
4672
|
+
--backdrop-brightness: brightness(100%);
|
|
4630
4673
|
}
|
|
4631
4674
|
.backdrop-brightness-75\@xs {
|
|
4632
|
-
backdrop-
|
|
4675
|
+
--backdrop-brightness: brightness(75%);
|
|
4633
4676
|
}
|
|
4634
4677
|
.backdrop-brightness-90\@xs {
|
|
4635
|
-
backdrop-
|
|
4678
|
+
--backdrop-brightness: brightness(90%);
|
|
4636
4679
|
}
|
|
4637
4680
|
.backdrop-brightness-110\@xs {
|
|
4638
|
-
backdrop-
|
|
4681
|
+
--backdrop-brightness: brightness(110%);
|
|
4639
4682
|
}
|
|
4640
4683
|
.backdrop-brightness-125\@xs {
|
|
4641
|
-
backdrop-
|
|
4684
|
+
--backdrop-brightness: brightness(125%);
|
|
4642
4685
|
}
|
|
4643
4686
|
.backdrop-brightness-150\@xs {
|
|
4644
|
-
backdrop-
|
|
4687
|
+
--backdrop-brightness: brightness(150%);
|
|
4645
4688
|
}
|
|
4646
4689
|
.backdrop-contrast-none\@xs {
|
|
4647
|
-
backdrop-
|
|
4690
|
+
--backdrop-contrast: contrast(100%);
|
|
4648
4691
|
}
|
|
4649
4692
|
.backdrop-contrast-75\@xs {
|
|
4650
|
-
backdrop-
|
|
4693
|
+
--backdrop-contrast: contrast(75%);
|
|
4651
4694
|
}
|
|
4652
4695
|
.backdrop-contrast-90\@xs {
|
|
4653
|
-
backdrop-
|
|
4696
|
+
--backdrop-contrast: contrast(90%);
|
|
4654
4697
|
}
|
|
4655
4698
|
.backdrop-contrast-110\@xs {
|
|
4656
|
-
backdrop-
|
|
4699
|
+
--backdrop-contrast: contrast(110%);
|
|
4657
4700
|
}
|
|
4658
4701
|
.backdrop-contrast-125\@xs {
|
|
4659
|
-
backdrop-
|
|
4702
|
+
--backdrop-contrast: contrast(125%);
|
|
4660
4703
|
}
|
|
4661
4704
|
.backdrop-contrast-150\@xs {
|
|
4662
|
-
backdrop-
|
|
4705
|
+
--backdrop-contrast: contrast(150%);
|
|
4663
4706
|
}
|
|
4664
4707
|
.backdrop-grayscale-none\@xs {
|
|
4665
|
-
backdrop-
|
|
4708
|
+
--backdrop-grayscale: grayscale(0);
|
|
4666
4709
|
}
|
|
4667
4710
|
.backdrop-grayscale-25\@xs {
|
|
4668
|
-
backdrop-
|
|
4711
|
+
--backdrop-grayscale: grayscale(25%);
|
|
4669
4712
|
}
|
|
4670
4713
|
.backdrop-grayscale-50\@xs {
|
|
4671
|
-
backdrop-
|
|
4714
|
+
--backdrop-grayscale: grayscale(50%);
|
|
4672
4715
|
}
|
|
4673
4716
|
.backdrop-grayscale-75\@xs {
|
|
4674
|
-
backdrop-
|
|
4717
|
+
--backdrop-grayscale: grayscale(75%);
|
|
4675
4718
|
}
|
|
4676
4719
|
.backdrop-grayscale-100\@xs {
|
|
4677
|
-
backdrop-
|
|
4720
|
+
--backdrop-grayscale: grayscale(100%);
|
|
4678
4721
|
}
|
|
4679
4722
|
.backdrop-saturate-none\@xs {
|
|
4680
|
-
backdrop-
|
|
4723
|
+
--backdrop-saturate: saturate(100%);
|
|
4681
4724
|
}
|
|
4682
4725
|
.backdrop-saturate-50\@xs {
|
|
4683
|
-
backdrop-
|
|
4726
|
+
--backdrop-saturate: saturate(50%);
|
|
4684
4727
|
}
|
|
4685
4728
|
.backdrop-saturate-75\@xs {
|
|
4686
|
-
backdrop-
|
|
4729
|
+
--backdrop-saturate: saturate(75%);
|
|
4687
4730
|
}
|
|
4688
4731
|
.backdrop-saturate-125\@xs {
|
|
4689
|
-
backdrop-
|
|
4732
|
+
--backdrop-saturate: saturate(125%);
|
|
4690
4733
|
}
|
|
4691
4734
|
.backdrop-saturate-150\@xs {
|
|
4692
|
-
backdrop-
|
|
4735
|
+
--backdrop-saturate: saturate(150%);
|
|
4693
4736
|
}
|
|
4694
4737
|
.backdrop-saturate-200\@xs {
|
|
4695
|
-
backdrop-
|
|
4738
|
+
--backdrop-saturate: saturate(200%);
|
|
4696
4739
|
}
|
|
4697
4740
|
.backdrop-sepia-none\@xs {
|
|
4698
|
-
backdrop-
|
|
4741
|
+
--backdrop-sepia: sepia(0);
|
|
4699
4742
|
}
|
|
4700
4743
|
.backdrop-sepia-25\@xs {
|
|
4701
|
-
backdrop-
|
|
4744
|
+
--backdrop-sepia: sepia(25%);
|
|
4702
4745
|
}
|
|
4703
4746
|
.backdrop-sepia-50\@xs {
|
|
4704
|
-
backdrop-
|
|
4747
|
+
--backdrop-sepia: sepia(50%);
|
|
4705
4748
|
}
|
|
4706
4749
|
.backdrop-sepia-75\@xs {
|
|
4707
|
-
backdrop-
|
|
4750
|
+
--backdrop-sepia: sepia(75%);
|
|
4708
4751
|
}
|
|
4709
4752
|
.backdrop-sepia-100\@xs {
|
|
4710
|
-
backdrop-
|
|
4753
|
+
--backdrop-sepia: sepia(100%);
|
|
4711
4754
|
}
|
|
4712
4755
|
.backdrop-hue-0\@xs {
|
|
4713
|
-
backdrop-
|
|
4756
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4714
4757
|
}
|
|
4715
4758
|
.backdrop-hue-90\@xs {
|
|
4716
|
-
backdrop-
|
|
4759
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
4717
4760
|
}
|
|
4718
4761
|
.backdrop-hue-180\@xs {
|
|
4719
|
-
backdrop-
|
|
4762
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
4720
4763
|
}
|
|
4721
4764
|
.backdrop-hue-270\@xs {
|
|
4722
|
-
backdrop-
|
|
4765
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
4723
4766
|
}
|
|
4724
4767
|
.backdrop-invert-none\@xs {
|
|
4725
|
-
backdrop-
|
|
4768
|
+
--backdrop-invert: invert(0);
|
|
4726
4769
|
}
|
|
4727
4770
|
.backdrop-invert-25\@xs {
|
|
4728
|
-
backdrop-
|
|
4771
|
+
--backdrop-invert: invert(25%);
|
|
4729
4772
|
}
|
|
4730
4773
|
.backdrop-invert-50\@xs {
|
|
4731
|
-
backdrop-
|
|
4774
|
+
--backdrop-invert: invert(50%);
|
|
4732
4775
|
}
|
|
4733
4776
|
.backdrop-invert-75\@xs {
|
|
4734
|
-
backdrop-
|
|
4777
|
+
--backdrop-invert: invert(75%);
|
|
4735
4778
|
}
|
|
4736
4779
|
.backdrop-invert-100\@xs {
|
|
4737
|
-
backdrop-
|
|
4780
|
+
--backdrop-invert: invert(100%);
|
|
4738
4781
|
}
|
|
4739
4782
|
.backdrop-frosted\@xs {
|
|
4740
4783
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -4753,137 +4796,156 @@ code {
|
|
|
4753
4796
|
}
|
|
4754
4797
|
}
|
|
4755
4798
|
@media (min-width: 640px) {
|
|
4799
|
+
.backdrop-layer\@sm {
|
|
4800
|
+
--backdrop-blur: blur(0);
|
|
4801
|
+
--backdrop-brightness: brightness(100%);
|
|
4802
|
+
--backdrop-contrast: contrast(100%);
|
|
4803
|
+
--backdrop-grayscale: grayscale(0);
|
|
4804
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4805
|
+
--backdrop-invert: invert(0);
|
|
4806
|
+
--backdrop-saturate: saturate(100%);
|
|
4807
|
+
--backdrop-sepia: sepia(0);
|
|
4808
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
4809
|
+
}
|
|
4756
4810
|
.backdrop-none\@sm {
|
|
4757
4811
|
backdrop-filter: none;
|
|
4812
|
+
--backdrop-blur: none;
|
|
4813
|
+
--backdrop-brightness: none;
|
|
4814
|
+
--backdrop-contrast: none;
|
|
4815
|
+
--backdrop-grayscale: none;
|
|
4816
|
+
--backdrop-hue-rotate: none;
|
|
4817
|
+
--backdrop-invert: none;
|
|
4818
|
+
--backdrop-saturate: none;
|
|
4819
|
+
--backdrop-sepia: none;
|
|
4758
4820
|
}
|
|
4759
4821
|
.backdrop-blur-none\@sm {
|
|
4760
|
-
backdrop-
|
|
4822
|
+
--backdrop-blur: blur(0);
|
|
4761
4823
|
}
|
|
4762
4824
|
.backdrop-blur-sm\@sm {
|
|
4763
|
-
backdrop-
|
|
4825
|
+
--backdrop-blur: blur(4px);
|
|
4764
4826
|
}
|
|
4765
4827
|
.backdrop-blur-md\@sm {
|
|
4766
|
-
backdrop-
|
|
4828
|
+
--backdrop-blur: blur(8px);
|
|
4767
4829
|
}
|
|
4768
4830
|
.backdrop-blur-lg\@sm {
|
|
4769
|
-
backdrop-
|
|
4831
|
+
--backdrop-blur: blur(12px);
|
|
4770
4832
|
}
|
|
4771
4833
|
.backdrop-blur-xl\@sm {
|
|
4772
|
-
backdrop-
|
|
4834
|
+
--backdrop-blur: blur(24px);
|
|
4773
4835
|
}
|
|
4774
4836
|
.backdrop-blur-2xl\@sm {
|
|
4775
|
-
backdrop-
|
|
4837
|
+
--backdrop-blur: blur(40px);
|
|
4776
4838
|
}
|
|
4777
4839
|
.backdrop-brightness-none\@sm {
|
|
4778
|
-
backdrop-
|
|
4840
|
+
--backdrop-brightness: brightness(100%);
|
|
4779
4841
|
}
|
|
4780
4842
|
.backdrop-brightness-75\@sm {
|
|
4781
|
-
backdrop-
|
|
4843
|
+
--backdrop-brightness: brightness(75%);
|
|
4782
4844
|
}
|
|
4783
4845
|
.backdrop-brightness-90\@sm {
|
|
4784
|
-
backdrop-
|
|
4846
|
+
--backdrop-brightness: brightness(90%);
|
|
4785
4847
|
}
|
|
4786
4848
|
.backdrop-brightness-110\@sm {
|
|
4787
|
-
backdrop-
|
|
4849
|
+
--backdrop-brightness: brightness(110%);
|
|
4788
4850
|
}
|
|
4789
4851
|
.backdrop-brightness-125\@sm {
|
|
4790
|
-
backdrop-
|
|
4852
|
+
--backdrop-brightness: brightness(125%);
|
|
4791
4853
|
}
|
|
4792
4854
|
.backdrop-brightness-150\@sm {
|
|
4793
|
-
backdrop-
|
|
4855
|
+
--backdrop-brightness: brightness(150%);
|
|
4794
4856
|
}
|
|
4795
4857
|
.backdrop-contrast-none\@sm {
|
|
4796
|
-
backdrop-
|
|
4858
|
+
--backdrop-contrast: contrast(100%);
|
|
4797
4859
|
}
|
|
4798
4860
|
.backdrop-contrast-75\@sm {
|
|
4799
|
-
backdrop-
|
|
4861
|
+
--backdrop-contrast: contrast(75%);
|
|
4800
4862
|
}
|
|
4801
4863
|
.backdrop-contrast-90\@sm {
|
|
4802
|
-
backdrop-
|
|
4864
|
+
--backdrop-contrast: contrast(90%);
|
|
4803
4865
|
}
|
|
4804
4866
|
.backdrop-contrast-110\@sm {
|
|
4805
|
-
backdrop-
|
|
4867
|
+
--backdrop-contrast: contrast(110%);
|
|
4806
4868
|
}
|
|
4807
4869
|
.backdrop-contrast-125\@sm {
|
|
4808
|
-
backdrop-
|
|
4870
|
+
--backdrop-contrast: contrast(125%);
|
|
4809
4871
|
}
|
|
4810
4872
|
.backdrop-contrast-150\@sm {
|
|
4811
|
-
backdrop-
|
|
4873
|
+
--backdrop-contrast: contrast(150%);
|
|
4812
4874
|
}
|
|
4813
4875
|
.backdrop-grayscale-none\@sm {
|
|
4814
|
-
backdrop-
|
|
4876
|
+
--backdrop-grayscale: grayscale(0);
|
|
4815
4877
|
}
|
|
4816
4878
|
.backdrop-grayscale-25\@sm {
|
|
4817
|
-
backdrop-
|
|
4879
|
+
--backdrop-grayscale: grayscale(25%);
|
|
4818
4880
|
}
|
|
4819
4881
|
.backdrop-grayscale-50\@sm {
|
|
4820
|
-
backdrop-
|
|
4882
|
+
--backdrop-grayscale: grayscale(50%);
|
|
4821
4883
|
}
|
|
4822
4884
|
.backdrop-grayscale-75\@sm {
|
|
4823
|
-
backdrop-
|
|
4885
|
+
--backdrop-grayscale: grayscale(75%);
|
|
4824
4886
|
}
|
|
4825
4887
|
.backdrop-grayscale-100\@sm {
|
|
4826
|
-
backdrop-
|
|
4888
|
+
--backdrop-grayscale: grayscale(100%);
|
|
4827
4889
|
}
|
|
4828
4890
|
.backdrop-saturate-none\@sm {
|
|
4829
|
-
backdrop-
|
|
4891
|
+
--backdrop-saturate: saturate(100%);
|
|
4830
4892
|
}
|
|
4831
4893
|
.backdrop-saturate-50\@sm {
|
|
4832
|
-
backdrop-
|
|
4894
|
+
--backdrop-saturate: saturate(50%);
|
|
4833
4895
|
}
|
|
4834
4896
|
.backdrop-saturate-75\@sm {
|
|
4835
|
-
backdrop-
|
|
4897
|
+
--backdrop-saturate: saturate(75%);
|
|
4836
4898
|
}
|
|
4837
4899
|
.backdrop-saturate-125\@sm {
|
|
4838
|
-
backdrop-
|
|
4900
|
+
--backdrop-saturate: saturate(125%);
|
|
4839
4901
|
}
|
|
4840
4902
|
.backdrop-saturate-150\@sm {
|
|
4841
|
-
backdrop-
|
|
4903
|
+
--backdrop-saturate: saturate(150%);
|
|
4842
4904
|
}
|
|
4843
4905
|
.backdrop-saturate-200\@sm {
|
|
4844
|
-
backdrop-
|
|
4906
|
+
--backdrop-saturate: saturate(200%);
|
|
4845
4907
|
}
|
|
4846
4908
|
.backdrop-sepia-none\@sm {
|
|
4847
|
-
backdrop-
|
|
4909
|
+
--backdrop-sepia: sepia(0);
|
|
4848
4910
|
}
|
|
4849
4911
|
.backdrop-sepia-25\@sm {
|
|
4850
|
-
backdrop-
|
|
4912
|
+
--backdrop-sepia: sepia(25%);
|
|
4851
4913
|
}
|
|
4852
4914
|
.backdrop-sepia-50\@sm {
|
|
4853
|
-
backdrop-
|
|
4915
|
+
--backdrop-sepia: sepia(50%);
|
|
4854
4916
|
}
|
|
4855
4917
|
.backdrop-sepia-75\@sm {
|
|
4856
|
-
backdrop-
|
|
4918
|
+
--backdrop-sepia: sepia(75%);
|
|
4857
4919
|
}
|
|
4858
4920
|
.backdrop-sepia-100\@sm {
|
|
4859
|
-
backdrop-
|
|
4921
|
+
--backdrop-sepia: sepia(100%);
|
|
4860
4922
|
}
|
|
4861
4923
|
.backdrop-hue-0\@sm {
|
|
4862
|
-
backdrop-
|
|
4924
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4863
4925
|
}
|
|
4864
4926
|
.backdrop-hue-90\@sm {
|
|
4865
|
-
backdrop-
|
|
4927
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
4866
4928
|
}
|
|
4867
4929
|
.backdrop-hue-180\@sm {
|
|
4868
|
-
backdrop-
|
|
4930
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
4869
4931
|
}
|
|
4870
4932
|
.backdrop-hue-270\@sm {
|
|
4871
|
-
backdrop-
|
|
4933
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
4872
4934
|
}
|
|
4873
4935
|
.backdrop-invert-none\@sm {
|
|
4874
|
-
backdrop-
|
|
4936
|
+
--backdrop-invert: invert(0);
|
|
4875
4937
|
}
|
|
4876
4938
|
.backdrop-invert-25\@sm {
|
|
4877
|
-
backdrop-
|
|
4939
|
+
--backdrop-invert: invert(25%);
|
|
4878
4940
|
}
|
|
4879
4941
|
.backdrop-invert-50\@sm {
|
|
4880
|
-
backdrop-
|
|
4942
|
+
--backdrop-invert: invert(50%);
|
|
4881
4943
|
}
|
|
4882
4944
|
.backdrop-invert-75\@sm {
|
|
4883
|
-
backdrop-
|
|
4945
|
+
--backdrop-invert: invert(75%);
|
|
4884
4946
|
}
|
|
4885
4947
|
.backdrop-invert-100\@sm {
|
|
4886
|
-
backdrop-
|
|
4948
|
+
--backdrop-invert: invert(100%);
|
|
4887
4949
|
}
|
|
4888
4950
|
.backdrop-frosted\@sm {
|
|
4889
4951
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -4902,137 +4964,156 @@ code {
|
|
|
4902
4964
|
}
|
|
4903
4965
|
}
|
|
4904
4966
|
@media (min-width: 768px) {
|
|
4967
|
+
.backdrop-layer\@md {
|
|
4968
|
+
--backdrop-blur: blur(0);
|
|
4969
|
+
--backdrop-brightness: brightness(100%);
|
|
4970
|
+
--backdrop-contrast: contrast(100%);
|
|
4971
|
+
--backdrop-grayscale: grayscale(0);
|
|
4972
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
4973
|
+
--backdrop-invert: invert(0);
|
|
4974
|
+
--backdrop-saturate: saturate(100%);
|
|
4975
|
+
--backdrop-sepia: sepia(0);
|
|
4976
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
4977
|
+
}
|
|
4905
4978
|
.backdrop-none\@md {
|
|
4906
4979
|
backdrop-filter: none;
|
|
4980
|
+
--backdrop-blur: none;
|
|
4981
|
+
--backdrop-brightness: none;
|
|
4982
|
+
--backdrop-contrast: none;
|
|
4983
|
+
--backdrop-grayscale: none;
|
|
4984
|
+
--backdrop-hue-rotate: none;
|
|
4985
|
+
--backdrop-invert: none;
|
|
4986
|
+
--backdrop-saturate: none;
|
|
4987
|
+
--backdrop-sepia: none;
|
|
4907
4988
|
}
|
|
4908
4989
|
.backdrop-blur-none\@md {
|
|
4909
|
-
backdrop-
|
|
4990
|
+
--backdrop-blur: blur(0);
|
|
4910
4991
|
}
|
|
4911
4992
|
.backdrop-blur-sm\@md {
|
|
4912
|
-
backdrop-
|
|
4993
|
+
--backdrop-blur: blur(4px);
|
|
4913
4994
|
}
|
|
4914
4995
|
.backdrop-blur-md\@md {
|
|
4915
|
-
backdrop-
|
|
4996
|
+
--backdrop-blur: blur(8px);
|
|
4916
4997
|
}
|
|
4917
4998
|
.backdrop-blur-lg\@md {
|
|
4918
|
-
backdrop-
|
|
4999
|
+
--backdrop-blur: blur(12px);
|
|
4919
5000
|
}
|
|
4920
5001
|
.backdrop-blur-xl\@md {
|
|
4921
|
-
backdrop-
|
|
5002
|
+
--backdrop-blur: blur(24px);
|
|
4922
5003
|
}
|
|
4923
5004
|
.backdrop-blur-2xl\@md {
|
|
4924
|
-
backdrop-
|
|
5005
|
+
--backdrop-blur: blur(40px);
|
|
4925
5006
|
}
|
|
4926
5007
|
.backdrop-brightness-none\@md {
|
|
4927
|
-
backdrop-
|
|
5008
|
+
--backdrop-brightness: brightness(100%);
|
|
4928
5009
|
}
|
|
4929
5010
|
.backdrop-brightness-75\@md {
|
|
4930
|
-
backdrop-
|
|
5011
|
+
--backdrop-brightness: brightness(75%);
|
|
4931
5012
|
}
|
|
4932
5013
|
.backdrop-brightness-90\@md {
|
|
4933
|
-
backdrop-
|
|
5014
|
+
--backdrop-brightness: brightness(90%);
|
|
4934
5015
|
}
|
|
4935
5016
|
.backdrop-brightness-110\@md {
|
|
4936
|
-
backdrop-
|
|
5017
|
+
--backdrop-brightness: brightness(110%);
|
|
4937
5018
|
}
|
|
4938
5019
|
.backdrop-brightness-125\@md {
|
|
4939
|
-
backdrop-
|
|
5020
|
+
--backdrop-brightness: brightness(125%);
|
|
4940
5021
|
}
|
|
4941
5022
|
.backdrop-brightness-150\@md {
|
|
4942
|
-
backdrop-
|
|
5023
|
+
--backdrop-brightness: brightness(150%);
|
|
4943
5024
|
}
|
|
4944
5025
|
.backdrop-contrast-none\@md {
|
|
4945
|
-
backdrop-
|
|
5026
|
+
--backdrop-contrast: contrast(100%);
|
|
4946
5027
|
}
|
|
4947
5028
|
.backdrop-contrast-75\@md {
|
|
4948
|
-
backdrop-
|
|
5029
|
+
--backdrop-contrast: contrast(75%);
|
|
4949
5030
|
}
|
|
4950
5031
|
.backdrop-contrast-90\@md {
|
|
4951
|
-
backdrop-
|
|
5032
|
+
--backdrop-contrast: contrast(90%);
|
|
4952
5033
|
}
|
|
4953
5034
|
.backdrop-contrast-110\@md {
|
|
4954
|
-
backdrop-
|
|
5035
|
+
--backdrop-contrast: contrast(110%);
|
|
4955
5036
|
}
|
|
4956
5037
|
.backdrop-contrast-125\@md {
|
|
4957
|
-
backdrop-
|
|
5038
|
+
--backdrop-contrast: contrast(125%);
|
|
4958
5039
|
}
|
|
4959
5040
|
.backdrop-contrast-150\@md {
|
|
4960
|
-
backdrop-
|
|
5041
|
+
--backdrop-contrast: contrast(150%);
|
|
4961
5042
|
}
|
|
4962
5043
|
.backdrop-grayscale-none\@md {
|
|
4963
|
-
backdrop-
|
|
5044
|
+
--backdrop-grayscale: grayscale(0);
|
|
4964
5045
|
}
|
|
4965
5046
|
.backdrop-grayscale-25\@md {
|
|
4966
|
-
backdrop-
|
|
5047
|
+
--backdrop-grayscale: grayscale(25%);
|
|
4967
5048
|
}
|
|
4968
5049
|
.backdrop-grayscale-50\@md {
|
|
4969
|
-
backdrop-
|
|
5050
|
+
--backdrop-grayscale: grayscale(50%);
|
|
4970
5051
|
}
|
|
4971
5052
|
.backdrop-grayscale-75\@md {
|
|
4972
|
-
backdrop-
|
|
5053
|
+
--backdrop-grayscale: grayscale(75%);
|
|
4973
5054
|
}
|
|
4974
5055
|
.backdrop-grayscale-100\@md {
|
|
4975
|
-
backdrop-
|
|
5056
|
+
--backdrop-grayscale: grayscale(100%);
|
|
4976
5057
|
}
|
|
4977
5058
|
.backdrop-saturate-none\@md {
|
|
4978
|
-
backdrop-
|
|
5059
|
+
--backdrop-saturate: saturate(100%);
|
|
4979
5060
|
}
|
|
4980
5061
|
.backdrop-saturate-50\@md {
|
|
4981
|
-
backdrop-
|
|
5062
|
+
--backdrop-saturate: saturate(50%);
|
|
4982
5063
|
}
|
|
4983
5064
|
.backdrop-saturate-75\@md {
|
|
4984
|
-
backdrop-
|
|
5065
|
+
--backdrop-saturate: saturate(75%);
|
|
4985
5066
|
}
|
|
4986
5067
|
.backdrop-saturate-125\@md {
|
|
4987
|
-
backdrop-
|
|
5068
|
+
--backdrop-saturate: saturate(125%);
|
|
4988
5069
|
}
|
|
4989
5070
|
.backdrop-saturate-150\@md {
|
|
4990
|
-
backdrop-
|
|
5071
|
+
--backdrop-saturate: saturate(150%);
|
|
4991
5072
|
}
|
|
4992
5073
|
.backdrop-saturate-200\@md {
|
|
4993
|
-
backdrop-
|
|
5074
|
+
--backdrop-saturate: saturate(200%);
|
|
4994
5075
|
}
|
|
4995
5076
|
.backdrop-sepia-none\@md {
|
|
4996
|
-
backdrop-
|
|
5077
|
+
--backdrop-sepia: sepia(0);
|
|
4997
5078
|
}
|
|
4998
5079
|
.backdrop-sepia-25\@md {
|
|
4999
|
-
backdrop-
|
|
5080
|
+
--backdrop-sepia: sepia(25%);
|
|
5000
5081
|
}
|
|
5001
5082
|
.backdrop-sepia-50\@md {
|
|
5002
|
-
backdrop-
|
|
5083
|
+
--backdrop-sepia: sepia(50%);
|
|
5003
5084
|
}
|
|
5004
5085
|
.backdrop-sepia-75\@md {
|
|
5005
|
-
backdrop-
|
|
5086
|
+
--backdrop-sepia: sepia(75%);
|
|
5006
5087
|
}
|
|
5007
5088
|
.backdrop-sepia-100\@md {
|
|
5008
|
-
backdrop-
|
|
5089
|
+
--backdrop-sepia: sepia(100%);
|
|
5009
5090
|
}
|
|
5010
5091
|
.backdrop-hue-0\@md {
|
|
5011
|
-
backdrop-
|
|
5092
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5012
5093
|
}
|
|
5013
5094
|
.backdrop-hue-90\@md {
|
|
5014
|
-
backdrop-
|
|
5095
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
5015
5096
|
}
|
|
5016
5097
|
.backdrop-hue-180\@md {
|
|
5017
|
-
backdrop-
|
|
5098
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
5018
5099
|
}
|
|
5019
5100
|
.backdrop-hue-270\@md {
|
|
5020
|
-
backdrop-
|
|
5101
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
5021
5102
|
}
|
|
5022
5103
|
.backdrop-invert-none\@md {
|
|
5023
|
-
backdrop-
|
|
5104
|
+
--backdrop-invert: invert(0);
|
|
5024
5105
|
}
|
|
5025
5106
|
.backdrop-invert-25\@md {
|
|
5026
|
-
backdrop-
|
|
5107
|
+
--backdrop-invert: invert(25%);
|
|
5027
5108
|
}
|
|
5028
5109
|
.backdrop-invert-50\@md {
|
|
5029
|
-
backdrop-
|
|
5110
|
+
--backdrop-invert: invert(50%);
|
|
5030
5111
|
}
|
|
5031
5112
|
.backdrop-invert-75\@md {
|
|
5032
|
-
backdrop-
|
|
5113
|
+
--backdrop-invert: invert(75%);
|
|
5033
5114
|
}
|
|
5034
5115
|
.backdrop-invert-100\@md {
|
|
5035
|
-
backdrop-
|
|
5116
|
+
--backdrop-invert: invert(100%);
|
|
5036
5117
|
}
|
|
5037
5118
|
.backdrop-frosted\@md {
|
|
5038
5119
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -5051,137 +5132,156 @@ code {
|
|
|
5051
5132
|
}
|
|
5052
5133
|
}
|
|
5053
5134
|
@media (min-width: 1024px) {
|
|
5135
|
+
.backdrop-layer\@lg {
|
|
5136
|
+
--backdrop-blur: blur(0);
|
|
5137
|
+
--backdrop-brightness: brightness(100%);
|
|
5138
|
+
--backdrop-contrast: contrast(100%);
|
|
5139
|
+
--backdrop-grayscale: grayscale(0);
|
|
5140
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5141
|
+
--backdrop-invert: invert(0);
|
|
5142
|
+
--backdrop-saturate: saturate(100%);
|
|
5143
|
+
--backdrop-sepia: sepia(0);
|
|
5144
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
5145
|
+
}
|
|
5054
5146
|
.backdrop-none\@lg {
|
|
5055
5147
|
backdrop-filter: none;
|
|
5148
|
+
--backdrop-blur: none;
|
|
5149
|
+
--backdrop-brightness: none;
|
|
5150
|
+
--backdrop-contrast: none;
|
|
5151
|
+
--backdrop-grayscale: none;
|
|
5152
|
+
--backdrop-hue-rotate: none;
|
|
5153
|
+
--backdrop-invert: none;
|
|
5154
|
+
--backdrop-saturate: none;
|
|
5155
|
+
--backdrop-sepia: none;
|
|
5056
5156
|
}
|
|
5057
5157
|
.backdrop-blur-none\@lg {
|
|
5058
|
-
backdrop-
|
|
5158
|
+
--backdrop-blur: blur(0);
|
|
5059
5159
|
}
|
|
5060
5160
|
.backdrop-blur-sm\@lg {
|
|
5061
|
-
backdrop-
|
|
5161
|
+
--backdrop-blur: blur(4px);
|
|
5062
5162
|
}
|
|
5063
5163
|
.backdrop-blur-md\@lg {
|
|
5064
|
-
backdrop-
|
|
5164
|
+
--backdrop-blur: blur(8px);
|
|
5065
5165
|
}
|
|
5066
5166
|
.backdrop-blur-lg\@lg {
|
|
5067
|
-
backdrop-
|
|
5167
|
+
--backdrop-blur: blur(12px);
|
|
5068
5168
|
}
|
|
5069
5169
|
.backdrop-blur-xl\@lg {
|
|
5070
|
-
backdrop-
|
|
5170
|
+
--backdrop-blur: blur(24px);
|
|
5071
5171
|
}
|
|
5072
5172
|
.backdrop-blur-2xl\@lg {
|
|
5073
|
-
backdrop-
|
|
5173
|
+
--backdrop-blur: blur(40px);
|
|
5074
5174
|
}
|
|
5075
5175
|
.backdrop-brightness-none\@lg {
|
|
5076
|
-
backdrop-
|
|
5176
|
+
--backdrop-brightness: brightness(100%);
|
|
5077
5177
|
}
|
|
5078
5178
|
.backdrop-brightness-75\@lg {
|
|
5079
|
-
backdrop-
|
|
5179
|
+
--backdrop-brightness: brightness(75%);
|
|
5080
5180
|
}
|
|
5081
5181
|
.backdrop-brightness-90\@lg {
|
|
5082
|
-
backdrop-
|
|
5182
|
+
--backdrop-brightness: brightness(90%);
|
|
5083
5183
|
}
|
|
5084
5184
|
.backdrop-brightness-110\@lg {
|
|
5085
|
-
backdrop-
|
|
5185
|
+
--backdrop-brightness: brightness(110%);
|
|
5086
5186
|
}
|
|
5087
5187
|
.backdrop-brightness-125\@lg {
|
|
5088
|
-
backdrop-
|
|
5188
|
+
--backdrop-brightness: brightness(125%);
|
|
5089
5189
|
}
|
|
5090
5190
|
.backdrop-brightness-150\@lg {
|
|
5091
|
-
backdrop-
|
|
5191
|
+
--backdrop-brightness: brightness(150%);
|
|
5092
5192
|
}
|
|
5093
5193
|
.backdrop-contrast-none\@lg {
|
|
5094
|
-
backdrop-
|
|
5194
|
+
--backdrop-contrast: contrast(100%);
|
|
5095
5195
|
}
|
|
5096
5196
|
.backdrop-contrast-75\@lg {
|
|
5097
|
-
backdrop-
|
|
5197
|
+
--backdrop-contrast: contrast(75%);
|
|
5098
5198
|
}
|
|
5099
5199
|
.backdrop-contrast-90\@lg {
|
|
5100
|
-
backdrop-
|
|
5200
|
+
--backdrop-contrast: contrast(90%);
|
|
5101
5201
|
}
|
|
5102
5202
|
.backdrop-contrast-110\@lg {
|
|
5103
|
-
backdrop-
|
|
5203
|
+
--backdrop-contrast: contrast(110%);
|
|
5104
5204
|
}
|
|
5105
5205
|
.backdrop-contrast-125\@lg {
|
|
5106
|
-
backdrop-
|
|
5206
|
+
--backdrop-contrast: contrast(125%);
|
|
5107
5207
|
}
|
|
5108
5208
|
.backdrop-contrast-150\@lg {
|
|
5109
|
-
backdrop-
|
|
5209
|
+
--backdrop-contrast: contrast(150%);
|
|
5110
5210
|
}
|
|
5111
5211
|
.backdrop-grayscale-none\@lg {
|
|
5112
|
-
backdrop-
|
|
5212
|
+
--backdrop-grayscale: grayscale(0);
|
|
5113
5213
|
}
|
|
5114
5214
|
.backdrop-grayscale-25\@lg {
|
|
5115
|
-
backdrop-
|
|
5215
|
+
--backdrop-grayscale: grayscale(25%);
|
|
5116
5216
|
}
|
|
5117
5217
|
.backdrop-grayscale-50\@lg {
|
|
5118
|
-
backdrop-
|
|
5218
|
+
--backdrop-grayscale: grayscale(50%);
|
|
5119
5219
|
}
|
|
5120
5220
|
.backdrop-grayscale-75\@lg {
|
|
5121
|
-
backdrop-
|
|
5221
|
+
--backdrop-grayscale: grayscale(75%);
|
|
5122
5222
|
}
|
|
5123
5223
|
.backdrop-grayscale-100\@lg {
|
|
5124
|
-
backdrop-
|
|
5224
|
+
--backdrop-grayscale: grayscale(100%);
|
|
5125
5225
|
}
|
|
5126
5226
|
.backdrop-saturate-none\@lg {
|
|
5127
|
-
backdrop-
|
|
5227
|
+
--backdrop-saturate: saturate(100%);
|
|
5128
5228
|
}
|
|
5129
5229
|
.backdrop-saturate-50\@lg {
|
|
5130
|
-
backdrop-
|
|
5230
|
+
--backdrop-saturate: saturate(50%);
|
|
5131
5231
|
}
|
|
5132
5232
|
.backdrop-saturate-75\@lg {
|
|
5133
|
-
backdrop-
|
|
5233
|
+
--backdrop-saturate: saturate(75%);
|
|
5134
5234
|
}
|
|
5135
5235
|
.backdrop-saturate-125\@lg {
|
|
5136
|
-
backdrop-
|
|
5236
|
+
--backdrop-saturate: saturate(125%);
|
|
5137
5237
|
}
|
|
5138
5238
|
.backdrop-saturate-150\@lg {
|
|
5139
|
-
backdrop-
|
|
5239
|
+
--backdrop-saturate: saturate(150%);
|
|
5140
5240
|
}
|
|
5141
5241
|
.backdrop-saturate-200\@lg {
|
|
5142
|
-
backdrop-
|
|
5242
|
+
--backdrop-saturate: saturate(200%);
|
|
5143
5243
|
}
|
|
5144
5244
|
.backdrop-sepia-none\@lg {
|
|
5145
|
-
backdrop-
|
|
5245
|
+
--backdrop-sepia: sepia(0);
|
|
5146
5246
|
}
|
|
5147
5247
|
.backdrop-sepia-25\@lg {
|
|
5148
|
-
backdrop-
|
|
5248
|
+
--backdrop-sepia: sepia(25%);
|
|
5149
5249
|
}
|
|
5150
5250
|
.backdrop-sepia-50\@lg {
|
|
5151
|
-
backdrop-
|
|
5251
|
+
--backdrop-sepia: sepia(50%);
|
|
5152
5252
|
}
|
|
5153
5253
|
.backdrop-sepia-75\@lg {
|
|
5154
|
-
backdrop-
|
|
5254
|
+
--backdrop-sepia: sepia(75%);
|
|
5155
5255
|
}
|
|
5156
5256
|
.backdrop-sepia-100\@lg {
|
|
5157
|
-
backdrop-
|
|
5257
|
+
--backdrop-sepia: sepia(100%);
|
|
5158
5258
|
}
|
|
5159
5259
|
.backdrop-hue-0\@lg {
|
|
5160
|
-
backdrop-
|
|
5260
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5161
5261
|
}
|
|
5162
5262
|
.backdrop-hue-90\@lg {
|
|
5163
|
-
backdrop-
|
|
5263
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
5164
5264
|
}
|
|
5165
5265
|
.backdrop-hue-180\@lg {
|
|
5166
|
-
backdrop-
|
|
5266
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
5167
5267
|
}
|
|
5168
5268
|
.backdrop-hue-270\@lg {
|
|
5169
|
-
backdrop-
|
|
5269
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
5170
5270
|
}
|
|
5171
5271
|
.backdrop-invert-none\@lg {
|
|
5172
|
-
backdrop-
|
|
5272
|
+
--backdrop-invert: invert(0);
|
|
5173
5273
|
}
|
|
5174
5274
|
.backdrop-invert-25\@lg {
|
|
5175
|
-
backdrop-
|
|
5275
|
+
--backdrop-invert: invert(25%);
|
|
5176
5276
|
}
|
|
5177
5277
|
.backdrop-invert-50\@lg {
|
|
5178
|
-
backdrop-
|
|
5278
|
+
--backdrop-invert: invert(50%);
|
|
5179
5279
|
}
|
|
5180
5280
|
.backdrop-invert-75\@lg {
|
|
5181
|
-
backdrop-
|
|
5281
|
+
--backdrop-invert: invert(75%);
|
|
5182
5282
|
}
|
|
5183
5283
|
.backdrop-invert-100\@lg {
|
|
5184
|
-
backdrop-
|
|
5284
|
+
--backdrop-invert: invert(100%);
|
|
5185
5285
|
}
|
|
5186
5286
|
.backdrop-frosted\@lg {
|
|
5187
5287
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -5200,137 +5300,156 @@ code {
|
|
|
5200
5300
|
}
|
|
5201
5301
|
}
|
|
5202
5302
|
@media (min-width: 1280px) {
|
|
5303
|
+
.backdrop-layer\@xl {
|
|
5304
|
+
--backdrop-blur: blur(0);
|
|
5305
|
+
--backdrop-brightness: brightness(100%);
|
|
5306
|
+
--backdrop-contrast: contrast(100%);
|
|
5307
|
+
--backdrop-grayscale: grayscale(0);
|
|
5308
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5309
|
+
--backdrop-invert: invert(0);
|
|
5310
|
+
--backdrop-saturate: saturate(100%);
|
|
5311
|
+
--backdrop-sepia: sepia(0);
|
|
5312
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
5313
|
+
}
|
|
5203
5314
|
.backdrop-none\@xl {
|
|
5204
5315
|
backdrop-filter: none;
|
|
5316
|
+
--backdrop-blur: none;
|
|
5317
|
+
--backdrop-brightness: none;
|
|
5318
|
+
--backdrop-contrast: none;
|
|
5319
|
+
--backdrop-grayscale: none;
|
|
5320
|
+
--backdrop-hue-rotate: none;
|
|
5321
|
+
--backdrop-invert: none;
|
|
5322
|
+
--backdrop-saturate: none;
|
|
5323
|
+
--backdrop-sepia: none;
|
|
5205
5324
|
}
|
|
5206
5325
|
.backdrop-blur-none\@xl {
|
|
5207
|
-
backdrop-
|
|
5326
|
+
--backdrop-blur: blur(0);
|
|
5208
5327
|
}
|
|
5209
5328
|
.backdrop-blur-sm\@xl {
|
|
5210
|
-
backdrop-
|
|
5329
|
+
--backdrop-blur: blur(4px);
|
|
5211
5330
|
}
|
|
5212
5331
|
.backdrop-blur-md\@xl {
|
|
5213
|
-
backdrop-
|
|
5332
|
+
--backdrop-blur: blur(8px);
|
|
5214
5333
|
}
|
|
5215
5334
|
.backdrop-blur-lg\@xl {
|
|
5216
|
-
backdrop-
|
|
5335
|
+
--backdrop-blur: blur(12px);
|
|
5217
5336
|
}
|
|
5218
5337
|
.backdrop-blur-xl\@xl {
|
|
5219
|
-
backdrop-
|
|
5338
|
+
--backdrop-blur: blur(24px);
|
|
5220
5339
|
}
|
|
5221
5340
|
.backdrop-blur-2xl\@xl {
|
|
5222
|
-
backdrop-
|
|
5341
|
+
--backdrop-blur: blur(40px);
|
|
5223
5342
|
}
|
|
5224
5343
|
.backdrop-brightness-none\@xl {
|
|
5225
|
-
backdrop-
|
|
5344
|
+
--backdrop-brightness: brightness(100%);
|
|
5226
5345
|
}
|
|
5227
5346
|
.backdrop-brightness-75\@xl {
|
|
5228
|
-
backdrop-
|
|
5347
|
+
--backdrop-brightness: brightness(75%);
|
|
5229
5348
|
}
|
|
5230
5349
|
.backdrop-brightness-90\@xl {
|
|
5231
|
-
backdrop-
|
|
5350
|
+
--backdrop-brightness: brightness(90%);
|
|
5232
5351
|
}
|
|
5233
5352
|
.backdrop-brightness-110\@xl {
|
|
5234
|
-
backdrop-
|
|
5353
|
+
--backdrop-brightness: brightness(110%);
|
|
5235
5354
|
}
|
|
5236
5355
|
.backdrop-brightness-125\@xl {
|
|
5237
|
-
backdrop-
|
|
5356
|
+
--backdrop-brightness: brightness(125%);
|
|
5238
5357
|
}
|
|
5239
5358
|
.backdrop-brightness-150\@xl {
|
|
5240
|
-
backdrop-
|
|
5359
|
+
--backdrop-brightness: brightness(150%);
|
|
5241
5360
|
}
|
|
5242
5361
|
.backdrop-contrast-none\@xl {
|
|
5243
|
-
backdrop-
|
|
5362
|
+
--backdrop-contrast: contrast(100%);
|
|
5244
5363
|
}
|
|
5245
5364
|
.backdrop-contrast-75\@xl {
|
|
5246
|
-
backdrop-
|
|
5365
|
+
--backdrop-contrast: contrast(75%);
|
|
5247
5366
|
}
|
|
5248
5367
|
.backdrop-contrast-90\@xl {
|
|
5249
|
-
backdrop-
|
|
5368
|
+
--backdrop-contrast: contrast(90%);
|
|
5250
5369
|
}
|
|
5251
5370
|
.backdrop-contrast-110\@xl {
|
|
5252
|
-
backdrop-
|
|
5371
|
+
--backdrop-contrast: contrast(110%);
|
|
5253
5372
|
}
|
|
5254
5373
|
.backdrop-contrast-125\@xl {
|
|
5255
|
-
backdrop-
|
|
5374
|
+
--backdrop-contrast: contrast(125%);
|
|
5256
5375
|
}
|
|
5257
5376
|
.backdrop-contrast-150\@xl {
|
|
5258
|
-
backdrop-
|
|
5377
|
+
--backdrop-contrast: contrast(150%);
|
|
5259
5378
|
}
|
|
5260
5379
|
.backdrop-grayscale-none\@xl {
|
|
5261
|
-
backdrop-
|
|
5380
|
+
--backdrop-grayscale: grayscale(0);
|
|
5262
5381
|
}
|
|
5263
5382
|
.backdrop-grayscale-25\@xl {
|
|
5264
|
-
backdrop-
|
|
5383
|
+
--backdrop-grayscale: grayscale(25%);
|
|
5265
5384
|
}
|
|
5266
5385
|
.backdrop-grayscale-50\@xl {
|
|
5267
|
-
backdrop-
|
|
5386
|
+
--backdrop-grayscale: grayscale(50%);
|
|
5268
5387
|
}
|
|
5269
5388
|
.backdrop-grayscale-75\@xl {
|
|
5270
|
-
backdrop-
|
|
5389
|
+
--backdrop-grayscale: grayscale(75%);
|
|
5271
5390
|
}
|
|
5272
5391
|
.backdrop-grayscale-100\@xl {
|
|
5273
|
-
backdrop-
|
|
5392
|
+
--backdrop-grayscale: grayscale(100%);
|
|
5274
5393
|
}
|
|
5275
5394
|
.backdrop-saturate-none\@xl {
|
|
5276
|
-
backdrop-
|
|
5395
|
+
--backdrop-saturate: saturate(100%);
|
|
5277
5396
|
}
|
|
5278
5397
|
.backdrop-saturate-50\@xl {
|
|
5279
|
-
backdrop-
|
|
5398
|
+
--backdrop-saturate: saturate(50%);
|
|
5280
5399
|
}
|
|
5281
5400
|
.backdrop-saturate-75\@xl {
|
|
5282
|
-
backdrop-
|
|
5401
|
+
--backdrop-saturate: saturate(75%);
|
|
5283
5402
|
}
|
|
5284
5403
|
.backdrop-saturate-125\@xl {
|
|
5285
|
-
backdrop-
|
|
5404
|
+
--backdrop-saturate: saturate(125%);
|
|
5286
5405
|
}
|
|
5287
5406
|
.backdrop-saturate-150\@xl {
|
|
5288
|
-
backdrop-
|
|
5407
|
+
--backdrop-saturate: saturate(150%);
|
|
5289
5408
|
}
|
|
5290
5409
|
.backdrop-saturate-200\@xl {
|
|
5291
|
-
backdrop-
|
|
5410
|
+
--backdrop-saturate: saturate(200%);
|
|
5292
5411
|
}
|
|
5293
5412
|
.backdrop-sepia-none\@xl {
|
|
5294
|
-
backdrop-
|
|
5413
|
+
--backdrop-sepia: sepia(0);
|
|
5295
5414
|
}
|
|
5296
5415
|
.backdrop-sepia-25\@xl {
|
|
5297
|
-
backdrop-
|
|
5416
|
+
--backdrop-sepia: sepia(25%);
|
|
5298
5417
|
}
|
|
5299
5418
|
.backdrop-sepia-50\@xl {
|
|
5300
|
-
backdrop-
|
|
5419
|
+
--backdrop-sepia: sepia(50%);
|
|
5301
5420
|
}
|
|
5302
5421
|
.backdrop-sepia-75\@xl {
|
|
5303
|
-
backdrop-
|
|
5422
|
+
--backdrop-sepia: sepia(75%);
|
|
5304
5423
|
}
|
|
5305
5424
|
.backdrop-sepia-100\@xl {
|
|
5306
|
-
backdrop-
|
|
5425
|
+
--backdrop-sepia: sepia(100%);
|
|
5307
5426
|
}
|
|
5308
5427
|
.backdrop-hue-0\@xl {
|
|
5309
|
-
backdrop-
|
|
5428
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5310
5429
|
}
|
|
5311
5430
|
.backdrop-hue-90\@xl {
|
|
5312
|
-
backdrop-
|
|
5431
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
5313
5432
|
}
|
|
5314
5433
|
.backdrop-hue-180\@xl {
|
|
5315
|
-
backdrop-
|
|
5434
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
5316
5435
|
}
|
|
5317
5436
|
.backdrop-hue-270\@xl {
|
|
5318
|
-
backdrop-
|
|
5437
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
5319
5438
|
}
|
|
5320
5439
|
.backdrop-invert-none\@xl {
|
|
5321
|
-
backdrop-
|
|
5440
|
+
--backdrop-invert: invert(0);
|
|
5322
5441
|
}
|
|
5323
5442
|
.backdrop-invert-25\@xl {
|
|
5324
|
-
backdrop-
|
|
5443
|
+
--backdrop-invert: invert(25%);
|
|
5325
5444
|
}
|
|
5326
5445
|
.backdrop-invert-50\@xl {
|
|
5327
|
-
backdrop-
|
|
5446
|
+
--backdrop-invert: invert(50%);
|
|
5328
5447
|
}
|
|
5329
5448
|
.backdrop-invert-75\@xl {
|
|
5330
|
-
backdrop-
|
|
5449
|
+
--backdrop-invert: invert(75%);
|
|
5331
5450
|
}
|
|
5332
5451
|
.backdrop-invert-100\@xl {
|
|
5333
|
-
backdrop-
|
|
5452
|
+
--backdrop-invert: invert(100%);
|
|
5334
5453
|
}
|
|
5335
5454
|
.backdrop-frosted\@xl {
|
|
5336
5455
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -5349,137 +5468,156 @@ code {
|
|
|
5349
5468
|
}
|
|
5350
5469
|
}
|
|
5351
5470
|
@media (min-width: 1536px) {
|
|
5471
|
+
.backdrop-layer\@2xl {
|
|
5472
|
+
--backdrop-blur: blur(0);
|
|
5473
|
+
--backdrop-brightness: brightness(100%);
|
|
5474
|
+
--backdrop-contrast: contrast(100%);
|
|
5475
|
+
--backdrop-grayscale: grayscale(0);
|
|
5476
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5477
|
+
--backdrop-invert: invert(0);
|
|
5478
|
+
--backdrop-saturate: saturate(100%);
|
|
5479
|
+
--backdrop-sepia: sepia(0);
|
|
5480
|
+
backdrop-filter: var(--backdrop-blur) var(--backdrop-brightness) var(--backdrop-contrast) var(--backdrop-grayscale) var(--backdrop-hue-rotate) var(--backdrop-invert) var(--backdrop-saturate) var(--backdrop-sepia);
|
|
5481
|
+
}
|
|
5352
5482
|
.backdrop-none\@2xl {
|
|
5353
5483
|
backdrop-filter: none;
|
|
5484
|
+
--backdrop-blur: none;
|
|
5485
|
+
--backdrop-brightness: none;
|
|
5486
|
+
--backdrop-contrast: none;
|
|
5487
|
+
--backdrop-grayscale: none;
|
|
5488
|
+
--backdrop-hue-rotate: none;
|
|
5489
|
+
--backdrop-invert: none;
|
|
5490
|
+
--backdrop-saturate: none;
|
|
5491
|
+
--backdrop-sepia: none;
|
|
5354
5492
|
}
|
|
5355
5493
|
.backdrop-blur-none\@2xl {
|
|
5356
|
-
backdrop-
|
|
5494
|
+
--backdrop-blur: blur(0);
|
|
5357
5495
|
}
|
|
5358
5496
|
.backdrop-blur-sm\@2xl {
|
|
5359
|
-
backdrop-
|
|
5497
|
+
--backdrop-blur: blur(4px);
|
|
5360
5498
|
}
|
|
5361
5499
|
.backdrop-blur-md\@2xl {
|
|
5362
|
-
backdrop-
|
|
5500
|
+
--backdrop-blur: blur(8px);
|
|
5363
5501
|
}
|
|
5364
5502
|
.backdrop-blur-lg\@2xl {
|
|
5365
|
-
backdrop-
|
|
5503
|
+
--backdrop-blur: blur(12px);
|
|
5366
5504
|
}
|
|
5367
5505
|
.backdrop-blur-xl\@2xl {
|
|
5368
|
-
backdrop-
|
|
5506
|
+
--backdrop-blur: blur(24px);
|
|
5369
5507
|
}
|
|
5370
5508
|
.backdrop-blur-2xl\@2xl {
|
|
5371
|
-
backdrop-
|
|
5509
|
+
--backdrop-blur: blur(40px);
|
|
5372
5510
|
}
|
|
5373
5511
|
.backdrop-brightness-none\@2xl {
|
|
5374
|
-
backdrop-
|
|
5512
|
+
--backdrop-brightness: brightness(100%);
|
|
5375
5513
|
}
|
|
5376
5514
|
.backdrop-brightness-75\@2xl {
|
|
5377
|
-
backdrop-
|
|
5515
|
+
--backdrop-brightness: brightness(75%);
|
|
5378
5516
|
}
|
|
5379
5517
|
.backdrop-brightness-90\@2xl {
|
|
5380
|
-
backdrop-
|
|
5518
|
+
--backdrop-brightness: brightness(90%);
|
|
5381
5519
|
}
|
|
5382
5520
|
.backdrop-brightness-110\@2xl {
|
|
5383
|
-
backdrop-
|
|
5521
|
+
--backdrop-brightness: brightness(110%);
|
|
5384
5522
|
}
|
|
5385
5523
|
.backdrop-brightness-125\@2xl {
|
|
5386
|
-
backdrop-
|
|
5524
|
+
--backdrop-brightness: brightness(125%);
|
|
5387
5525
|
}
|
|
5388
5526
|
.backdrop-brightness-150\@2xl {
|
|
5389
|
-
backdrop-
|
|
5527
|
+
--backdrop-brightness: brightness(150%);
|
|
5390
5528
|
}
|
|
5391
5529
|
.backdrop-contrast-none\@2xl {
|
|
5392
|
-
backdrop-
|
|
5530
|
+
--backdrop-contrast: contrast(100%);
|
|
5393
5531
|
}
|
|
5394
5532
|
.backdrop-contrast-75\@2xl {
|
|
5395
|
-
backdrop-
|
|
5533
|
+
--backdrop-contrast: contrast(75%);
|
|
5396
5534
|
}
|
|
5397
5535
|
.backdrop-contrast-90\@2xl {
|
|
5398
|
-
backdrop-
|
|
5536
|
+
--backdrop-contrast: contrast(90%);
|
|
5399
5537
|
}
|
|
5400
5538
|
.backdrop-contrast-110\@2xl {
|
|
5401
|
-
backdrop-
|
|
5539
|
+
--backdrop-contrast: contrast(110%);
|
|
5402
5540
|
}
|
|
5403
5541
|
.backdrop-contrast-125\@2xl {
|
|
5404
|
-
backdrop-
|
|
5542
|
+
--backdrop-contrast: contrast(125%);
|
|
5405
5543
|
}
|
|
5406
5544
|
.backdrop-contrast-150\@2xl {
|
|
5407
|
-
backdrop-
|
|
5545
|
+
--backdrop-contrast: contrast(150%);
|
|
5408
5546
|
}
|
|
5409
5547
|
.backdrop-grayscale-none\@2xl {
|
|
5410
|
-
backdrop-
|
|
5548
|
+
--backdrop-grayscale: grayscale(0);
|
|
5411
5549
|
}
|
|
5412
5550
|
.backdrop-grayscale-25\@2xl {
|
|
5413
|
-
backdrop-
|
|
5551
|
+
--backdrop-grayscale: grayscale(25%);
|
|
5414
5552
|
}
|
|
5415
5553
|
.backdrop-grayscale-50\@2xl {
|
|
5416
|
-
backdrop-
|
|
5554
|
+
--backdrop-grayscale: grayscale(50%);
|
|
5417
5555
|
}
|
|
5418
5556
|
.backdrop-grayscale-75\@2xl {
|
|
5419
|
-
backdrop-
|
|
5557
|
+
--backdrop-grayscale: grayscale(75%);
|
|
5420
5558
|
}
|
|
5421
5559
|
.backdrop-grayscale-100\@2xl {
|
|
5422
|
-
backdrop-
|
|
5560
|
+
--backdrop-grayscale: grayscale(100%);
|
|
5423
5561
|
}
|
|
5424
5562
|
.backdrop-saturate-none\@2xl {
|
|
5425
|
-
backdrop-
|
|
5563
|
+
--backdrop-saturate: saturate(100%);
|
|
5426
5564
|
}
|
|
5427
5565
|
.backdrop-saturate-50\@2xl {
|
|
5428
|
-
backdrop-
|
|
5566
|
+
--backdrop-saturate: saturate(50%);
|
|
5429
5567
|
}
|
|
5430
5568
|
.backdrop-saturate-75\@2xl {
|
|
5431
|
-
backdrop-
|
|
5569
|
+
--backdrop-saturate: saturate(75%);
|
|
5432
5570
|
}
|
|
5433
5571
|
.backdrop-saturate-125\@2xl {
|
|
5434
|
-
backdrop-
|
|
5572
|
+
--backdrop-saturate: saturate(125%);
|
|
5435
5573
|
}
|
|
5436
5574
|
.backdrop-saturate-150\@2xl {
|
|
5437
|
-
backdrop-
|
|
5575
|
+
--backdrop-saturate: saturate(150%);
|
|
5438
5576
|
}
|
|
5439
5577
|
.backdrop-saturate-200\@2xl {
|
|
5440
|
-
backdrop-
|
|
5578
|
+
--backdrop-saturate: saturate(200%);
|
|
5441
5579
|
}
|
|
5442
5580
|
.backdrop-sepia-none\@2xl {
|
|
5443
|
-
backdrop-
|
|
5581
|
+
--backdrop-sepia: sepia(0);
|
|
5444
5582
|
}
|
|
5445
5583
|
.backdrop-sepia-25\@2xl {
|
|
5446
|
-
backdrop-
|
|
5584
|
+
--backdrop-sepia: sepia(25%);
|
|
5447
5585
|
}
|
|
5448
5586
|
.backdrop-sepia-50\@2xl {
|
|
5449
|
-
backdrop-
|
|
5587
|
+
--backdrop-sepia: sepia(50%);
|
|
5450
5588
|
}
|
|
5451
5589
|
.backdrop-sepia-75\@2xl {
|
|
5452
|
-
backdrop-
|
|
5590
|
+
--backdrop-sepia: sepia(75%);
|
|
5453
5591
|
}
|
|
5454
5592
|
.backdrop-sepia-100\@2xl {
|
|
5455
|
-
backdrop-
|
|
5593
|
+
--backdrop-sepia: sepia(100%);
|
|
5456
5594
|
}
|
|
5457
5595
|
.backdrop-hue-0\@2xl {
|
|
5458
|
-
backdrop-
|
|
5596
|
+
--backdrop-hue-rotate: hue-rotate(0deg);
|
|
5459
5597
|
}
|
|
5460
5598
|
.backdrop-hue-90\@2xl {
|
|
5461
|
-
backdrop-
|
|
5599
|
+
--backdrop-hue-rotate: hue-rotate(90deg);
|
|
5462
5600
|
}
|
|
5463
5601
|
.backdrop-hue-180\@2xl {
|
|
5464
|
-
backdrop-
|
|
5602
|
+
--backdrop-hue-rotate: hue-rotate(180deg);
|
|
5465
5603
|
}
|
|
5466
5604
|
.backdrop-hue-270\@2xl {
|
|
5467
|
-
backdrop-
|
|
5605
|
+
--backdrop-hue-rotate: hue-rotate(270deg);
|
|
5468
5606
|
}
|
|
5469
5607
|
.backdrop-invert-none\@2xl {
|
|
5470
|
-
backdrop-
|
|
5608
|
+
--backdrop-invert: invert(0);
|
|
5471
5609
|
}
|
|
5472
5610
|
.backdrop-invert-25\@2xl {
|
|
5473
|
-
backdrop-
|
|
5611
|
+
--backdrop-invert: invert(25%);
|
|
5474
5612
|
}
|
|
5475
5613
|
.backdrop-invert-50\@2xl {
|
|
5476
|
-
backdrop-
|
|
5614
|
+
--backdrop-invert: invert(50%);
|
|
5477
5615
|
}
|
|
5478
5616
|
.backdrop-invert-75\@2xl {
|
|
5479
|
-
backdrop-
|
|
5617
|
+
--backdrop-invert: invert(75%);
|
|
5480
5618
|
}
|
|
5481
5619
|
.backdrop-invert-100\@2xl {
|
|
5482
|
-
backdrop-
|
|
5620
|
+
--backdrop-invert: invert(100%);
|
|
5483
5621
|
}
|
|
5484
5622
|
.backdrop-frosted\@2xl {
|
|
5485
5623
|
backdrop-filter: blur(8px) saturate(90%) brightness(120%);
|
|
@@ -5504,43 +5642,43 @@ code {
|
|
|
5504
5642
|
.border {
|
|
5505
5643
|
border-width: 1px;
|
|
5506
5644
|
border-style: solid;
|
|
5507
|
-
border-color: var(--border);
|
|
5645
|
+
border-color: var(--border-base);
|
|
5508
5646
|
}
|
|
5509
5647
|
|
|
5510
5648
|
.border-0 {
|
|
5511
5649
|
border-width: 0px;
|
|
5512
5650
|
border-style: solid;
|
|
5513
|
-
border-color: var(--border);
|
|
5651
|
+
border-color: var(--border-base);
|
|
5514
5652
|
}
|
|
5515
5653
|
|
|
5516
5654
|
.border-0 {
|
|
5517
5655
|
border-width: 0px;
|
|
5518
5656
|
border-style: solid;
|
|
5519
|
-
border-color: var(--border);
|
|
5657
|
+
border-color: var(--border-base);
|
|
5520
5658
|
}
|
|
5521
5659
|
|
|
5522
5660
|
.border-1 {
|
|
5523
5661
|
border-width: 1px;
|
|
5524
5662
|
border-style: solid;
|
|
5525
|
-
border-color: var(--border);
|
|
5663
|
+
border-color: var(--border-base);
|
|
5526
5664
|
}
|
|
5527
5665
|
|
|
5528
5666
|
.border-2 {
|
|
5529
5667
|
border-width: 2px;
|
|
5530
5668
|
border-style: solid;
|
|
5531
|
-
border-color: var(--border);
|
|
5669
|
+
border-color: var(--border-base);
|
|
5532
5670
|
}
|
|
5533
5671
|
|
|
5534
5672
|
.border-4 {
|
|
5535
5673
|
border-width: 4px;
|
|
5536
5674
|
border-style: solid;
|
|
5537
|
-
border-color: var(--border);
|
|
5675
|
+
border-color: var(--border-base);
|
|
5538
5676
|
}
|
|
5539
5677
|
|
|
5540
5678
|
.border-8 {
|
|
5541
5679
|
border-width: 8px;
|
|
5542
5680
|
border-style: solid;
|
|
5543
|
-
border-color: var(--border);
|
|
5681
|
+
border-color: var(--border-base);
|
|
5544
5682
|
}
|
|
5545
5683
|
|
|
5546
5684
|
.border-t-0 {
|
|
@@ -6088,31 +6226,31 @@ code {
|
|
|
6088
6226
|
.hover\:border-0:hover {
|
|
6089
6227
|
border-width: 0px;
|
|
6090
6228
|
border-style: solid;
|
|
6091
|
-
border-color: var(--border);
|
|
6229
|
+
border-color: var(--border-base);
|
|
6092
6230
|
}
|
|
6093
6231
|
|
|
6094
6232
|
.hover\:border-1:hover {
|
|
6095
6233
|
border-width: 1px;
|
|
6096
6234
|
border-style: solid;
|
|
6097
|
-
border-color: var(--border);
|
|
6235
|
+
border-color: var(--border-base);
|
|
6098
6236
|
}
|
|
6099
6237
|
|
|
6100
6238
|
.hover\:border-2:hover {
|
|
6101
6239
|
border-width: 2px;
|
|
6102
6240
|
border-style: solid;
|
|
6103
|
-
border-color: var(--border);
|
|
6241
|
+
border-color: var(--border-base);
|
|
6104
6242
|
}
|
|
6105
6243
|
|
|
6106
6244
|
.hover\:border-4:hover {
|
|
6107
6245
|
border-width: 4px;
|
|
6108
6246
|
border-style: solid;
|
|
6109
|
-
border-color: var(--border);
|
|
6247
|
+
border-color: var(--border-base);
|
|
6110
6248
|
}
|
|
6111
6249
|
|
|
6112
6250
|
.hover\:border-8:hover {
|
|
6113
6251
|
border-width: 8px;
|
|
6114
6252
|
border-style: solid;
|
|
6115
|
-
border-color: var(--border);
|
|
6253
|
+
border-color: var(--border-base);
|
|
6116
6254
|
}
|
|
6117
6255
|
|
|
6118
6256
|
.hover\:border-solid:hover {
|
|
@@ -6174,31 +6312,31 @@ code {
|
|
|
6174
6312
|
.active\:border-0:active {
|
|
6175
6313
|
border-width: 0px;
|
|
6176
6314
|
border-style: solid;
|
|
6177
|
-
border-color: var(--border);
|
|
6315
|
+
border-color: var(--border-base);
|
|
6178
6316
|
}
|
|
6179
6317
|
|
|
6180
6318
|
.active\:border-1:active {
|
|
6181
6319
|
border-width: 1px;
|
|
6182
6320
|
border-style: solid;
|
|
6183
|
-
border-color: var(--border);
|
|
6321
|
+
border-color: var(--border-base);
|
|
6184
6322
|
}
|
|
6185
6323
|
|
|
6186
6324
|
.active\:border-2:active {
|
|
6187
6325
|
border-width: 2px;
|
|
6188
6326
|
border-style: solid;
|
|
6189
|
-
border-color: var(--border);
|
|
6327
|
+
border-color: var(--border-base);
|
|
6190
6328
|
}
|
|
6191
6329
|
|
|
6192
6330
|
.active\:border-4:active {
|
|
6193
6331
|
border-width: 4px;
|
|
6194
6332
|
border-style: solid;
|
|
6195
|
-
border-color: var(--border);
|
|
6333
|
+
border-color: var(--border-base);
|
|
6196
6334
|
}
|
|
6197
6335
|
|
|
6198
6336
|
.active\:border-8:active {
|
|
6199
6337
|
border-width: 8px;
|
|
6200
6338
|
border-style: solid;
|
|
6201
|
-
border-color: var(--border);
|
|
6339
|
+
border-color: var(--border-base);
|
|
6202
6340
|
}
|
|
6203
6341
|
|
|
6204
6342
|
.active\:border-solid:active {
|
|
@@ -6260,31 +6398,31 @@ code {
|
|
|
6260
6398
|
.focus\:border-0:focus {
|
|
6261
6399
|
border-width: 0px;
|
|
6262
6400
|
border-style: solid;
|
|
6263
|
-
border-color: var(--border);
|
|
6401
|
+
border-color: var(--border-base);
|
|
6264
6402
|
}
|
|
6265
6403
|
|
|
6266
6404
|
.focus\:border-1:focus {
|
|
6267
6405
|
border-width: 1px;
|
|
6268
6406
|
border-style: solid;
|
|
6269
|
-
border-color: var(--border);
|
|
6407
|
+
border-color: var(--border-base);
|
|
6270
6408
|
}
|
|
6271
6409
|
|
|
6272
6410
|
.focus\:border-2:focus {
|
|
6273
6411
|
border-width: 2px;
|
|
6274
6412
|
border-style: solid;
|
|
6275
|
-
border-color: var(--border);
|
|
6413
|
+
border-color: var(--border-base);
|
|
6276
6414
|
}
|
|
6277
6415
|
|
|
6278
6416
|
.focus\:border-4:focus {
|
|
6279
6417
|
border-width: 4px;
|
|
6280
6418
|
border-style: solid;
|
|
6281
|
-
border-color: var(--border);
|
|
6419
|
+
border-color: var(--border-base);
|
|
6282
6420
|
}
|
|
6283
6421
|
|
|
6284
6422
|
.focus\:border-8:focus {
|
|
6285
6423
|
border-width: 8px;
|
|
6286
6424
|
border-style: solid;
|
|
6287
|
-
border-color: var(--border);
|
|
6425
|
+
border-color: var(--border-base);
|
|
6288
6426
|
}
|
|
6289
6427
|
|
|
6290
6428
|
.focus\:border-solid:focus {
|
|
@@ -6347,37 +6485,37 @@ code {
|
|
|
6347
6485
|
.border-0\@xs {
|
|
6348
6486
|
border-width: 0px;
|
|
6349
6487
|
border-style: solid;
|
|
6350
|
-
border-color: var(--border);
|
|
6488
|
+
border-color: var(--border-base);
|
|
6351
6489
|
}
|
|
6352
6490
|
.border-1\@xs {
|
|
6353
6491
|
border-width: 1px;
|
|
6354
6492
|
border-style: solid;
|
|
6355
|
-
border-color: var(--border);
|
|
6493
|
+
border-color: var(--border-base);
|
|
6356
6494
|
}
|
|
6357
6495
|
.border-2\@xs {
|
|
6358
6496
|
border-width: 2px;
|
|
6359
6497
|
border-style: solid;
|
|
6360
|
-
border-color: var(--border);
|
|
6498
|
+
border-color: var(--border-base);
|
|
6361
6499
|
}
|
|
6362
6500
|
.border-4\@xs {
|
|
6363
6501
|
border-width: 4px;
|
|
6364
6502
|
border-style: solid;
|
|
6365
|
-
border-color: var(--border);
|
|
6503
|
+
border-color: var(--border-base);
|
|
6366
6504
|
}
|
|
6367
6505
|
.border-8\@xs {
|
|
6368
6506
|
border-width: 8px;
|
|
6369
6507
|
border-style: solid;
|
|
6370
|
-
border-color: var(--border);
|
|
6508
|
+
border-color: var(--border-base);
|
|
6371
6509
|
}
|
|
6372
6510
|
.border\@xs {
|
|
6373
6511
|
border-width: 1px;
|
|
6374
6512
|
border-style: solid;
|
|
6375
|
-
border-color: var(--border);
|
|
6513
|
+
border-color: var(--border-base);
|
|
6376
6514
|
}
|
|
6377
6515
|
.border-0\@xs {
|
|
6378
6516
|
border-width: 0px;
|
|
6379
6517
|
border-style: solid;
|
|
6380
|
-
border-color: var(--border);
|
|
6518
|
+
border-color: var(--border-base);
|
|
6381
6519
|
}
|
|
6382
6520
|
.rounded-xs\@xs {
|
|
6383
6521
|
border-radius: 0.25rem;
|
|
@@ -6417,37 +6555,37 @@ code {
|
|
|
6417
6555
|
.border-0\@sm {
|
|
6418
6556
|
border-width: 0px;
|
|
6419
6557
|
border-style: solid;
|
|
6420
|
-
border-color: var(--border);
|
|
6558
|
+
border-color: var(--border-base);
|
|
6421
6559
|
}
|
|
6422
6560
|
.border-1\@sm {
|
|
6423
6561
|
border-width: 1px;
|
|
6424
6562
|
border-style: solid;
|
|
6425
|
-
border-color: var(--border);
|
|
6563
|
+
border-color: var(--border-base);
|
|
6426
6564
|
}
|
|
6427
6565
|
.border-2\@sm {
|
|
6428
6566
|
border-width: 2px;
|
|
6429
6567
|
border-style: solid;
|
|
6430
|
-
border-color: var(--border);
|
|
6568
|
+
border-color: var(--border-base);
|
|
6431
6569
|
}
|
|
6432
6570
|
.border-4\@sm {
|
|
6433
6571
|
border-width: 4px;
|
|
6434
6572
|
border-style: solid;
|
|
6435
|
-
border-color: var(--border);
|
|
6573
|
+
border-color: var(--border-base);
|
|
6436
6574
|
}
|
|
6437
6575
|
.border-8\@sm {
|
|
6438
6576
|
border-width: 8px;
|
|
6439
6577
|
border-style: solid;
|
|
6440
|
-
border-color: var(--border);
|
|
6578
|
+
border-color: var(--border-base);
|
|
6441
6579
|
}
|
|
6442
6580
|
.border\@sm {
|
|
6443
6581
|
border-width: 1px;
|
|
6444
6582
|
border-style: solid;
|
|
6445
|
-
border-color: var(--border);
|
|
6583
|
+
border-color: var(--border-base);
|
|
6446
6584
|
}
|
|
6447
6585
|
.border-0\@sm {
|
|
6448
6586
|
border-width: 0px;
|
|
6449
6587
|
border-style: solid;
|
|
6450
|
-
border-color: var(--border);
|
|
6588
|
+
border-color: var(--border-base);
|
|
6451
6589
|
}
|
|
6452
6590
|
.rounded-xs\@sm {
|
|
6453
6591
|
border-radius: 0.25rem;
|
|
@@ -6487,37 +6625,37 @@ code {
|
|
|
6487
6625
|
.border-0\@md {
|
|
6488
6626
|
border-width: 0px;
|
|
6489
6627
|
border-style: solid;
|
|
6490
|
-
border-color: var(--border);
|
|
6628
|
+
border-color: var(--border-base);
|
|
6491
6629
|
}
|
|
6492
6630
|
.border-1\@md {
|
|
6493
6631
|
border-width: 1px;
|
|
6494
6632
|
border-style: solid;
|
|
6495
|
-
border-color: var(--border);
|
|
6633
|
+
border-color: var(--border-base);
|
|
6496
6634
|
}
|
|
6497
6635
|
.border-2\@md {
|
|
6498
6636
|
border-width: 2px;
|
|
6499
6637
|
border-style: solid;
|
|
6500
|
-
border-color: var(--border);
|
|
6638
|
+
border-color: var(--border-base);
|
|
6501
6639
|
}
|
|
6502
6640
|
.border-4\@md {
|
|
6503
6641
|
border-width: 4px;
|
|
6504
6642
|
border-style: solid;
|
|
6505
|
-
border-color: var(--border);
|
|
6643
|
+
border-color: var(--border-base);
|
|
6506
6644
|
}
|
|
6507
6645
|
.border-8\@md {
|
|
6508
6646
|
border-width: 8px;
|
|
6509
6647
|
border-style: solid;
|
|
6510
|
-
border-color: var(--border);
|
|
6648
|
+
border-color: var(--border-base);
|
|
6511
6649
|
}
|
|
6512
6650
|
.border\@md {
|
|
6513
6651
|
border-width: 1px;
|
|
6514
6652
|
border-style: solid;
|
|
6515
|
-
border-color: var(--border);
|
|
6653
|
+
border-color: var(--border-base);
|
|
6516
6654
|
}
|
|
6517
6655
|
.border-0\@md {
|
|
6518
6656
|
border-width: 0px;
|
|
6519
6657
|
border-style: solid;
|
|
6520
|
-
border-color: var(--border);
|
|
6658
|
+
border-color: var(--border-base);
|
|
6521
6659
|
}
|
|
6522
6660
|
.rounded-xs\@md {
|
|
6523
6661
|
border-radius: 0.25rem;
|
|
@@ -6557,37 +6695,37 @@ code {
|
|
|
6557
6695
|
.border-0\@lg {
|
|
6558
6696
|
border-width: 0px;
|
|
6559
6697
|
border-style: solid;
|
|
6560
|
-
border-color: var(--border);
|
|
6698
|
+
border-color: var(--border-base);
|
|
6561
6699
|
}
|
|
6562
6700
|
.border-1\@lg {
|
|
6563
6701
|
border-width: 1px;
|
|
6564
6702
|
border-style: solid;
|
|
6565
|
-
border-color: var(--border);
|
|
6703
|
+
border-color: var(--border-base);
|
|
6566
6704
|
}
|
|
6567
6705
|
.border-2\@lg {
|
|
6568
6706
|
border-width: 2px;
|
|
6569
6707
|
border-style: solid;
|
|
6570
|
-
border-color: var(--border);
|
|
6708
|
+
border-color: var(--border-base);
|
|
6571
6709
|
}
|
|
6572
6710
|
.border-4\@lg {
|
|
6573
6711
|
border-width: 4px;
|
|
6574
6712
|
border-style: solid;
|
|
6575
|
-
border-color: var(--border);
|
|
6713
|
+
border-color: var(--border-base);
|
|
6576
6714
|
}
|
|
6577
6715
|
.border-8\@lg {
|
|
6578
6716
|
border-width: 8px;
|
|
6579
6717
|
border-style: solid;
|
|
6580
|
-
border-color: var(--border);
|
|
6718
|
+
border-color: var(--border-base);
|
|
6581
6719
|
}
|
|
6582
6720
|
.border\@lg {
|
|
6583
6721
|
border-width: 1px;
|
|
6584
6722
|
border-style: solid;
|
|
6585
|
-
border-color: var(--border);
|
|
6723
|
+
border-color: var(--border-base);
|
|
6586
6724
|
}
|
|
6587
6725
|
.border-0\@lg {
|
|
6588
6726
|
border-width: 0px;
|
|
6589
6727
|
border-style: solid;
|
|
6590
|
-
border-color: var(--border);
|
|
6728
|
+
border-color: var(--border-base);
|
|
6591
6729
|
}
|
|
6592
6730
|
.rounded-xs\@lg {
|
|
6593
6731
|
border-radius: 0.25rem;
|
|
@@ -6627,37 +6765,37 @@ code {
|
|
|
6627
6765
|
.border-0\@xl {
|
|
6628
6766
|
border-width: 0px;
|
|
6629
6767
|
border-style: solid;
|
|
6630
|
-
border-color: var(--border);
|
|
6768
|
+
border-color: var(--border-base);
|
|
6631
6769
|
}
|
|
6632
6770
|
.border-1\@xl {
|
|
6633
6771
|
border-width: 1px;
|
|
6634
6772
|
border-style: solid;
|
|
6635
|
-
border-color: var(--border);
|
|
6773
|
+
border-color: var(--border-base);
|
|
6636
6774
|
}
|
|
6637
6775
|
.border-2\@xl {
|
|
6638
6776
|
border-width: 2px;
|
|
6639
6777
|
border-style: solid;
|
|
6640
|
-
border-color: var(--border);
|
|
6778
|
+
border-color: var(--border-base);
|
|
6641
6779
|
}
|
|
6642
6780
|
.border-4\@xl {
|
|
6643
6781
|
border-width: 4px;
|
|
6644
6782
|
border-style: solid;
|
|
6645
|
-
border-color: var(--border);
|
|
6783
|
+
border-color: var(--border-base);
|
|
6646
6784
|
}
|
|
6647
6785
|
.border-8\@xl {
|
|
6648
6786
|
border-width: 8px;
|
|
6649
6787
|
border-style: solid;
|
|
6650
|
-
border-color: var(--border);
|
|
6788
|
+
border-color: var(--border-base);
|
|
6651
6789
|
}
|
|
6652
6790
|
.border\@xl {
|
|
6653
6791
|
border-width: 1px;
|
|
6654
6792
|
border-style: solid;
|
|
6655
|
-
border-color: var(--border);
|
|
6793
|
+
border-color: var(--border-base);
|
|
6656
6794
|
}
|
|
6657
6795
|
.border-0\@xl {
|
|
6658
6796
|
border-width: 0px;
|
|
6659
6797
|
border-style: solid;
|
|
6660
|
-
border-color: var(--border);
|
|
6798
|
+
border-color: var(--border-base);
|
|
6661
6799
|
}
|
|
6662
6800
|
.rounded-xs\@xl {
|
|
6663
6801
|
border-radius: 0.25rem;
|
|
@@ -6697,37 +6835,37 @@ code {
|
|
|
6697
6835
|
.border-0\@2xl {
|
|
6698
6836
|
border-width: 0px;
|
|
6699
6837
|
border-style: solid;
|
|
6700
|
-
border-color: var(--border);
|
|
6838
|
+
border-color: var(--border-base);
|
|
6701
6839
|
}
|
|
6702
6840
|
.border-1\@2xl {
|
|
6703
6841
|
border-width: 1px;
|
|
6704
6842
|
border-style: solid;
|
|
6705
|
-
border-color: var(--border);
|
|
6843
|
+
border-color: var(--border-base);
|
|
6706
6844
|
}
|
|
6707
6845
|
.border-2\@2xl {
|
|
6708
6846
|
border-width: 2px;
|
|
6709
6847
|
border-style: solid;
|
|
6710
|
-
border-color: var(--border);
|
|
6848
|
+
border-color: var(--border-base);
|
|
6711
6849
|
}
|
|
6712
6850
|
.border-4\@2xl {
|
|
6713
6851
|
border-width: 4px;
|
|
6714
6852
|
border-style: solid;
|
|
6715
|
-
border-color: var(--border);
|
|
6853
|
+
border-color: var(--border-base);
|
|
6716
6854
|
}
|
|
6717
6855
|
.border-8\@2xl {
|
|
6718
6856
|
border-width: 8px;
|
|
6719
6857
|
border-style: solid;
|
|
6720
|
-
border-color: var(--border);
|
|
6858
|
+
border-color: var(--border-base);
|
|
6721
6859
|
}
|
|
6722
6860
|
.border\@2xl {
|
|
6723
6861
|
border-width: 1px;
|
|
6724
6862
|
border-style: solid;
|
|
6725
|
-
border-color: var(--border);
|
|
6863
|
+
border-color: var(--border-base);
|
|
6726
6864
|
}
|
|
6727
6865
|
.border-0\@2xl {
|
|
6728
6866
|
border-width: 0px;
|
|
6729
6867
|
border-style: solid;
|
|
6730
|
-
border-color: var(--border);
|
|
6868
|
+
border-color: var(--border-base);
|
|
6731
6869
|
}
|
|
6732
6870
|
.rounded-xs\@2xl {
|
|
6733
6871
|
border-radius: 0.25rem;
|
|
@@ -19688,6 +19826,10 @@ code {
|
|
|
19688
19826
|
font-size: 1rem;
|
|
19689
19827
|
}
|
|
19690
19828
|
|
|
19829
|
+
.text-base {
|
|
19830
|
+
font-size: 1rem;
|
|
19831
|
+
}
|
|
19832
|
+
|
|
19691
19833
|
.text-lg {
|
|
19692
19834
|
font-size: 1.25rem;
|
|
19693
19835
|
}
|
|
@@ -19933,6 +20075,9 @@ code {
|
|
|
19933
20075
|
.text-md\@xs {
|
|
19934
20076
|
font-size: 1rem;
|
|
19935
20077
|
}
|
|
20078
|
+
.text-base\@xs {
|
|
20079
|
+
font-size: 1rem;
|
|
20080
|
+
}
|
|
19936
20081
|
.text-lg\@xs {
|
|
19937
20082
|
font-size: 1.25rem;
|
|
19938
20083
|
}
|
|
@@ -19957,6 +20102,9 @@ code {
|
|
|
19957
20102
|
.text-md\@xs {
|
|
19958
20103
|
font-size: 1rem;
|
|
19959
20104
|
}
|
|
20105
|
+
.text-base\@xs {
|
|
20106
|
+
font-size: 1rem;
|
|
20107
|
+
}
|
|
19960
20108
|
.text-lg\@xs {
|
|
19961
20109
|
font-size: 1.25rem;
|
|
19962
20110
|
}
|
|
@@ -20125,6 +20273,9 @@ code {
|
|
|
20125
20273
|
.text-md\@sm {
|
|
20126
20274
|
font-size: 1rem;
|
|
20127
20275
|
}
|
|
20276
|
+
.text-base\@sm {
|
|
20277
|
+
font-size: 1rem;
|
|
20278
|
+
}
|
|
20128
20279
|
.text-lg\@sm {
|
|
20129
20280
|
font-size: 1.25rem;
|
|
20130
20281
|
}
|
|
@@ -20149,6 +20300,9 @@ code {
|
|
|
20149
20300
|
.text-md\@sm {
|
|
20150
20301
|
font-size: 1rem;
|
|
20151
20302
|
}
|
|
20303
|
+
.text-base\@sm {
|
|
20304
|
+
font-size: 1rem;
|
|
20305
|
+
}
|
|
20152
20306
|
.text-lg\@sm {
|
|
20153
20307
|
font-size: 1.25rem;
|
|
20154
20308
|
}
|
|
@@ -20317,6 +20471,9 @@ code {
|
|
|
20317
20471
|
.text-md\@md {
|
|
20318
20472
|
font-size: 1rem;
|
|
20319
20473
|
}
|
|
20474
|
+
.text-base\@md {
|
|
20475
|
+
font-size: 1rem;
|
|
20476
|
+
}
|
|
20320
20477
|
.text-lg\@md {
|
|
20321
20478
|
font-size: 1.25rem;
|
|
20322
20479
|
}
|
|
@@ -20341,6 +20498,9 @@ code {
|
|
|
20341
20498
|
.text-md\@md {
|
|
20342
20499
|
font-size: 1rem;
|
|
20343
20500
|
}
|
|
20501
|
+
.text-base\@md {
|
|
20502
|
+
font-size: 1rem;
|
|
20503
|
+
}
|
|
20344
20504
|
.text-lg\@md {
|
|
20345
20505
|
font-size: 1.25rem;
|
|
20346
20506
|
}
|
|
@@ -20509,6 +20669,9 @@ code {
|
|
|
20509
20669
|
.text-md\@lg {
|
|
20510
20670
|
font-size: 1rem;
|
|
20511
20671
|
}
|
|
20672
|
+
.text-base\@lg {
|
|
20673
|
+
font-size: 1rem;
|
|
20674
|
+
}
|
|
20512
20675
|
.text-lg\@lg {
|
|
20513
20676
|
font-size: 1.25rem;
|
|
20514
20677
|
}
|
|
@@ -20533,6 +20696,9 @@ code {
|
|
|
20533
20696
|
.text-md\@lg {
|
|
20534
20697
|
font-size: 1rem;
|
|
20535
20698
|
}
|
|
20699
|
+
.text-base\@lg {
|
|
20700
|
+
font-size: 1rem;
|
|
20701
|
+
}
|
|
20536
20702
|
.text-lg\@lg {
|
|
20537
20703
|
font-size: 1.25rem;
|
|
20538
20704
|
}
|
|
@@ -20701,6 +20867,9 @@ code {
|
|
|
20701
20867
|
.text-md\@xl {
|
|
20702
20868
|
font-size: 1rem;
|
|
20703
20869
|
}
|
|
20870
|
+
.text-base\@xl {
|
|
20871
|
+
font-size: 1rem;
|
|
20872
|
+
}
|
|
20704
20873
|
.text-lg\@xl {
|
|
20705
20874
|
font-size: 1.25rem;
|
|
20706
20875
|
}
|
|
@@ -20725,6 +20894,9 @@ code {
|
|
|
20725
20894
|
.text-md\@xl {
|
|
20726
20895
|
font-size: 1rem;
|
|
20727
20896
|
}
|
|
20897
|
+
.text-base\@xl {
|
|
20898
|
+
font-size: 1rem;
|
|
20899
|
+
}
|
|
20728
20900
|
.text-lg\@xl {
|
|
20729
20901
|
font-size: 1.25rem;
|
|
20730
20902
|
}
|
|
@@ -20893,6 +21065,9 @@ code {
|
|
|
20893
21065
|
.text-md\@2xl {
|
|
20894
21066
|
font-size: 1rem;
|
|
20895
21067
|
}
|
|
21068
|
+
.text-base\@2xl {
|
|
21069
|
+
font-size: 1rem;
|
|
21070
|
+
}
|
|
20896
21071
|
.text-lg\@2xl {
|
|
20897
21072
|
font-size: 1.25rem;
|
|
20898
21073
|
}
|
|
@@ -20917,6 +21092,9 @@ code {
|
|
|
20917
21092
|
.text-md\@2xl {
|
|
20918
21093
|
font-size: 1rem;
|
|
20919
21094
|
}
|
|
21095
|
+
.text-base\@2xl {
|
|
21096
|
+
font-size: 1rem;
|
|
21097
|
+
}
|
|
20920
21098
|
.text-lg\@2xl {
|
|
20921
21099
|
font-size: 1.25rem;
|
|
20922
21100
|
}
|
|
@@ -21173,23 +21351,23 @@ code {
|
|
|
21173
21351
|
z-index: 300;
|
|
21174
21352
|
}
|
|
21175
21353
|
|
|
21176
|
-
.z-
|
|
21354
|
+
.z-overlay {
|
|
21177
21355
|
z-index: 400;
|
|
21178
21356
|
}
|
|
21179
21357
|
|
|
21180
|
-
.z-
|
|
21358
|
+
.z-drawer {
|
|
21181
21359
|
z-index: 500;
|
|
21182
21360
|
}
|
|
21183
21361
|
|
|
21184
|
-
.z-
|
|
21362
|
+
.z-modal {
|
|
21185
21363
|
z-index: 600;
|
|
21186
21364
|
}
|
|
21187
21365
|
|
|
21188
|
-
.z-
|
|
21366
|
+
.z-popover {
|
|
21189
21367
|
z-index: 700;
|
|
21190
21368
|
}
|
|
21191
21369
|
|
|
21192
|
-
.z-
|
|
21370
|
+
.z-tooltip {
|
|
21193
21371
|
z-index: 800;
|
|
21194
21372
|
}
|
|
21195
21373
|
|
|
@@ -21262,19 +21440,19 @@ code {
|
|
|
21262
21440
|
.z-fixed\@xs {
|
|
21263
21441
|
z-index: 300;
|
|
21264
21442
|
}
|
|
21265
|
-
.z-
|
|
21443
|
+
.z-overlay\@xs {
|
|
21266
21444
|
z-index: 400;
|
|
21267
21445
|
}
|
|
21268
|
-
.z-
|
|
21446
|
+
.z-drawer\@xs {
|
|
21269
21447
|
z-index: 500;
|
|
21270
21448
|
}
|
|
21271
|
-
.z-
|
|
21449
|
+
.z-modal\@xs {
|
|
21272
21450
|
z-index: 600;
|
|
21273
21451
|
}
|
|
21274
|
-
.z-
|
|
21452
|
+
.z-popover\@xs {
|
|
21275
21453
|
z-index: 700;
|
|
21276
21454
|
}
|
|
21277
|
-
.z-
|
|
21455
|
+
.z-tooltip\@xs {
|
|
21278
21456
|
z-index: 800;
|
|
21279
21457
|
}
|
|
21280
21458
|
.z-toast\@xs {
|
|
@@ -21345,19 +21523,19 @@ code {
|
|
|
21345
21523
|
.z-fixed\@sm {
|
|
21346
21524
|
z-index: 300;
|
|
21347
21525
|
}
|
|
21348
|
-
.z-
|
|
21526
|
+
.z-overlay\@sm {
|
|
21349
21527
|
z-index: 400;
|
|
21350
21528
|
}
|
|
21351
|
-
.z-
|
|
21529
|
+
.z-drawer\@sm {
|
|
21352
21530
|
z-index: 500;
|
|
21353
21531
|
}
|
|
21354
|
-
.z-
|
|
21532
|
+
.z-modal\@sm {
|
|
21355
21533
|
z-index: 600;
|
|
21356
21534
|
}
|
|
21357
|
-
.z-
|
|
21535
|
+
.z-popover\@sm {
|
|
21358
21536
|
z-index: 700;
|
|
21359
21537
|
}
|
|
21360
|
-
.z-
|
|
21538
|
+
.z-tooltip\@sm {
|
|
21361
21539
|
z-index: 800;
|
|
21362
21540
|
}
|
|
21363
21541
|
.z-toast\@sm {
|
|
@@ -21428,19 +21606,19 @@ code {
|
|
|
21428
21606
|
.z-fixed\@md {
|
|
21429
21607
|
z-index: 300;
|
|
21430
21608
|
}
|
|
21431
|
-
.z-
|
|
21609
|
+
.z-overlay\@md {
|
|
21432
21610
|
z-index: 400;
|
|
21433
21611
|
}
|
|
21434
|
-
.z-
|
|
21612
|
+
.z-drawer\@md {
|
|
21435
21613
|
z-index: 500;
|
|
21436
21614
|
}
|
|
21437
|
-
.z-
|
|
21615
|
+
.z-modal\@md {
|
|
21438
21616
|
z-index: 600;
|
|
21439
21617
|
}
|
|
21440
|
-
.z-
|
|
21618
|
+
.z-popover\@md {
|
|
21441
21619
|
z-index: 700;
|
|
21442
21620
|
}
|
|
21443
|
-
.z-
|
|
21621
|
+
.z-tooltip\@md {
|
|
21444
21622
|
z-index: 800;
|
|
21445
21623
|
}
|
|
21446
21624
|
.z-toast\@md {
|
|
@@ -21511,19 +21689,19 @@ code {
|
|
|
21511
21689
|
.z-fixed\@lg {
|
|
21512
21690
|
z-index: 300;
|
|
21513
21691
|
}
|
|
21514
|
-
.z-
|
|
21692
|
+
.z-overlay\@lg {
|
|
21515
21693
|
z-index: 400;
|
|
21516
21694
|
}
|
|
21517
|
-
.z-
|
|
21695
|
+
.z-drawer\@lg {
|
|
21518
21696
|
z-index: 500;
|
|
21519
21697
|
}
|
|
21520
|
-
.z-
|
|
21698
|
+
.z-modal\@lg {
|
|
21521
21699
|
z-index: 600;
|
|
21522
21700
|
}
|
|
21523
|
-
.z-
|
|
21701
|
+
.z-popover\@lg {
|
|
21524
21702
|
z-index: 700;
|
|
21525
21703
|
}
|
|
21526
|
-
.z-
|
|
21704
|
+
.z-tooltip\@lg {
|
|
21527
21705
|
z-index: 800;
|
|
21528
21706
|
}
|
|
21529
21707
|
.z-toast\@lg {
|
|
@@ -21594,19 +21772,19 @@ code {
|
|
|
21594
21772
|
.z-fixed\@xl {
|
|
21595
21773
|
z-index: 300;
|
|
21596
21774
|
}
|
|
21597
|
-
.z-
|
|
21775
|
+
.z-overlay\@xl {
|
|
21598
21776
|
z-index: 400;
|
|
21599
21777
|
}
|
|
21600
|
-
.z-
|
|
21778
|
+
.z-drawer\@xl {
|
|
21601
21779
|
z-index: 500;
|
|
21602
21780
|
}
|
|
21603
|
-
.z-
|
|
21781
|
+
.z-modal\@xl {
|
|
21604
21782
|
z-index: 600;
|
|
21605
21783
|
}
|
|
21606
|
-
.z-
|
|
21784
|
+
.z-popover\@xl {
|
|
21607
21785
|
z-index: 700;
|
|
21608
21786
|
}
|
|
21609
|
-
.z-
|
|
21787
|
+
.z-tooltip\@xl {
|
|
21610
21788
|
z-index: 800;
|
|
21611
21789
|
}
|
|
21612
21790
|
.z-toast\@xl {
|
|
@@ -21677,19 +21855,19 @@ code {
|
|
|
21677
21855
|
.z-fixed\@2xl {
|
|
21678
21856
|
z-index: 300;
|
|
21679
21857
|
}
|
|
21680
|
-
.z-
|
|
21858
|
+
.z-overlay\@2xl {
|
|
21681
21859
|
z-index: 400;
|
|
21682
21860
|
}
|
|
21683
|
-
.z-
|
|
21861
|
+
.z-drawer\@2xl {
|
|
21684
21862
|
z-index: 500;
|
|
21685
21863
|
}
|
|
21686
|
-
.z-
|
|
21864
|
+
.z-modal\@2xl {
|
|
21687
21865
|
z-index: 600;
|
|
21688
21866
|
}
|
|
21689
|
-
.z-
|
|
21867
|
+
.z-popover\@2xl {
|
|
21690
21868
|
z-index: 700;
|
|
21691
21869
|
}
|
|
21692
|
-
.z-
|
|
21870
|
+
.z-tooltip\@2xl {
|
|
21693
21871
|
z-index: 800;
|
|
21694
21872
|
}
|
|
21695
21873
|
.z-toast\@2xl {
|
|
@@ -33908,14 +34086,25 @@ code {
|
|
|
33908
34086
|
--pink-700: rgb(165.2, 50.4, 107.1);
|
|
33909
34087
|
--pink-800: rgb(118, 36, 76.5);
|
|
33910
34088
|
--pink-900: rgb(70.8, 21.6, 45.9);
|
|
33911
|
-
--
|
|
33912
|
-
--
|
|
33913
|
-
--
|
|
33914
|
-
--
|
|
33915
|
-
--
|
|
33916
|
-
--
|
|
33917
|
-
--
|
|
34089
|
+
--bg-base: #fbfafc;
|
|
34090
|
+
--inverted-bg-base: #1a1a1a;
|
|
34091
|
+
--bg-alternate: #1a1a1a;
|
|
34092
|
+
--inverted-bg-alternate: #f1f1f1;
|
|
34093
|
+
--bg-surface: #fff;
|
|
34094
|
+
--inverted-bg-surface: #2e2e2e;
|
|
34095
|
+
--border-base: #e5e7eb;
|
|
34096
|
+
--inverted-border-base: #2e2e2e;
|
|
34097
|
+
--text-color: #1a1a1a;
|
|
33918
34098
|
--inverted-text-color: #f1f1f1;
|
|
34099
|
+
--text-muted: rgba(26, 26, 26, 0.5411764706);
|
|
34100
|
+
--inverted-text-muted: rgba(241, 241, 241, 0.5411764706);
|
|
34101
|
+
--text-subtle: rgba(26, 26, 26, 0.3137254902);
|
|
34102
|
+
--inverted-text-subtle: rgba(241, 241, 241, 0.3137254902);
|
|
34103
|
+
--text-inverted: #f1f1f1;
|
|
34104
|
+
--inverted-text-inverted: #1a1a1a;
|
|
34105
|
+
--black: #000;
|
|
34106
|
+
--white: #fff;
|
|
34107
|
+
--transparent: transparent;
|
|
33919
34108
|
--button-bg-color: var(--primary);
|
|
33920
34109
|
--button-bg-color-hover: var(--primary-600);
|
|
33921
34110
|
--link-color: var(--primary);
|
|
@@ -33923,14 +34112,23 @@ code {
|
|
|
33923
34112
|
}
|
|
33924
34113
|
|
|
33925
34114
|
[data-theme=dark] {
|
|
33926
|
-
--
|
|
33927
|
-
--
|
|
33928
|
-
--
|
|
33929
|
-
--
|
|
33930
|
-
--
|
|
33931
|
-
--
|
|
33932
|
-
--
|
|
34115
|
+
--bg-base: #1a1a1a;
|
|
34116
|
+
--inverted-bg-base: #fbfafc;
|
|
34117
|
+
--bg-alternate: #f1f1f1;
|
|
34118
|
+
--inverted-bg-alternate: #1a1a1a;
|
|
34119
|
+
--bg-surface: #2e2e2e;
|
|
34120
|
+
--inverted-bg-surface: #fff;
|
|
34121
|
+
--border-base: #2e2e2e;
|
|
34122
|
+
--inverted-border-base: #e5e7eb;
|
|
34123
|
+
--text-color: #f1f1f1;
|
|
33933
34124
|
--inverted-text-color: #1a1a1a;
|
|
34125
|
+
--text-muted: rgba(241, 241, 241, 0.5411764706);
|
|
34126
|
+
--inverted-text-muted: rgba(26, 26, 26, 0.5411764706);
|
|
34127
|
+
--text-subtle: rgba(241, 241, 241, 0.3137254902);
|
|
34128
|
+
--inverted-text-subtle: rgba(26, 26, 26, 0.3137254902);
|
|
34129
|
+
--text-inverted: #1a1a1a;
|
|
34130
|
+
--inverted-text-inverted: #f1f1f1;
|
|
34131
|
+
--button-text-color: ;
|
|
33934
34132
|
--button-bg-color: var(--primary);
|
|
33935
34133
|
--button-bg-color-hover: var(--primary-400);
|
|
33936
34134
|
--link-color: var(--primary);
|
|
@@ -37039,57 +37237,154 @@ code {
|
|
|
37039
37237
|
border-color: var(--pink);
|
|
37040
37238
|
}
|
|
37041
37239
|
|
|
37042
|
-
.
|
|
37043
|
-
|
|
37240
|
+
.text-black,
|
|
37241
|
+
.hover\:text-black:hover,
|
|
37242
|
+
.group:hover .group-hover\:text-black {
|
|
37243
|
+
color: var(--black);
|
|
37044
37244
|
}
|
|
37045
37245
|
|
|
37046
|
-
.bg-
|
|
37047
|
-
|
|
37246
|
+
.bg-black,
|
|
37247
|
+
.hover\:bg-black:hover,
|
|
37248
|
+
.group:hover .group-hover\:bg-black {
|
|
37249
|
+
background-color: var(--black);
|
|
37048
37250
|
}
|
|
37049
37251
|
|
|
37050
|
-
.
|
|
37051
|
-
|
|
37252
|
+
.border-black,
|
|
37253
|
+
.hover\:border-black:hover,
|
|
37254
|
+
.group:hover .group-hover\:border-black {
|
|
37255
|
+
border-color: var(--black);
|
|
37052
37256
|
}
|
|
37053
37257
|
|
|
37054
|
-
.
|
|
37055
|
-
|
|
37258
|
+
.text-white,
|
|
37259
|
+
.hover\:text-white:hover,
|
|
37260
|
+
.group:hover .group-hover\:text-white {
|
|
37261
|
+
color: var(--white);
|
|
37056
37262
|
}
|
|
37057
37263
|
|
|
37058
37264
|
.bg-white,
|
|
37059
|
-
.hover\:bg-white:hover
|
|
37060
|
-
|
|
37265
|
+
.hover\:bg-white:hover,
|
|
37266
|
+
.group:hover .group-hover\:bg-white {
|
|
37267
|
+
background-color: var(--white);
|
|
37061
37268
|
}
|
|
37062
37269
|
|
|
37063
|
-
.
|
|
37064
|
-
.hover\:
|
|
37065
|
-
|
|
37270
|
+
.border-white,
|
|
37271
|
+
.hover\:border-white:hover,
|
|
37272
|
+
.group:hover .group-hover\:border-white {
|
|
37273
|
+
border-color: var(--white);
|
|
37066
37274
|
}
|
|
37067
37275
|
|
|
37068
|
-
.text-
|
|
37069
|
-
|
|
37276
|
+
.text-transparent,
|
|
37277
|
+
.hover\:text-transparent:hover,
|
|
37278
|
+
.group:hover .group-hover\:text-transparent {
|
|
37279
|
+
color: var(--transparent);
|
|
37070
37280
|
}
|
|
37071
37281
|
|
|
37072
|
-
.
|
|
37073
|
-
|
|
37282
|
+
.bg-transparent,
|
|
37283
|
+
.hover\:bg-transparent:hover,
|
|
37284
|
+
.group:hover .group-hover\:bg-transparent {
|
|
37285
|
+
background-color: var(--transparent);
|
|
37074
37286
|
}
|
|
37075
37287
|
|
|
37076
|
-
.
|
|
37077
|
-
|
|
37288
|
+
.border-transparent,
|
|
37289
|
+
.hover\:border-transparent:hover,
|
|
37290
|
+
.group:hover .group-hover\:border-transparent {
|
|
37291
|
+
border-color: var(--transparent);
|
|
37078
37292
|
}
|
|
37079
37293
|
|
|
37080
|
-
.
|
|
37081
|
-
.hover\:
|
|
37082
|
-
|
|
37294
|
+
.bg-base,
|
|
37295
|
+
.hover\:bg-base:hover,
|
|
37296
|
+
.group:hover .group-hover\:bg-base {
|
|
37297
|
+
background-color: var(--bg-base);
|
|
37083
37298
|
}
|
|
37084
37299
|
|
|
37085
|
-
.
|
|
37086
|
-
.hover\:
|
|
37087
|
-
|
|
37300
|
+
.inverted-bg-base,
|
|
37301
|
+
.hover\:inverted-bg-base:hover,
|
|
37302
|
+
.group:hover .group-hover\:inverted-bg-base {
|
|
37303
|
+
background-color: var(--inverted-bg-base);
|
|
37304
|
+
}
|
|
37305
|
+
|
|
37306
|
+
.bg-alternate,
|
|
37307
|
+
.hover\:bg-alternate:hover,
|
|
37308
|
+
.group:hover .group-hover\:bg-alternate {
|
|
37309
|
+
background-color: var(--bg-alternate);
|
|
37088
37310
|
}
|
|
37089
37311
|
|
|
37090
|
-
.
|
|
37312
|
+
.inverted-bg-alternate,
|
|
37313
|
+
.hover\:inverted-bg-alternate:hover,
|
|
37314
|
+
.group:hover .group-hover\:inverted-bg-alternate {
|
|
37315
|
+
background-color: var(--inverted-bg-alternate);
|
|
37316
|
+
}
|
|
37317
|
+
|
|
37318
|
+
.bg-surface,
|
|
37319
|
+
.hover\:bg-surface:hover,
|
|
37320
|
+
.group:hover .group-hover\:bg-surface {
|
|
37321
|
+
background-color: var(--bg-surface);
|
|
37322
|
+
}
|
|
37323
|
+
|
|
37324
|
+
.inverted-bg-surface,
|
|
37325
|
+
.hover\:inverted-bg-surface:hover,
|
|
37326
|
+
.group:hover .group-hover\:inverted-bg-surface {
|
|
37327
|
+
background-color: var(--inverted-bg-surface);
|
|
37328
|
+
}
|
|
37329
|
+
|
|
37330
|
+
.border-base,
|
|
37331
|
+
.hover\:border-base:hover,
|
|
37332
|
+
.group:hover .group-hover\:border-base {
|
|
37333
|
+
border-color: var(--border-base);
|
|
37334
|
+
}
|
|
37335
|
+
|
|
37336
|
+
.inverted-border-base,
|
|
37337
|
+
.hover\:inverted-border-base:hover,
|
|
37338
|
+
.group:hover .group-hover\:inverted-border-base {
|
|
37339
|
+
border-color: var(--inverted-border-base);
|
|
37340
|
+
}
|
|
37341
|
+
|
|
37342
|
+
.text-color,
|
|
37343
|
+
.hover\:text-color:hover,
|
|
37344
|
+
.group:hover .group-hover\:text-color {
|
|
37345
|
+
color: var(--text-color);
|
|
37346
|
+
}
|
|
37347
|
+
|
|
37348
|
+
.inverted-text-color,
|
|
37349
|
+
.hover\:inverted-text-color:hover,
|
|
37350
|
+
.group:hover .group-hover\:inverted-text-color {
|
|
37351
|
+
color: var(--inverted-text-color);
|
|
37352
|
+
}
|
|
37353
|
+
|
|
37354
|
+
.text-muted,
|
|
37355
|
+
.hover\:text-muted:hover,
|
|
37356
|
+
.group:hover .group-hover\:text-muted {
|
|
37091
37357
|
color: var(--text-muted);
|
|
37092
|
-
|
|
37358
|
+
}
|
|
37359
|
+
|
|
37360
|
+
.inverted-text-muted,
|
|
37361
|
+
.hover\:inverted-text-muted:hover,
|
|
37362
|
+
.group:hover .group-hover\:inverted-text-muted {
|
|
37363
|
+
color: var(--inverted-text-muted);
|
|
37364
|
+
}
|
|
37365
|
+
|
|
37366
|
+
.text-subtle,
|
|
37367
|
+
.hover\:text-subtle:hover,
|
|
37368
|
+
.group:hover .group-hover\:text-subtle {
|
|
37369
|
+
color: var(--text-subtle);
|
|
37370
|
+
}
|
|
37371
|
+
|
|
37372
|
+
.inverted-text-subtle,
|
|
37373
|
+
.hover\:inverted-text-subtle:hover,
|
|
37374
|
+
.group:hover .group-hover\:inverted-text-subtle {
|
|
37375
|
+
color: var(--inverted-text-subtle);
|
|
37376
|
+
}
|
|
37377
|
+
|
|
37378
|
+
.text-inverted,
|
|
37379
|
+
.hover\:text-inverted:hover,
|
|
37380
|
+
.group:hover .group-hover\:text-inverted {
|
|
37381
|
+
color: var(--text-inverted);
|
|
37382
|
+
}
|
|
37383
|
+
|
|
37384
|
+
.inverted-text-inverted,
|
|
37385
|
+
.hover\:inverted-text-inverted:hover,
|
|
37386
|
+
.group:hover .group-hover\:inverted-text-inverted {
|
|
37387
|
+
color: var(--inverted-text-inverted);
|
|
37093
37388
|
}
|
|
37094
37389
|
|
|
37095
37390
|
/*# sourceMappingURL=nuvoui.css.map */
|