optimized-react-component-library-xyz123 1.1.7 → 1.1.8
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/index.d.mts +1 -16
- package/dist/index.d.ts +1 -16
- package/dist/index.js +61 -860
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +59 -857
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -5
- package/src/css/FooterStandard.css +169 -0
- package/src/css/darkMode.css +2 -83
- package/src/css/mobileView.css +0 -140
- package/src/css/questions.css +1 -1
- package/src/css/styles.css +2 -308
package/src/css/styles.css
CHANGED
|
@@ -231,6 +231,8 @@ input:focus-visible:-webkit-autofill {
|
|
|
231
231
|
box-shadow: 0 0 0 0px #000 !important;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
+
@import './FooterStandard.css';
|
|
235
|
+
|
|
234
236
|
/* ---------- COOKIE BANNER ---------- */
|
|
235
237
|
|
|
236
238
|
.pts-cookieBanner {
|
|
@@ -367,235 +369,6 @@ input:focus-visible:-webkit-autofill {
|
|
|
367
369
|
text-decoration: underline 0.2rem;
|
|
368
370
|
}
|
|
369
371
|
|
|
370
|
-
/**Header with navigation**/
|
|
371
|
-
|
|
372
|
-
.pts-navigation-header-container {
|
|
373
|
-
display: flex;
|
|
374
|
-
min-height: 80px;
|
|
375
|
-
padding: 0px 70px;
|
|
376
|
-
align-items: center;
|
|
377
|
-
justify-content: space-between;
|
|
378
|
-
background-color: var(--main);
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
.pts-navigation-header-content {
|
|
382
|
-
width: 100%;
|
|
383
|
-
display: grid;
|
|
384
|
-
grid-template-columns: 1fr auto 1fr;
|
|
385
|
-
align-items: center;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.pts-navigation-header-logo-container {
|
|
389
|
-
height: 4rem;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.pts-navigation-header-logo svg {
|
|
393
|
-
height: 4rem;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.pts-navigation-header-hedline-container{
|
|
397
|
-
display:flex;
|
|
398
|
-
justify-content: center;
|
|
399
|
-
align-items: flex-end;
|
|
400
|
-
height: 4.5rem;
|
|
401
|
-
}
|
|
402
|
-
.pts-navigation-header-hedline-container h1{
|
|
403
|
-
margin-bottom: unset;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.pts-navigation-header-nav-container{
|
|
407
|
-
display: flex;
|
|
408
|
-
justify-content: flex-end;
|
|
409
|
-
width: 100%;
|
|
410
|
-
align-items: flex-end;
|
|
411
|
-
height: 5rem;
|
|
412
|
-
}
|
|
413
|
-
/*navigation menu*/
|
|
414
|
-
.pts-navigation-header-nav-container button {
|
|
415
|
-
background: none;
|
|
416
|
-
line-height: 2.4rem;
|
|
417
|
-
text-decoration-skip-ink: none;
|
|
418
|
-
border: none;
|
|
419
|
-
color: var(--action);
|
|
420
|
-
font-size: 1.6rem;
|
|
421
|
-
padding: 0;
|
|
422
|
-
cursor: pointer;
|
|
423
|
-
width: 13rem;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
.pts-navigation-button-label {
|
|
428
|
-
position: relative;
|
|
429
|
-
padding-left: 0.8rem;
|
|
430
|
-
bottom: 3px;
|
|
431
|
-
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
.pts-navigation-menu-container {
|
|
435
|
-
background-color:var(--main);
|
|
436
|
-
position: absolute;
|
|
437
|
-
top: 8rem;
|
|
438
|
-
right: 0;
|
|
439
|
-
z-index: 20;
|
|
440
|
-
width: 100%;
|
|
441
|
-
max-width: 570px;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.pts-navigation-with-close-button{
|
|
445
|
-
top:0;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.pts-navigation-close-text {
|
|
449
|
-
padding-left: 0.8rem;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.pts-navigation-link-list,
|
|
453
|
-
.pts-navigation-link,
|
|
454
|
-
.pts-sub-navigation-list {
|
|
455
|
-
list-style: none;
|
|
456
|
-
background-color:var(--main);;
|
|
457
|
-
width: 100%;
|
|
458
|
-
padding-inline-start: 0px;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.pts-navigation-link-list {
|
|
462
|
-
width: 100%;
|
|
463
|
-
padding-inline-start: 0px;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.pts-navigation-button a,
|
|
467
|
-
.pts-sub-navigation-item a {
|
|
468
|
-
text-decoration: none;
|
|
469
|
-
color: var(--text)
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.pts-navigation-link-expand-button {
|
|
473
|
-
border: none;
|
|
474
|
-
padding: 0;
|
|
475
|
-
cursor: pointer;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.pts-sub-navigation-container {
|
|
479
|
-
background-color: #d5b9dd;
|
|
480
|
-
border-left: var(--action) 5px solid;
|
|
481
|
-
padding-left: 3.6rem;
|
|
482
|
-
display: flex ;
|
|
483
|
-
align-items: flex-end ;
|
|
484
|
-
gap: 18px ;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.pts-sub-navigation-list {
|
|
488
|
-
display:block;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
.pts-sub-navigation-item {
|
|
492
|
-
height: 5.1rem;
|
|
493
|
-
display: flex;
|
|
494
|
-
align-items: center;
|
|
495
|
-
justify-content: flex-start;
|
|
496
|
-
border-bottom: 2px solid var(--background) ;
|
|
497
|
-
padding-left: 3rem;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
.pts-navigation-button,
|
|
502
|
-
.pts-navigation-close-container {
|
|
503
|
-
padding: 2.1rem 3.6rem;
|
|
504
|
-
border-width: 0px;
|
|
505
|
-
border-bottom: 2px solid var(--background);
|
|
506
|
-
background-color: var(--main);
|
|
507
|
-
text-align: left;
|
|
508
|
-
display: flex;
|
|
509
|
-
justify-content: space-between;
|
|
510
|
-
align-items: center;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.pts-navigation-close-button {
|
|
514
|
-
width: 20rem;
|
|
515
|
-
height: 4rem;
|
|
516
|
-
border: none;
|
|
517
|
-
border-radius: 8px;
|
|
518
|
-
color: var(--action);
|
|
519
|
-
background-color: var(--main);
|
|
520
|
-
display: flex;
|
|
521
|
-
align-items: center;
|
|
522
|
-
justify-content: flex-start;
|
|
523
|
-
margin-top: 3rem;
|
|
524
|
-
margin-bottom: 3rem;
|
|
525
|
-
cursor: pointer;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
/*-------Breadcrumbs-------*/
|
|
529
|
-
.pts-breadcrumbs {
|
|
530
|
-
background-color: var(--background-third);
|
|
531
|
-
height: 48px;
|
|
532
|
-
display: flex;
|
|
533
|
-
align-items: center;
|
|
534
|
-
padding-left: 6rem;
|
|
535
|
-
padding-top: 2px;
|
|
536
|
-
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
.pts-breadcrumbs a {
|
|
540
|
-
color: var(--main);
|
|
541
|
-
text-decoration: none;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.pts-breadcrumbs a:hover {
|
|
545
|
-
color: var(--main);
|
|
546
|
-
text-decoration: underline 2px;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.pts-crumb-label {
|
|
550
|
-
position: relative;
|
|
551
|
-
bottom: 2px;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.pts-bold-crumb {
|
|
555
|
-
font-weight: bold;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.pts-breadcrumbs svg {
|
|
559
|
-
margin: 0 1.6rem;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.pts-breadcrumbs nav {
|
|
563
|
-
background-color: unset;
|
|
564
|
-
position: unset;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
/****SEARCH BAR*******/
|
|
568
|
-
.pts-searchBar-container {
|
|
569
|
-
height: 7rem;
|
|
570
|
-
background-color: var(--background);
|
|
571
|
-
display: flex;
|
|
572
|
-
align-items: center;
|
|
573
|
-
justify-content: center;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.pts-searchBar-button {
|
|
577
|
-
|
|
578
|
-
height: 3.9rem;
|
|
579
|
-
background-color: var(--action);
|
|
580
|
-
border-radius: 8px;
|
|
581
|
-
border: var(--action) solid 1px;
|
|
582
|
-
color: var(--main);
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
.pts-searchBar-Button svg {
|
|
586
|
-
margin-right: 0.5rem;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.pts-searchBar-container input {
|
|
590
|
-
border-radius: 8px;
|
|
591
|
-
width: 65vw;
|
|
592
|
-
border: var(--action) solid 1px;
|
|
593
|
-
margin-right: -10px;
|
|
594
|
-
padding: 1rem;
|
|
595
|
-
border-top-right-radius: 0px;
|
|
596
|
-
border-bottom-right-radius: 0px;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
372
|
/* ---------- TextBODY ---------- */
|
|
600
373
|
|
|
601
374
|
.pts-textBody-container p {
|
|
@@ -912,85 +685,6 @@ input:focus-visible:-webkit-autofill {
|
|
|
912
685
|
transition: 0.2s;
|
|
913
686
|
}
|
|
914
687
|
|
|
915
|
-
/* ---------- FOOTER ---------- */
|
|
916
|
-
|
|
917
|
-
.pts-footer-container {
|
|
918
|
-
align-items: center;
|
|
919
|
-
width: 100%;
|
|
920
|
-
background-color: var(--background-second);
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.pts-footer-slogan-text-container {
|
|
924
|
-
display: flex;
|
|
925
|
-
align-items: center;
|
|
926
|
-
justify-content: center;
|
|
927
|
-
background-color: var(--background-third);
|
|
928
|
-
height: 50px;
|
|
929
|
-
padding: 0px;
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
.pts-footer-slogan-text {
|
|
933
|
-
color: var(--main);
|
|
934
|
-
line-height: 2.4rem;
|
|
935
|
-
font-size: 2rem;
|
|
936
|
-
text-box-trim: trim-both;
|
|
937
|
-
margin: 0;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
.pts-footer-content {
|
|
941
|
-
display: flex;
|
|
942
|
-
align-items: center;
|
|
943
|
-
width: 100%;
|
|
944
|
-
min-height: 14rem;
|
|
945
|
-
padding: 0.1rem 0;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
.pts-footer-logo {
|
|
949
|
-
width: 154.444px;
|
|
950
|
-
height: 40px;
|
|
951
|
-
padding-left: 70px;
|
|
952
|
-
flex-shrink: 0;
|
|
953
|
-
position: relative;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.pts-footer-linkList {
|
|
957
|
-
flex: 1;
|
|
958
|
-
justify-content: center;
|
|
959
|
-
margin-left: -224px;
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
.pts-footer-linkList ul {
|
|
963
|
-
padding: 0;
|
|
964
|
-
padding-top: 15px;
|
|
965
|
-
margin: 0;
|
|
966
|
-
list-style: none;
|
|
967
|
-
display: flex;
|
|
968
|
-
justify-content: center;
|
|
969
|
-
line-height: 25px;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
.pts-footer-linkList a {
|
|
973
|
-
color: var(--main);
|
|
974
|
-
text-underline-offset: 3px;
|
|
975
|
-
white-space: nowrap;
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
.pts-footer-linkList a span {
|
|
979
|
-
padding-left: 36px;
|
|
980
|
-
padding-right: 36px;
|
|
981
|
-
color: var(--main);
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
.pts-footer-container .pts-footer-linkList ul li:not(:last-child)::after {
|
|
985
|
-
content: '';
|
|
986
|
-
width: 1px;
|
|
987
|
-
height: 24px;
|
|
988
|
-
border: 0.5px solid;
|
|
989
|
-
color: var(--main);
|
|
990
|
-
position: absolute;
|
|
991
|
-
box-sizing: border-box;
|
|
992
|
-
}
|
|
993
|
-
|
|
994
688
|
/* ---------- MODAL ---------- */
|
|
995
689
|
|
|
996
690
|
.pts-modal-overlay {
|