@pzh-ui/css 0.0.63 → 0.0.64
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/package.json +3 -3
- package/src/tailwind.css +527 -407
package/src/tailwind.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
! tailwindcss v3.
|
|
2
|
+
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
/*
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
31
31
|
3. Use a more readable tab size.
|
|
32
32
|
4. Use the user's configured `sans` font-family by default.
|
|
33
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
34
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
|
33
35
|
*/
|
|
34
36
|
|
|
35
37
|
html {
|
|
@@ -44,6 +46,10 @@ html {
|
|
|
44
46
|
/* 3 */
|
|
45
47
|
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
46
48
|
/* 4 */
|
|
49
|
+
font-feature-settings: normal;
|
|
50
|
+
/* 5 */
|
|
51
|
+
font-variation-settings: normal;
|
|
52
|
+
/* 6 */
|
|
47
53
|
}
|
|
48
54
|
|
|
49
55
|
/*
|
|
@@ -187,6 +193,8 @@ textarea {
|
|
|
187
193
|
/* 1 */
|
|
188
194
|
font-size: 100%;
|
|
189
195
|
/* 1 */
|
|
196
|
+
font-weight: inherit;
|
|
197
|
+
/* 1 */
|
|
190
198
|
line-height: inherit;
|
|
191
199
|
/* 1 */
|
|
192
200
|
color: inherit;
|
|
@@ -353,13 +361,6 @@ input::-moz-placeholder, textarea::-moz-placeholder {
|
|
|
353
361
|
/* 2 */
|
|
354
362
|
}
|
|
355
363
|
|
|
356
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
357
|
-
opacity: 1;
|
|
358
|
-
/* 1 */
|
|
359
|
-
color: #cbd5e0;
|
|
360
|
-
/* 2 */
|
|
361
|
-
}
|
|
362
|
-
|
|
363
364
|
input::placeholder,
|
|
364
365
|
textarea::placeholder {
|
|
365
366
|
opacity: 1;
|
|
@@ -415,9 +416,7 @@ video {
|
|
|
415
416
|
height: auto;
|
|
416
417
|
}
|
|
417
418
|
|
|
418
|
-
/*
|
|
419
|
-
Ensure the default browser behavior of the `hidden` attribute.
|
|
420
|
-
*/
|
|
419
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
421
420
|
|
|
422
421
|
[hidden] {
|
|
423
422
|
display: none;
|
|
@@ -458,11 +457,6 @@ input::-moz-placeholder, textarea::-moz-placeholder {
|
|
|
458
457
|
opacity: 1;
|
|
459
458
|
}
|
|
460
459
|
|
|
461
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
462
|
-
color: #a0aec0;
|
|
463
|
-
opacity: 1;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
460
|
input::placeholder,textarea::placeholder {
|
|
467
461
|
color: #a0aec0;
|
|
468
462
|
opacity: 1;
|
|
@@ -513,7 +507,6 @@ select {
|
|
|
513
507
|
background-origin: border-box;
|
|
514
508
|
-webkit-user-select: none;
|
|
515
509
|
-moz-user-select: none;
|
|
516
|
-
-ms-user-select: none;
|
|
517
510
|
user-select: none;
|
|
518
511
|
flex-shrink: 0;
|
|
519
512
|
height: 1rem;
|
|
@@ -595,6 +588,58 @@ select {
|
|
|
595
588
|
}
|
|
596
589
|
|
|
597
590
|
*, ::before, ::after {
|
|
591
|
+
--tw-border-spacing-x: 0;
|
|
592
|
+
--tw-border-spacing-y: 0;
|
|
593
|
+
--tw-translate-x: 0;
|
|
594
|
+
--tw-translate-y: 0;
|
|
595
|
+
--tw-rotate: 0;
|
|
596
|
+
--tw-skew-x: 0;
|
|
597
|
+
--tw-skew-y: 0;
|
|
598
|
+
--tw-scale-x: 1;
|
|
599
|
+
--tw-scale-y: 1;
|
|
600
|
+
--tw-pan-x: ;
|
|
601
|
+
--tw-pan-y: ;
|
|
602
|
+
--tw-pinch-zoom: ;
|
|
603
|
+
--tw-scroll-snap-strictness: proximity;
|
|
604
|
+
--tw-gradient-from-position: ;
|
|
605
|
+
--tw-gradient-via-position: ;
|
|
606
|
+
--tw-gradient-to-position: ;
|
|
607
|
+
--tw-ordinal: ;
|
|
608
|
+
--tw-slashed-zero: ;
|
|
609
|
+
--tw-numeric-figure: ;
|
|
610
|
+
--tw-numeric-spacing: ;
|
|
611
|
+
--tw-numeric-fraction: ;
|
|
612
|
+
--tw-ring-inset: ;
|
|
613
|
+
--tw-ring-offset-width: 0px;
|
|
614
|
+
--tw-ring-offset-color: #fff;
|
|
615
|
+
--tw-ring-color: rgb(66 153 225 / 0.5);
|
|
616
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
617
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
618
|
+
--tw-shadow: 0 0 #0000;
|
|
619
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
620
|
+
--tw-blur: ;
|
|
621
|
+
--tw-brightness: ;
|
|
622
|
+
--tw-contrast: ;
|
|
623
|
+
--tw-grayscale: ;
|
|
624
|
+
--tw-hue-rotate: ;
|
|
625
|
+
--tw-invert: ;
|
|
626
|
+
--tw-saturate: ;
|
|
627
|
+
--tw-sepia: ;
|
|
628
|
+
--tw-drop-shadow: ;
|
|
629
|
+
--tw-backdrop-blur: ;
|
|
630
|
+
--tw-backdrop-brightness: ;
|
|
631
|
+
--tw-backdrop-contrast: ;
|
|
632
|
+
--tw-backdrop-grayscale: ;
|
|
633
|
+
--tw-backdrop-hue-rotate: ;
|
|
634
|
+
--tw-backdrop-invert: ;
|
|
635
|
+
--tw-backdrop-opacity: ;
|
|
636
|
+
--tw-backdrop-saturate: ;
|
|
637
|
+
--tw-backdrop-sepia: ;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
::backdrop {
|
|
641
|
+
--tw-border-spacing-x: 0;
|
|
642
|
+
--tw-border-spacing-y: 0;
|
|
598
643
|
--tw-translate-x: 0;
|
|
599
644
|
--tw-translate-y: 0;
|
|
600
645
|
--tw-rotate: 0;
|
|
@@ -606,6 +651,9 @@ select {
|
|
|
606
651
|
--tw-pan-y: ;
|
|
607
652
|
--tw-pinch-zoom: ;
|
|
608
653
|
--tw-scroll-snap-strictness: proximity;
|
|
654
|
+
--tw-gradient-from-position: ;
|
|
655
|
+
--tw-gradient-via-position: ;
|
|
656
|
+
--tw-gradient-to-position: ;
|
|
609
657
|
--tw-ordinal: ;
|
|
610
658
|
--tw-slashed-zero: ;
|
|
611
659
|
--tw-numeric-figure: ;
|
|
@@ -1211,10 +1259,7 @@ select {
|
|
|
1211
1259
|
}
|
|
1212
1260
|
|
|
1213
1261
|
.inset-0 {
|
|
1214
|
-
|
|
1215
|
-
right: 0px;
|
|
1216
|
-
bottom: 0px;
|
|
1217
|
-
left: 0px;
|
|
1262
|
+
inset: 0px;
|
|
1218
1263
|
}
|
|
1219
1264
|
|
|
1220
1265
|
.inset-y-0 {
|
|
@@ -1222,20 +1267,12 @@ select {
|
|
|
1222
1267
|
bottom: 0px;
|
|
1223
1268
|
}
|
|
1224
1269
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
.top-0 {
|
|
1230
|
-
top: 0px;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
.top-\[192px\] {
|
|
1234
|
-
top: 192px;
|
|
1270
|
+
.-bottom-\[6px\] {
|
|
1271
|
+
bottom: -6px;
|
|
1235
1272
|
}
|
|
1236
1273
|
|
|
1237
|
-
|
|
1238
|
-
|
|
1274
|
+
.-left-\[9999px\] {
|
|
1275
|
+
left: -9999px;
|
|
1239
1276
|
}
|
|
1240
1277
|
|
|
1241
1278
|
.bottom-0 {
|
|
@@ -1246,24 +1283,32 @@ select {
|
|
|
1246
1283
|
left: 0px;
|
|
1247
1284
|
}
|
|
1248
1285
|
|
|
1249
|
-
|
|
1250
|
-
|
|
1286
|
+
.right-0 {
|
|
1287
|
+
right: 0px;
|
|
1251
1288
|
}
|
|
1252
1289
|
|
|
1253
|
-
|
|
1254
|
-
|
|
1290
|
+
.right-3 {
|
|
1291
|
+
right: 0.75rem;
|
|
1255
1292
|
}
|
|
1256
1293
|
|
|
1257
1294
|
.right-\[14px\] {
|
|
1258
1295
|
right: 14px;
|
|
1259
1296
|
}
|
|
1260
1297
|
|
|
1298
|
+
.top-0 {
|
|
1299
|
+
top: 0px;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1261
1302
|
.top-\[14px\] {
|
|
1262
1303
|
top: 14px;
|
|
1263
1304
|
}
|
|
1264
1305
|
|
|
1265
|
-
.
|
|
1266
|
-
|
|
1306
|
+
.top-\[192px\] {
|
|
1307
|
+
top: 192px;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.top-\[288px\] {
|
|
1311
|
+
top: 288px;
|
|
1267
1312
|
}
|
|
1268
1313
|
|
|
1269
1314
|
.z-10 {
|
|
@@ -1286,6 +1331,11 @@ select {
|
|
|
1286
1331
|
margin: 0.125rem;
|
|
1287
1332
|
}
|
|
1288
1333
|
|
|
1334
|
+
.mx-1 {
|
|
1335
|
+
margin-left: 0.25rem;
|
|
1336
|
+
margin-right: 0.25rem;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1289
1339
|
.mx-auto {
|
|
1290
1340
|
margin-left: auto;
|
|
1291
1341
|
margin-right: auto;
|
|
@@ -1296,92 +1346,92 @@ select {
|
|
|
1296
1346
|
margin-bottom: 0.5rem;
|
|
1297
1347
|
}
|
|
1298
1348
|
|
|
1299
|
-
|
|
1300
|
-
margin-
|
|
1349
|
+
.-mb-\[2px\] {
|
|
1350
|
+
margin-bottom: -2px;
|
|
1301
1351
|
}
|
|
1302
1352
|
|
|
1303
|
-
.-
|
|
1304
|
-
margin-
|
|
1353
|
+
.-mr-8 {
|
|
1354
|
+
margin-right: -2rem;
|
|
1305
1355
|
}
|
|
1306
1356
|
|
|
1307
|
-
|
|
1308
|
-
margin-
|
|
1357
|
+
.-mt-0 {
|
|
1358
|
+
margin-top: -0px;
|
|
1309
1359
|
}
|
|
1310
1360
|
|
|
1311
1361
|
.-mt-0\.5 {
|
|
1312
1362
|
margin-top: -0.125rem;
|
|
1313
1363
|
}
|
|
1314
1364
|
|
|
1315
|
-
.-mt-
|
|
1316
|
-
margin-top: -
|
|
1365
|
+
.-mt-1 {
|
|
1366
|
+
margin-top: -0.25rem;
|
|
1317
1367
|
}
|
|
1318
1368
|
|
|
1319
|
-
|
|
1320
|
-
margin-
|
|
1369
|
+
.-mt-8 {
|
|
1370
|
+
margin-top: -2rem;
|
|
1321
1371
|
}
|
|
1322
1372
|
|
|
1323
|
-
|
|
1324
|
-
margin-
|
|
1373
|
+
.-mt-\[2px\] {
|
|
1374
|
+
margin-top: -2px;
|
|
1325
1375
|
}
|
|
1326
1376
|
|
|
1327
|
-
|
|
1328
|
-
margin-top:
|
|
1377
|
+
.-mt-\[4px\] {
|
|
1378
|
+
margin-top: -4px;
|
|
1329
1379
|
}
|
|
1330
1380
|
|
|
1331
|
-
.
|
|
1332
|
-
margin-
|
|
1381
|
+
.mb-0 {
|
|
1382
|
+
margin-bottom: 0px;
|
|
1333
1383
|
}
|
|
1334
1384
|
|
|
1335
|
-
.
|
|
1336
|
-
margin-
|
|
1385
|
+
.mb-2 {
|
|
1386
|
+
margin-bottom: 0.5rem;
|
|
1337
1387
|
}
|
|
1338
1388
|
|
|
1339
|
-
|
|
1340
|
-
margin-
|
|
1389
|
+
.ml-1 {
|
|
1390
|
+
margin-left: 0.25rem;
|
|
1341
1391
|
}
|
|
1342
1392
|
|
|
1343
|
-
|
|
1344
|
-
margin-
|
|
1393
|
+
.ml-2 {
|
|
1394
|
+
margin-left: 0.5rem;
|
|
1345
1395
|
}
|
|
1346
1396
|
|
|
1347
|
-
.
|
|
1348
|
-
margin-
|
|
1397
|
+
.ml-4 {
|
|
1398
|
+
margin-left: 1rem;
|
|
1349
1399
|
}
|
|
1350
1400
|
|
|
1351
|
-
|
|
1352
|
-
margin-
|
|
1401
|
+
.mr-2 {
|
|
1402
|
+
margin-right: 0.5rem;
|
|
1353
1403
|
}
|
|
1354
1404
|
|
|
1355
|
-
.
|
|
1356
|
-
margin-
|
|
1405
|
+
.mr-4 {
|
|
1406
|
+
margin-right: 1rem;
|
|
1357
1407
|
}
|
|
1358
1408
|
|
|
1359
|
-
.
|
|
1360
|
-
margin-
|
|
1409
|
+
.mr-\[8px\] {
|
|
1410
|
+
margin-right: 8px;
|
|
1361
1411
|
}
|
|
1362
1412
|
|
|
1363
|
-
|
|
1364
|
-
margin-top:
|
|
1413
|
+
.mt-1 {
|
|
1414
|
+
margin-top: 0.25rem;
|
|
1365
1415
|
}
|
|
1366
1416
|
|
|
1367
|
-
.
|
|
1368
|
-
margin-
|
|
1417
|
+
.mt-2 {
|
|
1418
|
+
margin-top: 0.5rem;
|
|
1369
1419
|
}
|
|
1370
1420
|
|
|
1371
|
-
.
|
|
1372
|
-
margin-
|
|
1421
|
+
.mt-3 {
|
|
1422
|
+
margin-top: 0.75rem;
|
|
1373
1423
|
}
|
|
1374
1424
|
|
|
1375
|
-
.mt-
|
|
1376
|
-
margin-top:
|
|
1425
|
+
.mt-4 {
|
|
1426
|
+
margin-top: 1rem;
|
|
1377
1427
|
}
|
|
1378
1428
|
|
|
1379
|
-
.
|
|
1380
|
-
margin-
|
|
1429
|
+
.mt-\[1px\] {
|
|
1430
|
+
margin-top: 1px;
|
|
1381
1431
|
}
|
|
1382
1432
|
|
|
1383
|
-
|
|
1384
|
-
margin-top:
|
|
1433
|
+
.mt-\[3px\] {
|
|
1434
|
+
margin-top: 3px;
|
|
1385
1435
|
}
|
|
1386
1436
|
|
|
1387
1437
|
.block {
|
|
@@ -1416,40 +1466,32 @@ select {
|
|
|
1416
1466
|
display: none;
|
|
1417
1467
|
}
|
|
1418
1468
|
|
|
1419
|
-
.h
|
|
1420
|
-
height:
|
|
1469
|
+
.h-4 {
|
|
1470
|
+
height: 1rem;
|
|
1421
1471
|
}
|
|
1422
1472
|
|
|
1423
1473
|
.h-6 {
|
|
1424
1474
|
height: 1.5rem;
|
|
1425
1475
|
}
|
|
1426
1476
|
|
|
1427
|
-
.h
|
|
1428
|
-
height:
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
.h-\[36px\] {
|
|
1432
|
-
height: 36px;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
.h-\[96px\] {
|
|
1436
|
-
height: 96px;
|
|
1477
|
+
.h-7 {
|
|
1478
|
+
height: 1.75rem;
|
|
1437
1479
|
}
|
|
1438
1480
|
|
|
1439
|
-
.h-
|
|
1440
|
-
height:
|
|
1481
|
+
.h-8 {
|
|
1482
|
+
height: 2rem;
|
|
1441
1483
|
}
|
|
1442
1484
|
|
|
1443
|
-
.h
|
|
1444
|
-
height:
|
|
1485
|
+
.h-\[28px\] {
|
|
1486
|
+
height: 28px;
|
|
1445
1487
|
}
|
|
1446
1488
|
|
|
1447
|
-
.h
|
|
1448
|
-
height:
|
|
1489
|
+
.h-\[36px\] {
|
|
1490
|
+
height: 36px;
|
|
1449
1491
|
}
|
|
1450
1492
|
|
|
1451
|
-
.h
|
|
1452
|
-
height:
|
|
1493
|
+
.h-\[48px\] {
|
|
1494
|
+
height: 48px;
|
|
1453
1495
|
}
|
|
1454
1496
|
|
|
1455
1497
|
.h-\[4px\] {
|
|
@@ -1460,86 +1502,105 @@ select {
|
|
|
1460
1502
|
height: 8px;
|
|
1461
1503
|
}
|
|
1462
1504
|
|
|
1463
|
-
.h
|
|
1464
|
-
height:
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
.min-h-screen {
|
|
1468
|
-
min-height: 100vh;
|
|
1505
|
+
.h-\[96px\] {
|
|
1506
|
+
height: 96px;
|
|
1469
1507
|
}
|
|
1470
1508
|
|
|
1471
|
-
.
|
|
1472
|
-
|
|
1509
|
+
.h-full {
|
|
1510
|
+
height: 100%;
|
|
1473
1511
|
}
|
|
1474
1512
|
|
|
1475
|
-
.
|
|
1476
|
-
|
|
1513
|
+
.h-px {
|
|
1514
|
+
height: 1px;
|
|
1477
1515
|
}
|
|
1478
1516
|
|
|
1479
|
-
.
|
|
1480
|
-
|
|
1517
|
+
.h-screen {
|
|
1518
|
+
height: 100vh;
|
|
1481
1519
|
}
|
|
1482
1520
|
|
|
1483
|
-
.
|
|
1484
|
-
|
|
1521
|
+
.min-h-\[48px\] {
|
|
1522
|
+
min-height: 48px;
|
|
1485
1523
|
}
|
|
1486
1524
|
|
|
1487
|
-
.
|
|
1488
|
-
|
|
1525
|
+
.min-h-screen {
|
|
1526
|
+
min-height: 100vh;
|
|
1489
1527
|
}
|
|
1490
1528
|
|
|
1491
1529
|
.\!w-max {
|
|
1492
|
-
width: -webkit-max-content !important;
|
|
1493
1530
|
width: -moz-max-content !important;
|
|
1494
1531
|
width: max-content !important;
|
|
1495
1532
|
}
|
|
1496
1533
|
|
|
1497
|
-
.w
|
|
1498
|
-
width:
|
|
1534
|
+
.w-4 {
|
|
1535
|
+
width: 1rem;
|
|
1499
1536
|
}
|
|
1500
1537
|
|
|
1501
|
-
.w-
|
|
1502
|
-
width:
|
|
1503
|
-
width: -moz-fit-content;
|
|
1504
|
-
width: fit-content;
|
|
1538
|
+
.w-6 {
|
|
1539
|
+
width: 1.5rem;
|
|
1505
1540
|
}
|
|
1506
1541
|
|
|
1507
1542
|
.w-7 {
|
|
1508
1543
|
width: 1.75rem;
|
|
1509
1544
|
}
|
|
1510
1545
|
|
|
1511
|
-
.
|
|
1512
|
-
|
|
1546
|
+
.w-8 {
|
|
1547
|
+
width: 2rem;
|
|
1513
1548
|
}
|
|
1514
1549
|
|
|
1515
|
-
.
|
|
1516
|
-
|
|
1550
|
+
.w-\[8px\] {
|
|
1551
|
+
width: 8px;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
.w-\[96px\] {
|
|
1555
|
+
width: 96px;
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
.w-fit {
|
|
1559
|
+
width: -moz-fit-content;
|
|
1560
|
+
width: fit-content;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
.w-full {
|
|
1564
|
+
width: 100%;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.min-w-\[320px\] {
|
|
1568
|
+
min-width: 320px;
|
|
1517
1569
|
}
|
|
1518
1570
|
|
|
1519
1571
|
.max-w-6xl {
|
|
1520
1572
|
max-width: 72rem;
|
|
1521
1573
|
}
|
|
1522
1574
|
|
|
1523
|
-
.max-w-\[
|
|
1524
|
-
max-width:
|
|
1575
|
+
.max-w-\[2rem\] {
|
|
1576
|
+
max-width: 2rem;
|
|
1525
1577
|
}
|
|
1526
1578
|
|
|
1527
1579
|
.max-w-\[300px\] {
|
|
1528
1580
|
max-width: 300px;
|
|
1529
1581
|
}
|
|
1530
1582
|
|
|
1531
|
-
.max-w-\[
|
|
1532
|
-
max-width:
|
|
1583
|
+
.max-w-\[400px\] {
|
|
1584
|
+
max-width: 400px;
|
|
1533
1585
|
}
|
|
1534
1586
|
|
|
1535
1587
|
.max-w-full {
|
|
1536
1588
|
max-width: 100%;
|
|
1537
1589
|
}
|
|
1538
1590
|
|
|
1591
|
+
.max-w-screen-xl {
|
|
1592
|
+
max-width: 1280px;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1539
1595
|
.origin-left {
|
|
1540
1596
|
transform-origin: left;
|
|
1541
1597
|
}
|
|
1542
1598
|
|
|
1599
|
+
.translate-y-0 {
|
|
1600
|
+
--tw-translate-y: 0px;
|
|
1601
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1543
1604
|
.translate-y-2 {
|
|
1544
1605
|
--tw-translate-y: 0.5rem;
|
|
1545
1606
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1550,11 +1611,6 @@ select {
|
|
|
1550
1611
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1551
1612
|
}
|
|
1552
1613
|
|
|
1553
|
-
.translate-y-0 {
|
|
1554
|
-
--tw-translate-y: 0px;
|
|
1555
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1556
|
-
}
|
|
1557
|
-
|
|
1558
1614
|
.rotate-45 {
|
|
1559
1615
|
--tw-rotate: 45deg;
|
|
1560
1616
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1564,12 +1620,6 @@ select {
|
|
|
1564
1620
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1565
1621
|
}
|
|
1566
1622
|
|
|
1567
|
-
@-webkit-keyframes spin {
|
|
1568
|
-
to {
|
|
1569
|
-
transform: rotate(360deg);
|
|
1570
|
-
}
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
1623
|
@keyframes spin {
|
|
1574
1624
|
to {
|
|
1575
1625
|
transform: rotate(360deg);
|
|
@@ -1577,8 +1627,7 @@ select {
|
|
|
1577
1627
|
}
|
|
1578
1628
|
|
|
1579
1629
|
.animate-spin {
|
|
1580
|
-
|
|
1581
|
-
animation: spin 1s linear infinite;
|
|
1630
|
+
animation: spin 1s linear infinite;
|
|
1582
1631
|
}
|
|
1583
1632
|
|
|
1584
1633
|
.cursor-pointer {
|
|
@@ -1655,22 +1704,22 @@ select {
|
|
|
1655
1704
|
border-radius: 0.25rem;
|
|
1656
1705
|
}
|
|
1657
1706
|
|
|
1658
|
-
.rounded-lg {
|
|
1659
|
-
border-radius: 0.5rem;
|
|
1660
|
-
}
|
|
1661
|
-
|
|
1662
1707
|
.rounded-\[4px\] {
|
|
1663
1708
|
border-radius: 4px;
|
|
1664
1709
|
}
|
|
1665
1710
|
|
|
1666
|
-
.rounded-md {
|
|
1667
|
-
border-radius: 0.375rem;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
1711
|
.rounded-full {
|
|
1671
1712
|
border-radius: 9999px;
|
|
1672
1713
|
}
|
|
1673
1714
|
|
|
1715
|
+
.rounded-lg {
|
|
1716
|
+
border-radius: 0.5rem;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.rounded-md {
|
|
1720
|
+
border-radius: 0.375rem;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1674
1723
|
.rounded-t-md {
|
|
1675
1724
|
border-top-left-radius: 0.375rem;
|
|
1676
1725
|
border-top-right-radius: 0.375rem;
|
|
@@ -1700,39 +1749,39 @@ select {
|
|
|
1700
1749
|
border-style: dashed;
|
|
1701
1750
|
}
|
|
1702
1751
|
|
|
1703
|
-
.border-pzh-
|
|
1752
|
+
.border-pzh-blue {
|
|
1704
1753
|
--tw-border-opacity: 1;
|
|
1705
|
-
border-color: rgb(
|
|
1754
|
+
border-color: rgb(40 31 107 / var(--tw-border-opacity));
|
|
1706
1755
|
}
|
|
1707
1756
|
|
|
1708
|
-
.border-pzh-
|
|
1757
|
+
.border-pzh-blue-dark {
|
|
1709
1758
|
--tw-border-opacity: 1;
|
|
1710
|
-
border-color: rgb(
|
|
1759
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1711
1760
|
}
|
|
1712
1761
|
|
|
1713
|
-
.border-pzh-
|
|
1762
|
+
.border-pzh-cool-gray-dark {
|
|
1714
1763
|
--tw-border-opacity: 1;
|
|
1715
|
-
border-color: rgb(
|
|
1764
|
+
border-color: rgb(92 92 92 / var(--tw-border-opacity));
|
|
1716
1765
|
}
|
|
1717
1766
|
|
|
1718
|
-
.border-pzh-
|
|
1767
|
+
.border-pzh-gray-400 {
|
|
1719
1768
|
--tw-border-opacity: 1;
|
|
1720
|
-
border-color: rgb(
|
|
1769
|
+
border-color: rgb(173 172 186 / var(--tw-border-opacity));
|
|
1721
1770
|
}
|
|
1722
1771
|
|
|
1723
|
-
.border-pzh-
|
|
1772
|
+
.border-pzh-gray-600 {
|
|
1724
1773
|
--tw-border-opacity: 1;
|
|
1725
|
-
border-color: rgb(
|
|
1774
|
+
border-color: rgb(138 136 157 / var(--tw-border-opacity));
|
|
1726
1775
|
}
|
|
1727
1776
|
|
|
1728
|
-
.border-pzh-
|
|
1777
|
+
.border-pzh-green {
|
|
1729
1778
|
--tw-border-opacity: 1;
|
|
1730
|
-
border-color: rgb(
|
|
1779
|
+
border-color: rgb(0 128 77 / var(--tw-border-opacity));
|
|
1731
1780
|
}
|
|
1732
1781
|
|
|
1733
|
-
.border-pzh-
|
|
1782
|
+
.border-pzh-green-light {
|
|
1734
1783
|
--tw-border-opacity: 1;
|
|
1735
|
-
border-color: rgb(
|
|
1784
|
+
border-color: rgb(97 179 117 / var(--tw-border-opacity));
|
|
1736
1785
|
}
|
|
1737
1786
|
|
|
1738
1787
|
.border-pzh-purple {
|
|
@@ -1740,129 +1789,125 @@ select {
|
|
|
1740
1789
|
border-color: rgb(80 61 144 / var(--tw-border-opacity));
|
|
1741
1790
|
}
|
|
1742
1791
|
|
|
1743
|
-
.border-pzh-
|
|
1792
|
+
.border-pzh-red {
|
|
1744
1793
|
--tw-border-opacity: 1;
|
|
1745
|
-
border-color: rgb(
|
|
1794
|
+
border-color: rgb(209 31 61 / var(--tw-border-opacity));
|
|
1746
1795
|
}
|
|
1747
1796
|
|
|
1748
|
-
.border-pzh-
|
|
1797
|
+
.border-pzh-red-light {
|
|
1749
1798
|
--tw-border-opacity: 1;
|
|
1750
|
-
border-color: rgb(
|
|
1799
|
+
border-color: rgb(235 112 133 / var(--tw-border-opacity));
|
|
1751
1800
|
}
|
|
1752
1801
|
|
|
1753
|
-
.border-pzh-
|
|
1802
|
+
.border-pzh-white {
|
|
1754
1803
|
--tw-border-opacity: 1;
|
|
1755
|
-
border-color: rgb(
|
|
1804
|
+
border-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1756
1805
|
}
|
|
1757
1806
|
|
|
1758
|
-
.border-pzh-
|
|
1807
|
+
.border-pzh-yellow {
|
|
1759
1808
|
--tw-border-opacity: 1;
|
|
1760
|
-
border-color: rgb(
|
|
1809
|
+
border-color: rgb(239 204 54 / var(--tw-border-opacity));
|
|
1761
1810
|
}
|
|
1762
1811
|
|
|
1763
|
-
.border-pzh-
|
|
1812
|
+
.border-pzh-yellow-dark {
|
|
1764
1813
|
--tw-border-opacity: 1;
|
|
1765
|
-
border-color: rgb(
|
|
1814
|
+
border-color: rgb(198 164 16 / var(--tw-border-opacity));
|
|
1766
1815
|
}
|
|
1767
1816
|
|
|
1768
1817
|
.border-opacity-35 {
|
|
1769
1818
|
--tw-border-opacity: 0.35;
|
|
1770
1819
|
}
|
|
1771
1820
|
|
|
1772
|
-
.bg
|
|
1821
|
+
.bg-\[\#333333\] {
|
|
1773
1822
|
--tw-bg-opacity: 1;
|
|
1774
|
-
background-color: rgb(
|
|
1823
|
+
background-color: rgb(51 51 51 / var(--tw-bg-opacity));
|
|
1775
1824
|
}
|
|
1776
1825
|
|
|
1777
|
-
.bg-pzh-
|
|
1826
|
+
.bg-pzh-blue {
|
|
1778
1827
|
--tw-bg-opacity: 1;
|
|
1779
|
-
background-color: rgb(
|
|
1828
|
+
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
1780
1829
|
}
|
|
1781
1830
|
|
|
1782
|
-
.bg-pzh-
|
|
1831
|
+
.bg-pzh-blue-light {
|
|
1783
1832
|
--tw-bg-opacity: 1;
|
|
1784
|
-
background-color: rgb(
|
|
1833
|
+
background-color: rgb(123 173 222 / var(--tw-bg-opacity));
|
|
1785
1834
|
}
|
|
1786
1835
|
|
|
1787
|
-
.bg-pzh-
|
|
1836
|
+
.bg-pzh-cool-gray-dark {
|
|
1788
1837
|
--tw-bg-opacity: 1;
|
|
1789
|
-
background-color: rgb(
|
|
1838
|
+
background-color: rgb(92 92 92 / var(--tw-bg-opacity));
|
|
1790
1839
|
}
|
|
1791
1840
|
|
|
1792
|
-
.bg-pzh-
|
|
1841
|
+
.bg-pzh-gray-100 {
|
|
1793
1842
|
--tw-bg-opacity: 1;
|
|
1794
|
-
background-color: rgb(
|
|
1843
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
1795
1844
|
}
|
|
1796
1845
|
|
|
1797
|
-
.bg-pzh-
|
|
1846
|
+
.bg-pzh-gray-200 {
|
|
1798
1847
|
--tw-bg-opacity: 1;
|
|
1799
|
-
background-color: rgb(
|
|
1848
|
+
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1800
1849
|
}
|
|
1801
1850
|
|
|
1802
|
-
.bg-pzh-
|
|
1851
|
+
.bg-pzh-gray-300 {
|
|
1803
1852
|
--tw-bg-opacity: 1;
|
|
1804
|
-
background-color: rgb(
|
|
1853
|
+
background-color: rgb(232 231 235 / var(--tw-bg-opacity));
|
|
1805
1854
|
}
|
|
1806
1855
|
|
|
1807
|
-
.bg-pzh-
|
|
1856
|
+
.bg-pzh-green {
|
|
1808
1857
|
--tw-bg-opacity: 1;
|
|
1809
|
-
background-color: rgb(
|
|
1858
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1810
1859
|
}
|
|
1811
1860
|
|
|
1812
|
-
.bg-pzh-
|
|
1861
|
+
.bg-pzh-green-light {
|
|
1813
1862
|
--tw-bg-opacity: 1;
|
|
1814
|
-
background-color: rgb(
|
|
1863
|
+
background-color: rgb(97 179 117 / var(--tw-bg-opacity));
|
|
1815
1864
|
}
|
|
1816
1865
|
|
|
1817
|
-
.bg-
|
|
1866
|
+
.bg-pzh-orange {
|
|
1818
1867
|
--tw-bg-opacity: 1;
|
|
1819
|
-
background-color: rgb(255
|
|
1868
|
+
background-color: rgb(255 107 2 / var(--tw-bg-opacity));
|
|
1820
1869
|
}
|
|
1821
1870
|
|
|
1822
|
-
.bg-pzh-
|
|
1871
|
+
.bg-pzh-purple {
|
|
1823
1872
|
--tw-bg-opacity: 1;
|
|
1824
|
-
background-color: rgb(
|
|
1873
|
+
background-color: rgb(80 61 144 / var(--tw-bg-opacity));
|
|
1825
1874
|
}
|
|
1826
1875
|
|
|
1827
|
-
.bg-pzh-
|
|
1876
|
+
.bg-pzh-red {
|
|
1828
1877
|
--tw-bg-opacity: 1;
|
|
1829
|
-
background-color: rgb(
|
|
1878
|
+
background-color: rgb(209 31 61 / var(--tw-bg-opacity));
|
|
1830
1879
|
}
|
|
1831
1880
|
|
|
1832
|
-
.bg-pzh-
|
|
1881
|
+
.bg-pzh-red-light {
|
|
1833
1882
|
--tw-bg-opacity: 1;
|
|
1834
|
-
background-color: rgb(
|
|
1883
|
+
background-color: rgb(235 112 133 / var(--tw-bg-opacity));
|
|
1835
1884
|
}
|
|
1836
1885
|
|
|
1837
|
-
.bg
|
|
1886
|
+
.bg-pzh-white {
|
|
1838
1887
|
--tw-bg-opacity: 1;
|
|
1839
|
-
background-color: rgb(
|
|
1888
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1840
1889
|
}
|
|
1841
1890
|
|
|
1842
|
-
.bg-pzh-
|
|
1891
|
+
.bg-pzh-yellow {
|
|
1843
1892
|
--tw-bg-opacity: 1;
|
|
1844
|
-
background-color: rgb(
|
|
1893
|
+
background-color: rgb(239 204 54 / var(--tw-bg-opacity));
|
|
1845
1894
|
}
|
|
1846
1895
|
|
|
1847
|
-
.bg-
|
|
1896
|
+
.bg-white {
|
|
1848
1897
|
--tw-bg-opacity: 1;
|
|
1849
|
-
background-color: rgb(
|
|
1850
|
-
}
|
|
1851
|
-
|
|
1852
|
-
.bg-opacity-50 {
|
|
1853
|
-
--tw-bg-opacity: 0.5;
|
|
1898
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1854
1899
|
}
|
|
1855
1900
|
|
|
1856
1901
|
.bg-opacity-20 {
|
|
1857
1902
|
--tw-bg-opacity: 0.2;
|
|
1858
1903
|
}
|
|
1859
1904
|
|
|
1860
|
-
.
|
|
1861
|
-
|
|
1905
|
+
.bg-opacity-50 {
|
|
1906
|
+
--tw-bg-opacity: 0.5;
|
|
1862
1907
|
}
|
|
1863
1908
|
|
|
1864
|
-
.p-
|
|
1865
|
-
padding:
|
|
1909
|
+
.p-1 {
|
|
1910
|
+
padding: 0.25rem;
|
|
1866
1911
|
}
|
|
1867
1912
|
|
|
1868
1913
|
.p-2 {
|
|
@@ -1877,9 +1922,13 @@ select {
|
|
|
1877
1922
|
padding: 1rem;
|
|
1878
1923
|
}
|
|
1879
1924
|
|
|
1880
|
-
.
|
|
1881
|
-
padding
|
|
1882
|
-
|
|
1925
|
+
.p-6 {
|
|
1926
|
+
padding: 1.5rem;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
.\!py-0 {
|
|
1930
|
+
padding-top: 0px !important;
|
|
1931
|
+
padding-bottom: 0px !important;
|
|
1883
1932
|
}
|
|
1884
1933
|
|
|
1885
1934
|
.px-1 {
|
|
@@ -1887,34 +1936,44 @@ select {
|
|
|
1887
1936
|
padding-right: 0.25rem;
|
|
1888
1937
|
}
|
|
1889
1938
|
|
|
1939
|
+
.px-1\.5 {
|
|
1940
|
+
padding-left: 0.375rem;
|
|
1941
|
+
padding-right: 0.375rem;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
.px-2 {
|
|
1945
|
+
padding-left: 0.5rem;
|
|
1946
|
+
padding-right: 0.5rem;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1890
1949
|
.px-3 {
|
|
1891
1950
|
padding-left: 0.75rem;
|
|
1892
1951
|
padding-right: 0.75rem;
|
|
1893
1952
|
}
|
|
1894
1953
|
|
|
1895
|
-
.py-2 {
|
|
1896
|
-
padding-top: 0.5rem;
|
|
1897
|
-
padding-bottom: 0.5rem;
|
|
1898
|
-
}
|
|
1899
|
-
|
|
1900
1954
|
.px-4 {
|
|
1901
1955
|
padding-left: 1rem;
|
|
1902
1956
|
padding-right: 1rem;
|
|
1903
1957
|
}
|
|
1904
1958
|
|
|
1959
|
+
.px-6 {
|
|
1960
|
+
padding-left: 1.5rem;
|
|
1961
|
+
padding-right: 1.5rem;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1905
1964
|
.px-\[12px\] {
|
|
1906
1965
|
padding-left: 12px;
|
|
1907
1966
|
padding-right: 12px;
|
|
1908
1967
|
}
|
|
1909
1968
|
|
|
1910
|
-
.
|
|
1911
|
-
padding-
|
|
1912
|
-
padding-
|
|
1969
|
+
.py-1 {
|
|
1970
|
+
padding-top: 0.25rem;
|
|
1971
|
+
padding-bottom: 0.25rem;
|
|
1913
1972
|
}
|
|
1914
1973
|
|
|
1915
|
-
.
|
|
1916
|
-
padding-
|
|
1917
|
-
padding-
|
|
1974
|
+
.py-2 {
|
|
1975
|
+
padding-top: 0.5rem;
|
|
1976
|
+
padding-bottom: 0.5rem;
|
|
1918
1977
|
}
|
|
1919
1978
|
|
|
1920
1979
|
.py-6 {
|
|
@@ -1922,30 +1981,24 @@ select {
|
|
|
1922
1981
|
padding-bottom: 1.5rem;
|
|
1923
1982
|
}
|
|
1924
1983
|
|
|
1925
|
-
|
|
1926
|
-
padding-
|
|
1927
|
-
padding-bottom: 0px !important;
|
|
1984
|
+
.pb-0 {
|
|
1985
|
+
padding-bottom: 0px;
|
|
1928
1986
|
}
|
|
1929
1987
|
|
|
1930
|
-
.
|
|
1931
|
-
padding-top: 0.25rem;
|
|
1988
|
+
.pb-1 {
|
|
1932
1989
|
padding-bottom: 0.25rem;
|
|
1933
1990
|
}
|
|
1934
1991
|
|
|
1935
|
-
.
|
|
1936
|
-
padding-
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
|
-
.pt-1 {
|
|
1940
|
-
padding-top: 0.25rem;
|
|
1992
|
+
.pb-2 {
|
|
1993
|
+
padding-bottom: 0.5rem;
|
|
1941
1994
|
}
|
|
1942
1995
|
|
|
1943
|
-
.
|
|
1944
|
-
padding-
|
|
1996
|
+
.pb-3 {
|
|
1997
|
+
padding-bottom: 0.75rem;
|
|
1945
1998
|
}
|
|
1946
1999
|
|
|
1947
|
-
.
|
|
1948
|
-
padding-
|
|
2000
|
+
.pb-4 {
|
|
2001
|
+
padding-bottom: 1rem;
|
|
1949
2002
|
}
|
|
1950
2003
|
|
|
1951
2004
|
.pb-\[12px\] {
|
|
@@ -1956,60 +2009,56 @@ select {
|
|
|
1956
2009
|
padding-bottom: 9px;
|
|
1957
2010
|
}
|
|
1958
2011
|
|
|
1959
|
-
.
|
|
1960
|
-
padding-
|
|
1961
|
-
}
|
|
1962
|
-
|
|
1963
|
-
.pt-0 {
|
|
1964
|
-
padding-top: 0px;
|
|
2012
|
+
.pl-\[34px\] {
|
|
2013
|
+
padding-left: 34px;
|
|
1965
2014
|
}
|
|
1966
2015
|
|
|
1967
|
-
.
|
|
1968
|
-
padding-
|
|
2016
|
+
.pr-1 {
|
|
2017
|
+
padding-right: 0.25rem;
|
|
1969
2018
|
}
|
|
1970
2019
|
|
|
1971
|
-
.
|
|
1972
|
-
padding-
|
|
2020
|
+
.pr-16 {
|
|
2021
|
+
padding-right: 4rem;
|
|
1973
2022
|
}
|
|
1974
2023
|
|
|
1975
|
-
.
|
|
1976
|
-
padding-
|
|
2024
|
+
.pr-2 {
|
|
2025
|
+
padding-right: 0.5rem;
|
|
1977
2026
|
}
|
|
1978
2027
|
|
|
1979
|
-
.
|
|
1980
|
-
padding-
|
|
2028
|
+
.pr-8 {
|
|
2029
|
+
padding-right: 2rem;
|
|
1981
2030
|
}
|
|
1982
2031
|
|
|
1983
|
-
.pt-
|
|
1984
|
-
padding-top:
|
|
2032
|
+
.pt-0 {
|
|
2033
|
+
padding-top: 0px;
|
|
1985
2034
|
}
|
|
1986
2035
|
|
|
1987
|
-
.
|
|
1988
|
-
padding-
|
|
2036
|
+
.pt-1 {
|
|
2037
|
+
padding-top: 0.25rem;
|
|
1989
2038
|
}
|
|
1990
2039
|
|
|
1991
|
-
.
|
|
1992
|
-
padding-
|
|
2040
|
+
.pt-2 {
|
|
2041
|
+
padding-top: 0.5rem;
|
|
1993
2042
|
}
|
|
1994
2043
|
|
|
1995
2044
|
.pt-3 {
|
|
1996
2045
|
padding-top: 0.75rem;
|
|
1997
2046
|
}
|
|
1998
2047
|
|
|
1999
|
-
.
|
|
2000
|
-
padding-
|
|
2048
|
+
.pt-4 {
|
|
2049
|
+
padding-top: 1rem;
|
|
2001
2050
|
}
|
|
2002
2051
|
|
|
2003
|
-
.
|
|
2004
|
-
padding-
|
|
2052
|
+
.pt-8 {
|
|
2053
|
+
padding-top: 2rem;
|
|
2005
2054
|
}
|
|
2006
2055
|
|
|
2007
|
-
.
|
|
2008
|
-
padding-
|
|
2056
|
+
.pt-\[10px\] {
|
|
2057
|
+
padding-top: 10px;
|
|
2009
2058
|
}
|
|
2010
2059
|
|
|
2011
|
-
.
|
|
2012
|
-
padding-
|
|
2060
|
+
.pt-\[15px\] {
|
|
2061
|
+
padding-top: 15px;
|
|
2013
2062
|
}
|
|
2014
2063
|
|
|
2015
2064
|
.text-left {
|
|
@@ -2024,28 +2073,28 @@ select {
|
|
|
2024
2073
|
vertical-align: bottom;
|
|
2025
2074
|
}
|
|
2026
2075
|
|
|
2027
|
-
.text-\[
|
|
2028
|
-
font-size:
|
|
2076
|
+
.text-\[0\.8rem\] {
|
|
2077
|
+
font-size: 0.8rem;
|
|
2029
2078
|
}
|
|
2030
2079
|
|
|
2031
|
-
.text
|
|
2032
|
-
font-size:
|
|
2080
|
+
.text-\[16px\] {
|
|
2081
|
+
font-size: 16px;
|
|
2033
2082
|
}
|
|
2034
2083
|
|
|
2035
2084
|
.text-\[18px\] {
|
|
2036
2085
|
font-size: 18px;
|
|
2037
2086
|
}
|
|
2038
2087
|
|
|
2039
|
-
.text-xs {
|
|
2040
|
-
font-size: 0.75rem;
|
|
2041
|
-
}
|
|
2042
|
-
|
|
2043
2088
|
.text-base {
|
|
2044
2089
|
font-size: 1rem;
|
|
2045
2090
|
}
|
|
2046
2091
|
|
|
2047
|
-
.text
|
|
2048
|
-
font-size: 0.
|
|
2092
|
+
.text-sm {
|
|
2093
|
+
font-size: 0.875rem;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
.text-xs {
|
|
2097
|
+
font-size: 0.75rem;
|
|
2049
2098
|
}
|
|
2050
2099
|
|
|
2051
2100
|
.font-bold {
|
|
@@ -2068,73 +2117,72 @@ select {
|
|
|
2068
2117
|
font-style: italic;
|
|
2069
2118
|
}
|
|
2070
2119
|
|
|
2071
|
-
.leading
|
|
2072
|
-
line-height:
|
|
2120
|
+
.leading-5 {
|
|
2121
|
+
line-height: 1.25rem;
|
|
2073
2122
|
}
|
|
2074
2123
|
|
|
2075
|
-
.leading-
|
|
2076
|
-
line-height: 1.
|
|
2124
|
+
.leading-6 {
|
|
2125
|
+
line-height: 1.5rem;
|
|
2077
2126
|
}
|
|
2078
2127
|
|
|
2079
|
-
.leading
|
|
2080
|
-
line-height:
|
|
2128
|
+
.leading-\[28px\] {
|
|
2129
|
+
line-height: 28px;
|
|
2081
2130
|
}
|
|
2082
2131
|
|
|
2083
|
-
.leading
|
|
2084
|
-
line-height:
|
|
2132
|
+
.leading-\[30px\] {
|
|
2133
|
+
line-height: 30px;
|
|
2085
2134
|
}
|
|
2086
2135
|
|
|
2087
|
-
.leading
|
|
2088
|
-
line-height:
|
|
2136
|
+
.leading-none {
|
|
2137
|
+
line-height: 1;
|
|
2089
2138
|
}
|
|
2090
2139
|
|
|
2091
|
-
.leading-
|
|
2092
|
-
line-height: 1.
|
|
2140
|
+
.leading-normal {
|
|
2141
|
+
line-height: 1.5;
|
|
2093
2142
|
}
|
|
2094
2143
|
|
|
2095
|
-
.text-pzh-blue
|
|
2144
|
+
.text-pzh-blue {
|
|
2096
2145
|
--tw-text-opacity: 1;
|
|
2097
|
-
color: rgb(
|
|
2146
|
+
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
2098
2147
|
}
|
|
2099
2148
|
|
|
2100
|
-
.text-pzh-
|
|
2149
|
+
.text-pzh-blue-dark {
|
|
2101
2150
|
--tw-text-opacity: 1;
|
|
2102
|
-
color: rgb(
|
|
2151
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
2103
2152
|
}
|
|
2104
2153
|
|
|
2105
|
-
.text-pzh-
|
|
2106
|
-
|
|
2107
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2154
|
+
.text-pzh-blue-dark\/50 {
|
|
2155
|
+
color: rgb(22 17 59 / 0.5);
|
|
2108
2156
|
}
|
|
2109
2157
|
|
|
2110
|
-
.text-pzh-
|
|
2158
|
+
.text-pzh-blue-light {
|
|
2111
2159
|
--tw-text-opacity: 1;
|
|
2112
|
-
color: rgb(
|
|
2160
|
+
color: rgb(123 173 222 / var(--tw-text-opacity));
|
|
2113
2161
|
}
|
|
2114
2162
|
|
|
2115
|
-
.text-pzh-
|
|
2163
|
+
.text-pzh-cool-gray-dark {
|
|
2116
2164
|
--tw-text-opacity: 1;
|
|
2117
|
-
color: rgb(
|
|
2165
|
+
color: rgb(92 92 92 / var(--tw-text-opacity));
|
|
2118
2166
|
}
|
|
2119
2167
|
|
|
2120
|
-
.text-pzh-
|
|
2168
|
+
.text-pzh-gray-600 {
|
|
2121
2169
|
--tw-text-opacity: 1;
|
|
2122
|
-
color: rgb(
|
|
2170
|
+
color: rgb(138 136 157 / var(--tw-text-opacity));
|
|
2123
2171
|
}
|
|
2124
2172
|
|
|
2125
|
-
.text-pzh-
|
|
2173
|
+
.text-pzh-green {
|
|
2126
2174
|
--tw-text-opacity: 1;
|
|
2127
|
-
color: rgb(
|
|
2175
|
+
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
2128
2176
|
}
|
|
2129
2177
|
|
|
2130
|
-
.text-pzh-
|
|
2178
|
+
.text-pzh-green-light {
|
|
2131
2179
|
--tw-text-opacity: 1;
|
|
2132
|
-
color: rgb(
|
|
2180
|
+
color: rgb(97 179 117 / var(--tw-text-opacity));
|
|
2133
2181
|
}
|
|
2134
2182
|
|
|
2135
|
-
.text-pzh-
|
|
2183
|
+
.text-pzh-orange {
|
|
2136
2184
|
--tw-text-opacity: 1;
|
|
2137
|
-
color: rgb(
|
|
2185
|
+
color: rgb(255 107 2 / var(--tw-text-opacity));
|
|
2138
2186
|
}
|
|
2139
2187
|
|
|
2140
2188
|
.text-pzh-purple {
|
|
@@ -2142,33 +2190,33 @@ select {
|
|
|
2142
2190
|
color: rgb(80 61 144 / var(--tw-text-opacity));
|
|
2143
2191
|
}
|
|
2144
2192
|
|
|
2145
|
-
.text-
|
|
2193
|
+
.text-pzh-red {
|
|
2146
2194
|
--tw-text-opacity: 1;
|
|
2147
|
-
color: rgb(
|
|
2195
|
+
color: rgb(209 31 61 / var(--tw-text-opacity));
|
|
2148
2196
|
}
|
|
2149
2197
|
|
|
2150
|
-
.text-pzh-
|
|
2198
|
+
.text-pzh-red-light {
|
|
2151
2199
|
--tw-text-opacity: 1;
|
|
2152
|
-
color: rgb(
|
|
2200
|
+
color: rgb(235 112 133 / var(--tw-text-opacity));
|
|
2153
2201
|
}
|
|
2154
2202
|
|
|
2155
|
-
.text-pzh-
|
|
2203
|
+
.text-pzh-white {
|
|
2156
2204
|
--tw-text-opacity: 1;
|
|
2157
|
-
color: rgb(255
|
|
2205
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2158
2206
|
}
|
|
2159
2207
|
|
|
2160
|
-
.text-pzh-
|
|
2208
|
+
.text-pzh-yellow-dark {
|
|
2161
2209
|
--tw-text-opacity: 1;
|
|
2162
|
-
color: rgb(
|
|
2210
|
+
color: rgb(198 164 16 / var(--tw-text-opacity));
|
|
2163
2211
|
}
|
|
2164
2212
|
|
|
2165
|
-
.text-
|
|
2166
|
-
|
|
2213
|
+
.text-white {
|
|
2214
|
+
--tw-text-opacity: 1;
|
|
2215
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2167
2216
|
}
|
|
2168
2217
|
|
|
2169
2218
|
.underline {
|
|
2170
|
-
|
|
2171
|
-
text-decoration-line: underline;
|
|
2219
|
+
text-decoration-line: underline;
|
|
2172
2220
|
}
|
|
2173
2221
|
|
|
2174
2222
|
.decoration-1 {
|
|
@@ -2197,18 +2245,18 @@ select {
|
|
|
2197
2245
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2198
2246
|
}
|
|
2199
2247
|
|
|
2200
|
-
.shadow-xl {
|
|
2201
|
-
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
2202
|
-
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
2203
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2204
|
-
}
|
|
2205
|
-
|
|
2206
2248
|
.shadow-none {
|
|
2207
2249
|
--tw-shadow: 0 0 #0000;
|
|
2208
2250
|
--tw-shadow-colored: 0 0 #0000;
|
|
2209
2251
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2210
2252
|
}
|
|
2211
2253
|
|
|
2254
|
+
.shadow-xl {
|
|
2255
|
+
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
2256
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
2257
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2212
2260
|
.outline-none {
|
|
2213
2261
|
outline: 2px solid transparent;
|
|
2214
2262
|
outline-offset: 2px;
|
|
@@ -2231,6 +2279,10 @@ select {
|
|
|
2231
2279
|
--tw-ring-color: rgb(40 31 107 / var(--tw-ring-opacity));
|
|
2232
2280
|
}
|
|
2233
2281
|
|
|
2282
|
+
.ring-offset-2 {
|
|
2283
|
+
--tw-ring-offset-width: 2px;
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2234
2286
|
.blur {
|
|
2235
2287
|
--tw-blur: blur(8px);
|
|
2236
2288
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -2241,21 +2293,21 @@ select {
|
|
|
2241
2293
|
}
|
|
2242
2294
|
|
|
2243
2295
|
.transition {
|
|
2244
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
2296
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2245
2297
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2246
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
2298
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2247
2299
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2248
2300
|
transition-duration: 150ms;
|
|
2249
2301
|
}
|
|
2250
2302
|
|
|
2251
|
-
.transition-
|
|
2252
|
-
transition-property:
|
|
2303
|
+
.transition-all {
|
|
2304
|
+
transition-property: all;
|
|
2253
2305
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2254
2306
|
transition-duration: 150ms;
|
|
2255
2307
|
}
|
|
2256
2308
|
|
|
2257
|
-
.transition-
|
|
2258
|
-
transition-property:
|
|
2309
|
+
.transition-opacity {
|
|
2310
|
+
transition-property: opacity;
|
|
2259
2311
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2260
2312
|
transition-duration: 150ms;
|
|
2261
2313
|
}
|
|
@@ -2272,6 +2324,10 @@ select {
|
|
|
2272
2324
|
transition-duration: 300ms;
|
|
2273
2325
|
}
|
|
2274
2326
|
|
|
2327
|
+
.ease-in {
|
|
2328
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2275
2331
|
.ease-in-out {
|
|
2276
2332
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2277
2333
|
}
|
|
@@ -2280,10 +2336,6 @@ select {
|
|
|
2280
2336
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2281
2337
|
}
|
|
2282
2338
|
|
|
2283
|
-
.ease-in {
|
|
2284
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
2339
|
@font-face {
|
|
2288
2340
|
font-family: 'Karbon Regular';
|
|
2289
2341
|
|
|
@@ -2341,9 +2393,7 @@ b {
|
|
|
2341
2393
|
}
|
|
2342
2394
|
|
|
2343
2395
|
.pzh-transition-colors {
|
|
2344
|
-
transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
2345
2396
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
2346
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
|
|
2347
2397
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2348
2398
|
transition-duration: 200ms;
|
|
2349
2399
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
@@ -2358,9 +2408,9 @@ b {
|
|
|
2358
2408
|
border-radius: 0.25rem;
|
|
2359
2409
|
line-height: 1;
|
|
2360
2410
|
--tw-ring-offset-width: 2px;
|
|
2361
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
2411
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2362
2412
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2363
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
2413
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2364
2414
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2365
2415
|
transition-duration: 200ms;
|
|
2366
2416
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
@@ -2406,11 +2456,6 @@ b {
|
|
|
2406
2456
|
color: rgb(138 136 157 / var(--tw-placeholder-opacity));
|
|
2407
2457
|
}
|
|
2408
2458
|
|
|
2409
|
-
.pzh-form-input:-ms-input-placeholder {
|
|
2410
|
-
--tw-placeholder-opacity: 1;
|
|
2411
|
-
color: rgb(138 136 157 / var(--tw-placeholder-opacity));
|
|
2412
|
-
}
|
|
2413
|
-
|
|
2414
2459
|
.pzh-form-input::placeholder {
|
|
2415
2460
|
--tw-placeholder-opacity: 1;
|
|
2416
2461
|
color: rgb(138 136 157 / var(--tw-placeholder-opacity));
|
|
@@ -2439,12 +2484,16 @@ b {
|
|
|
2439
2484
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
2440
2485
|
}
|
|
2441
2486
|
|
|
2442
|
-
.pzh-form-error,
|
|
2487
|
+
.pzh-form-error,
|
|
2488
|
+
.pzh-form-checkbox.pzh-form-error + span:before,
|
|
2489
|
+
.pzh-form-radio:checked.pzh-form-error + span:before,
|
|
2490
|
+
.pzh-form-radio:not(:checked).pzh-form-error + span:before {
|
|
2443
2491
|
--tw-border-opacity: 1;
|
|
2444
2492
|
border-color: rgb(209 31 61 / var(--tw-border-opacity));
|
|
2445
2493
|
}
|
|
2446
2494
|
|
|
2447
|
-
.pzh-form-radio:checked + span:before,
|
|
2495
|
+
.pzh-form-radio:checked + span:before,
|
|
2496
|
+
.pzh-form-radio:not(:checked) + span:before {
|
|
2448
2497
|
position: absolute;
|
|
2449
2498
|
left: 0px;
|
|
2450
2499
|
top: 0px;
|
|
@@ -2459,7 +2508,8 @@ b {
|
|
|
2459
2508
|
content: '';
|
|
2460
2509
|
}
|
|
2461
2510
|
|
|
2462
|
-
.pzh-form-radio:checked + span:after,
|
|
2511
|
+
.pzh-form-radio:checked + span:after,
|
|
2512
|
+
.pzh-form-radio:not(:checked) + span:after {
|
|
2463
2513
|
position: absolute;
|
|
2464
2514
|
top: 0.25rem;
|
|
2465
2515
|
left: 0.25rem;
|
|
@@ -2468,9 +2518,9 @@ b {
|
|
|
2468
2518
|
border-radius: 9999px;
|
|
2469
2519
|
--tw-bg-opacity: 1;
|
|
2470
2520
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
2471
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
2521
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2472
2522
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2473
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
2523
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2474
2524
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2475
2525
|
transition-duration: 200ms;
|
|
2476
2526
|
content: '';
|
|
@@ -2488,7 +2538,8 @@ b {
|
|
|
2488
2538
|
transform: scale(1);
|
|
2489
2539
|
}
|
|
2490
2540
|
|
|
2491
|
-
.pzh-form-radio:disabled + span:before,
|
|
2541
|
+
.pzh-form-radio:disabled + span:before,
|
|
2542
|
+
.pzh-form-checkbox:disabled + span:before {
|
|
2492
2543
|
--tw-border-opacity: 1;
|
|
2493
2544
|
border-color: rgb(235 235 235 / var(--tw-border-opacity));
|
|
2494
2545
|
--tw-bg-opacity: 1;
|
|
@@ -2507,9 +2558,9 @@ b {
|
|
|
2507
2558
|
border-color: rgb(138 136 157 / var(--tw-border-opacity));
|
|
2508
2559
|
--tw-bg-opacity: 1;
|
|
2509
2560
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
2510
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
2561
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2511
2562
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2512
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
2563
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2513
2564
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2514
2565
|
transition-duration: 200ms;
|
|
2515
2566
|
content: '';
|
|
@@ -2520,7 +2571,8 @@ b {
|
|
|
2520
2571
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
2521
2572
|
}
|
|
2522
2573
|
|
|
2523
|
-
.pzh-form-checkbox:checked + span:after,
|
|
2574
|
+
.pzh-form-checkbox:checked + span:after,
|
|
2575
|
+
.pzh-form-checkbox:not(:checked) + span:after {
|
|
2524
2576
|
position: absolute;
|
|
2525
2577
|
top: 2px;
|
|
2526
2578
|
left: 0.25rem;
|
|
@@ -2528,9 +2580,9 @@ b {
|
|
|
2528
2580
|
width: 14px;
|
|
2529
2581
|
--tw-text-opacity: 1;
|
|
2530
2582
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2531
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
2583
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2532
2584
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2533
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
2585
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
2534
2586
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2535
2587
|
transition-duration: 200ms;
|
|
2536
2588
|
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='white' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/></svg>");
|
|
@@ -2540,7 +2592,8 @@ b {
|
|
|
2540
2592
|
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='rgba(22, 17, 59, 0.35)' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/></svg>");
|
|
2541
2593
|
}
|
|
2542
2594
|
|
|
2543
|
-
.pzh-form-radio:focus + span:before,
|
|
2595
|
+
.pzh-form-radio:focus + span:before,
|
|
2596
|
+
.pzh-form-checkbox:focus + span:before {
|
|
2544
2597
|
--tw-border-opacity: 1;
|
|
2545
2598
|
border-color: rgb(40 31 107 / var(--tw-border-opacity));
|
|
2546
2599
|
outline: 2px solid transparent;
|
|
@@ -2624,7 +2677,9 @@ b {
|
|
|
2624
2677
|
--tw-text-opacity: 0.35;
|
|
2625
2678
|
}
|
|
2626
2679
|
|
|
2627
|
-
.pzh-datepicker .react-datepicker__day-name,
|
|
2680
|
+
.pzh-datepicker .react-datepicker__day-name,
|
|
2681
|
+
.pzh-datepicker .react-datepicker__day,
|
|
2682
|
+
.pzh-datepicker .react-datepicker__time-name {
|
|
2628
2683
|
margin-left: 0.5rem;
|
|
2629
2684
|
margin-right: 0.5rem;
|
|
2630
2685
|
margin-top: 0.25rem;
|
|
@@ -2642,7 +2697,9 @@ b {
|
|
|
2642
2697
|
border-radius: 9999px;
|
|
2643
2698
|
}
|
|
2644
2699
|
|
|
2645
|
-
.pzh-datepicker .react-datepicker__day--today,
|
|
2700
|
+
.pzh-datepicker .react-datepicker__day--today,
|
|
2701
|
+
.pzh-datepicker .react-datepicker__day--today:hover,
|
|
2702
|
+
.pzh-datepicker .react-datepicker__day--keyboard-selected {
|
|
2646
2703
|
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
2647
2704
|
--tw-bg-opacity: 0.1;
|
|
2648
2705
|
--tw-text-opacity: 1;
|
|
@@ -2654,13 +2711,17 @@ b {
|
|
|
2654
2711
|
--tw-bg-opacity: 0.1;
|
|
2655
2712
|
}
|
|
2656
2713
|
|
|
2657
|
-
.pzh-datepicker .react-datepicker__day--selected,
|
|
2714
|
+
.pzh-datepicker .react-datepicker__day--selected,
|
|
2715
|
+
.pzh-datepicker .react-datepicker__day--selected:hover {
|
|
2658
2716
|
--tw-bg-opacity: 1;
|
|
2659
2717
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
2660
2718
|
font-weight: 700;
|
|
2661
2719
|
}
|
|
2662
2720
|
|
|
2663
|
-
.pzh-datepicker .react-datepicker__year-read-view--down-arrow,
|
|
2721
|
+
.pzh-datepicker .react-datepicker__year-read-view--down-arrow,
|
|
2722
|
+
.pzh-datepicker .react-datepicker__month-read-view--down-arrow,
|
|
2723
|
+
.pzh-datepicker .react-datepicker__month-year-read-view--down-arrow,
|
|
2724
|
+
.pzh-datepicker .react-datepicker__navigation-icon::before {
|
|
2664
2725
|
height: 7px;
|
|
2665
2726
|
width: 7px;
|
|
2666
2727
|
border-width: 0px;
|
|
@@ -2687,13 +2748,43 @@ b {
|
|
|
2687
2748
|
}
|
|
2688
2749
|
|
|
2689
2750
|
.marker\:text-pzh-blue-dark *::marker {
|
|
2690
|
-
|
|
2691
|
-
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
2751
|
+
color: rgb(22 17 59 );
|
|
2692
2752
|
}
|
|
2693
2753
|
|
|
2694
2754
|
.marker\:text-pzh-blue-dark::marker {
|
|
2695
|
-
|
|
2696
|
-
|
|
2755
|
+
color: rgb(22 17 59 );
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
.before\:border-pzh-blue::before {
|
|
2759
|
+
content: var(--tw-content);
|
|
2760
|
+
--tw-border-opacity: 1;
|
|
2761
|
+
border-color: rgb(40 31 107 / var(--tw-border-opacity));
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.before\:outline-none::before {
|
|
2765
|
+
content: var(--tw-content);
|
|
2766
|
+
outline: 2px solid transparent;
|
|
2767
|
+
outline-offset: 2px;
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
.before\:ring::before {
|
|
2771
|
+
content: var(--tw-content);
|
|
2772
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2773
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2774
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.before\:ring-2::before {
|
|
2778
|
+
content: var(--tw-content);
|
|
2779
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2780
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2781
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
.before\:ring-pzh-blue::before {
|
|
2785
|
+
content: var(--tw-content);
|
|
2786
|
+
--tw-ring-opacity: 1;
|
|
2787
|
+
--tw-ring-color: rgb(40 31 107 / var(--tw-ring-opacity));
|
|
2697
2788
|
}
|
|
2698
2789
|
|
|
2699
2790
|
.hover\:translate-y-0:hover {
|
|
@@ -2711,14 +2802,14 @@ b {
|
|
|
2711
2802
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
2712
2803
|
}
|
|
2713
2804
|
|
|
2714
|
-
.hover\:bg-
|
|
2805
|
+
.hover\:bg-pzh-blue-dark:hover {
|
|
2715
2806
|
--tw-bg-opacity: 1;
|
|
2716
|
-
background-color: rgb(
|
|
2807
|
+
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
2717
2808
|
}
|
|
2718
2809
|
|
|
2719
|
-
.hover\:bg-pzh-
|
|
2810
|
+
.hover\:bg-pzh-gray-100:hover {
|
|
2720
2811
|
--tw-bg-opacity: 1;
|
|
2721
|
-
background-color: rgb(
|
|
2812
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
2722
2813
|
}
|
|
2723
2814
|
|
|
2724
2815
|
.hover\:bg-pzh-green-dark:hover {
|
|
@@ -2726,15 +2817,20 @@ b {
|
|
|
2726
2817
|
background-color: rgb(0 77 46 / var(--tw-bg-opacity));
|
|
2727
2818
|
}
|
|
2728
2819
|
|
|
2729
|
-
.hover\:bg-
|
|
2820
|
+
.hover\:bg-white:hover {
|
|
2730
2821
|
--tw-bg-opacity: 1;
|
|
2731
|
-
background-color: rgb(
|
|
2822
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
2732
2823
|
}
|
|
2733
2824
|
|
|
2734
2825
|
.hover\:bg-opacity-10:hover {
|
|
2735
2826
|
--tw-bg-opacity: 0.1;
|
|
2736
2827
|
}
|
|
2737
2828
|
|
|
2829
|
+
.hover\:text-pzh-blue:hover {
|
|
2830
|
+
--tw-text-opacity: 1;
|
|
2831
|
+
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2738
2834
|
.hover\:text-pzh-blue-dark:hover {
|
|
2739
2835
|
--tw-text-opacity: 1;
|
|
2740
2836
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
@@ -2745,29 +2841,23 @@ b {
|
|
|
2745
2841
|
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
2746
2842
|
}
|
|
2747
2843
|
|
|
2748
|
-
.hover\:text-pzh-blue:hover {
|
|
2749
|
-
--tw-text-opacity: 1;
|
|
2750
|
-
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
2751
|
-
}
|
|
2752
|
-
|
|
2753
2844
|
.hover\:text-white:hover {
|
|
2754
2845
|
--tw-text-opacity: 1;
|
|
2755
2846
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2756
2847
|
}
|
|
2757
2848
|
|
|
2758
2849
|
.hover\:underline:hover {
|
|
2759
|
-
|
|
2760
|
-
text-decoration-line: underline;
|
|
2850
|
+
text-decoration-line: underline;
|
|
2761
2851
|
}
|
|
2762
2852
|
|
|
2763
|
-
.focus\:bg-pzh-
|
|
2853
|
+
.focus\:bg-pzh-blue:focus {
|
|
2764
2854
|
--tw-bg-opacity: 1;
|
|
2765
|
-
background-color: rgb(
|
|
2855
|
+
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
2766
2856
|
}
|
|
2767
2857
|
|
|
2768
|
-
.focus\:bg-pzh-
|
|
2858
|
+
.focus\:bg-pzh-gray-100:focus {
|
|
2769
2859
|
--tw-bg-opacity: 1;
|
|
2770
|
-
background-color: rgb(
|
|
2860
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
2771
2861
|
}
|
|
2772
2862
|
|
|
2773
2863
|
.focus\:text-white:focus {
|
|
@@ -2786,6 +2876,12 @@ b {
|
|
|
2786
2876
|
outline-offset: 2px;
|
|
2787
2877
|
}
|
|
2788
2878
|
|
|
2879
|
+
.focus\:ring:focus {
|
|
2880
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2881
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2882
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2789
2885
|
.focus\:ring-2:focus {
|
|
2790
2886
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2791
2887
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2797,14 +2893,38 @@ b {
|
|
|
2797
2893
|
--tw-ring-color: rgb(102 126 234 / var(--tw-ring-opacity));
|
|
2798
2894
|
}
|
|
2799
2895
|
|
|
2896
|
+
.focus\:ring-pzh-blue-dark:focus {
|
|
2897
|
+
--tw-ring-opacity: 1;
|
|
2898
|
+
--tw-ring-color: rgb(22 17 59 / var(--tw-ring-opacity));
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2800
2901
|
.focus\:ring-offset-2:focus {
|
|
2801
2902
|
--tw-ring-offset-width: 2px;
|
|
2802
2903
|
}
|
|
2803
2904
|
|
|
2905
|
+
.disabled\:pointer-events-none:disabled {
|
|
2906
|
+
pointer-events: none;
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
.disabled\:text-pzh-gray-400:disabled {
|
|
2910
|
+
--tw-text-opacity: 1;
|
|
2911
|
+
color: rgb(173 172 186 / var(--tw-text-opacity));
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2804
2914
|
.group:hover .group-hover\:opacity-100 {
|
|
2805
2915
|
opacity: 1;
|
|
2806
2916
|
}
|
|
2807
2917
|
|
|
2918
|
+
.aria-\[current\=page\]\:bg-pzh-green[aria-current=page] {
|
|
2919
|
+
--tw-bg-opacity: 1;
|
|
2920
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
.aria-\[current\=page\]\:text-pzh-white[aria-current=page] {
|
|
2924
|
+
--tw-text-opacity: 1;
|
|
2925
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2808
2928
|
.prose-li\:my-0 :is(:where(li):not(:where([class~="not-prose"] *))) {
|
|
2809
2929
|
margin-top: 0px;
|
|
2810
2930
|
margin-bottom: 0px;
|
|
@@ -2816,16 +2936,16 @@ b {
|
|
|
2816
2936
|
margin-bottom: 2rem;
|
|
2817
2937
|
}
|
|
2818
2938
|
|
|
2819
|
-
.sm
|
|
2820
|
-
margin-
|
|
2939
|
+
.sm\:-mr-2 {
|
|
2940
|
+
margin-right: -0.5rem;
|
|
2821
2941
|
}
|
|
2822
2942
|
|
|
2823
2943
|
.sm\:-mt-2 {
|
|
2824
2944
|
margin-top: -0.5rem;
|
|
2825
2945
|
}
|
|
2826
2946
|
|
|
2827
|
-
.sm
|
|
2828
|
-
margin-
|
|
2947
|
+
.sm\:mt-8 {
|
|
2948
|
+
margin-top: 2rem;
|
|
2829
2949
|
}
|
|
2830
2950
|
|
|
2831
2951
|
.sm\:block {
|
|
@@ -2849,30 +2969,30 @@ b {
|
|
|
2849
2969
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2850
2970
|
}
|
|
2851
2971
|
|
|
2852
|
-
.sm\:scale-95 {
|
|
2853
|
-
--tw-scale-x: .95;
|
|
2854
|
-
--tw-scale-y: .95;
|
|
2855
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2856
|
-
}
|
|
2857
|
-
|
|
2858
2972
|
.sm\:scale-100 {
|
|
2859
2973
|
--tw-scale-x: 1;
|
|
2860
2974
|
--tw-scale-y: 1;
|
|
2861
2975
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2862
2976
|
}
|
|
2863
2977
|
|
|
2864
|
-
.sm\:
|
|
2865
|
-
|
|
2978
|
+
.sm\:scale-95 {
|
|
2979
|
+
--tw-scale-x: .95;
|
|
2980
|
+
--tw-scale-y: .95;
|
|
2981
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2866
2982
|
}
|
|
2867
2983
|
|
|
2868
|
-
.sm\:
|
|
2869
|
-
|
|
2984
|
+
.sm\:items-start {
|
|
2985
|
+
align-items: flex-start;
|
|
2870
2986
|
}
|
|
2871
2987
|
|
|
2872
2988
|
.sm\:p-2 {
|
|
2873
2989
|
padding: 0.5rem;
|
|
2874
2990
|
}
|
|
2875
2991
|
|
|
2992
|
+
.sm\:p-8 {
|
|
2993
|
+
padding: 2rem;
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2876
2996
|
.sm\:px-6 {
|
|
2877
2997
|
padding-left: 1.5rem;
|
|
2878
2998
|
padding-right: 1.5rem;
|
|
@@ -2883,14 +3003,14 @@ b {
|
|
|
2883
3003
|
padding-bottom: 2.5rem;
|
|
2884
3004
|
}
|
|
2885
3005
|
|
|
2886
|
-
.sm\:pt-1 {
|
|
2887
|
-
padding-top: 0.25rem;
|
|
2888
|
-
}
|
|
2889
|
-
|
|
2890
3006
|
.sm\:pr-2 {
|
|
2891
3007
|
padding-right: 0.5rem;
|
|
2892
3008
|
}
|
|
2893
3009
|
|
|
3010
|
+
.sm\:pt-1 {
|
|
3011
|
+
padding-top: 0.25rem;
|
|
3012
|
+
}
|
|
3013
|
+
|
|
2894
3014
|
.sm\:text-center {
|
|
2895
3015
|
text-align: center;
|
|
2896
3016
|
}
|