@pmidc/upyog-css 1.0.48 → 1.0.50

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.css CHANGED
@@ -2609,70 +2609,111 @@ img, video {
2609
2609
  line-height: 28px; } }
2610
2610
 
2611
2611
  .data-table {
2612
- --text-opacity:1;
2613
2612
  color: #0d43a7;
2614
- color: rgba(13, 67, 167, var(--text-opacity)); }
2615
- .data-table .row {
2616
- display: -webkit-box;
2617
- display: -ms-flexbox;
2618
- display: flex;
2619
- border-bottom-width: 1px;
2620
- --border-opacity:1;
2621
- border-color: #d6d5d4;
2622
- border-color: rgba(214, 213, 212, var(--border-opacity));
2623
- padding-bottom: 8px;
2624
- margin-bottom: 8px; }
2625
- .data-table .row span {
2626
- width: 70%;
2627
- display: contents; }
2628
- .data-table .row h2 {
2629
- width: 40%;
2630
- font-weight: 700; }
2631
- .data-table .row .value, .data-table .row h2 {
2632
- font-size: 16px;
2633
- line-height: 24px; }
2634
- .data-table .row .value {
2635
- width: 50%;
2636
- word-break: break-all; }
2637
- .data-table .row .caption {
2638
- width: 70%;
2639
- font-size: 16px;
2640
- line-height: 24px;
2641
- --text-opacity:1;
2642
- color: #505a5f;
2643
- color: rgba(80, 90, 95, var(--text-opacity)); }
2644
- .data-table .last {
2645
- border: none;
2646
- padding: 0;
2647
- margin: 0; }
2613
+ border: 1px solid #ccc;
2614
+ border-radius: 8px;
2615
+ overflow: hidden;
2616
+ width: 100%;
2617
+ border-collapse: collapse;
2618
+ padding-bottom: 0; }
2619
+
2620
+ .data-table .row {
2621
+ display: -webkit-box;
2622
+ display: -ms-flexbox;
2623
+ display: flex;
2624
+ -webkit-box-pack: justify;
2625
+ -ms-flex-pack: justify;
2626
+ justify-content: space-between;
2627
+ -webkit-box-align: center;
2628
+ -ms-flex-align: center;
2629
+ align-items: center;
2630
+ width: 100%;
2631
+ margin-bottom: 0;
2632
+ padding: 15px 30px;
2633
+ border-bottom: 1px solid #e0e0e0;
2634
+ border-bottom: 1px solid var(--border, #e0e0e0); }
2635
+
2636
+ .data-table .row:nth-child(odd) {
2637
+ background-color: #eee; }
2638
+
2639
+ .data-table .row:nth-child(2n) {
2640
+ background-color: #fff; }
2641
+
2642
+ .data-table .row h2 {
2643
+ font-weight: 600;
2644
+ text-align: left;
2645
+ width: 60%;
2646
+ margin: 0; }
2647
+
2648
+ .data-table .row .value {
2649
+ text-align: left;
2650
+ width: 40%;
2651
+ word-break: break-word; }
2652
+
2653
+ .data-table .row .caption {
2654
+ font-size: .875rem;
2655
+ color: #666;
2656
+ color: var(--text-secondary, #666); }
2657
+
2658
+ .data-table .row span {
2659
+ width: 70%;
2660
+ display: contents; }
2661
+
2662
+ .data-table .last {
2663
+ border: none;
2664
+ padding: 0;
2665
+ margin: 0; }
2666
+
2667
+ .employee-data-table {
2668
+ color: #0d43a7;
2669
+ border: 1px solid #ccc;
2670
+ border-radius: 8px;
2671
+ overflow: hidden;
2672
+ width: 100%;
2673
+ border-collapse: collapse;
2674
+ padding-bottom: 0; }
2648
2675
 
2649
2676
  .employee-data-table .row {
2650
2677
  display: -webkit-box;
2651
2678
  display: -ms-flexbox;
2652
2679
  display: flex;
2653
- padding-bottom: 8px;
2654
- margin-bottom: 8px; }
2655
- .employee-data-table .row span {
2656
- width: 70%;
2657
- display: contents; }
2658
- .employee-data-table .row h2 {
2659
- width: 30%;
2660
- font-weight: 700; }
2661
- .employee-data-table .row .value, .employee-data-table .row h2 {
2662
- font-size: 16px;
2663
- line-height: 24px; }
2664
- .employee-data-table .row .value {
2665
- width: 50%; }
2666
- .employee-data-table .row .caption {
2667
- width: 70%;
2668
- font-size: 16px;
2669
- line-height: 24px;
2670
- --text-opacity:1;
2671
- color: #505a5f;
2672
- color: rgba(80, 90, 95, var(--text-opacity)); }
2680
+ -webkit-box-pack: justify;
2681
+ -ms-flex-pack: justify;
2682
+ justify-content: space-between;
2683
+ -webkit-box-align: center;
2684
+ -ms-flex-align: center;
2685
+ align-items: center;
2686
+ width: 100%;
2687
+ margin-bottom: 0;
2688
+ padding: 15px 30px;
2689
+ border-bottom: 1px solid #e0e0e0;
2690
+ border-bottom: 1px solid var(--border, #e0e0e0); }
2691
+
2692
+ .employee-data-table .row:nth-child(odd) {
2693
+ background-color: #eee; }
2694
+
2695
+ .employee-data-table .row:nth-child(2n) {
2696
+ background-color: #fff; }
2673
2697
 
2674
- .employee-data-table .vendor-details-row {
2675
- margin-left: 15px !important; }
2698
+ .employee-data-table .row h2 {
2699
+ font-weight: 600;
2700
+ text-align: left;
2701
+ width: 60%;
2702
+ margin: 0; }
2703
+
2704
+ .employee-data-table .row .value {
2705
+ text-align: left;
2706
+ width: 40%;
2707
+ word-break: break-word; }
2708
+
2709
+ .employee-data-table .row .caption {
2710
+ font-size: .875rem;
2711
+ color: #666;
2712
+ color: var(--text-secondary, #666); }
2713
+
2714
+ .employee-data-table .row span {
2715
+ width: 70%;
2716
+ display: contents; }
2676
2717
 
2677
2718
  .employee-data-table .last {
2678
2719
  border: none;
@@ -11342,6 +11383,10 @@ body {
11342
11383
  text-align: right; } }
11343
11384
 
11344
11385
  .loader-message {
11386
+ overflow: hidden;
11387
+ position: relative;
11388
+ height: 100vh;
11389
+ width: 100vw;
11345
11390
  display: -webkit-box;
11346
11391
  display: -ms-flexbox;
11347
11392
  display: flex;
@@ -11351,8 +11396,342 @@ body {
11351
11396
  -webkit-box-align: center;
11352
11397
  -ms-flex-align: center;
11353
11398
  align-items: center;
11354
- font-weight: 700;
11355
- font-size: 19px; }
11399
+ -webkit-box-orient: vertical;
11400
+ -webkit-box-direction: normal;
11401
+ -ms-flex-direction: column;
11402
+ flex-direction: column;
11403
+ font-weight: 600;
11404
+ font-size: 14px;
11405
+ color: #000; }
11406
+
11407
+ .loader-message .body {
11408
+ position: absolute;
11409
+ left: 44%;
11410
+ top: 50%;
11411
+ -webkit-animation: speeder .4s linear infinite;
11412
+ animation: speeder .4s linear infinite; }
11413
+
11414
+ .loader-message .body > span {
11415
+ height: 5px;
11416
+ width: 35px;
11417
+ background: #0d43a7;
11418
+ position: absolute;
11419
+ top: -19px;
11420
+ left: -40px;
11421
+ border-radius: 2px 10px 1px 0; }
11422
+
11423
+ .loader-message .base span {
11424
+ position: absolute;
11425
+ width: 0;
11426
+ height: 0;
11427
+ border-top: 6px solid transparent;
11428
+ border-right: 100px solid #000;
11429
+ border-bottom: 6px solid transparent; }
11430
+
11431
+ .loader-message .base span:before {
11432
+ content: "";
11433
+ height: 22px;
11434
+ width: 22px;
11435
+ border-radius: 50%;
11436
+ background: #0d43a7;
11437
+ position: absolute;
11438
+ right: -110px;
11439
+ top: -16px; }
11440
+
11441
+ .loader-message .base span:after {
11442
+ content: "";
11443
+ position: absolute;
11444
+ width: 0;
11445
+ height: 0;
11446
+ border-top: 0 solid transparent;
11447
+ border-right: 55px solid #000;
11448
+ border-bottom: 16px solid transparent;
11449
+ top: -16px;
11450
+ right: -98px; }
11451
+
11452
+ .loader-message .face {
11453
+ position: absolute;
11454
+ height: 12px;
11455
+ width: 20px;
11456
+ background: #0d43a7;
11457
+ border-radius: 20px 20px 0 0;
11458
+ -webkit-transform: rotate(-40deg);
11459
+ transform: rotate(-40deg);
11460
+ right: -125px;
11461
+ top: -15px; }
11462
+
11463
+ .loader-message .face:after {
11464
+ content: "";
11465
+ height: 12px;
11466
+ width: 12px;
11467
+ background: #0d43a7;
11468
+ right: 4px;
11469
+ top: 7px;
11470
+ position: absolute;
11471
+ -webkit-transform: rotate(40deg);
11472
+ transform: rotate(40deg);
11473
+ -webkit-transform-origin: 50% 50%;
11474
+ transform-origin: 50% 50%;
11475
+ border-radius: 0 0 0 2px; }
11476
+
11477
+ .loader-message .body > span > span {
11478
+ width: 30px;
11479
+ height: 1px;
11480
+ background: #0d43a7;
11481
+ position: absolute; }
11482
+
11483
+ .loader-message .body > span > span:first-child {
11484
+ top: 0;
11485
+ -webkit-animation: fazer1 .2s linear infinite;
11486
+ animation: fazer1 .2s linear infinite; }
11487
+
11488
+ .loader-message .body > span > span:nth-child(2) {
11489
+ top: 3px;
11490
+ -webkit-animation: fazer2 .4s linear infinite;
11491
+ animation: fazer2 .4s linear infinite; }
11492
+
11493
+ .loader-message .body > span > span:nth-child(3) {
11494
+ top: 1px;
11495
+ -webkit-animation: fazer3 .4s linear infinite;
11496
+ animation: fazer3 .4s linear infinite;
11497
+ -webkit-animation-delay: -1s;
11498
+ animation-delay: -1s; }
11499
+
11500
+ .loader-message .body > span > span:nth-child(4) {
11501
+ top: 4px;
11502
+ -webkit-animation: fazer4 1s linear infinite;
11503
+ animation: fazer4 1s linear infinite;
11504
+ -webkit-animation-delay: -1s;
11505
+ animation-delay: -1s; }
11506
+
11507
+ @-webkit-keyframes fazer1 {
11508
+ 0% {
11509
+ left: 0; }
11510
+ to {
11511
+ left: -80px;
11512
+ opacity: 0; } }
11513
+
11514
+ @keyframes fazer1 {
11515
+ 0% {
11516
+ left: 0; }
11517
+ to {
11518
+ left: -80px;
11519
+ opacity: 0; } }
11520
+
11521
+ @-webkit-keyframes fazer2 {
11522
+ 0% {
11523
+ left: 0; }
11524
+ to {
11525
+ left: -100px;
11526
+ opacity: 0; } }
11527
+
11528
+ @keyframes fazer2 {
11529
+ 0% {
11530
+ left: 0; }
11531
+ to {
11532
+ left: -100px;
11533
+ opacity: 0; } }
11534
+
11535
+ @-webkit-keyframes fazer3 {
11536
+ 0% {
11537
+ left: 0; }
11538
+ to {
11539
+ left: -50px;
11540
+ opacity: 0; } }
11541
+
11542
+ @keyframes fazer3 {
11543
+ 0% {
11544
+ left: 0; }
11545
+ to {
11546
+ left: -50px;
11547
+ opacity: 0; } }
11548
+
11549
+ @-webkit-keyframes fazer4 {
11550
+ 0% {
11551
+ left: 0; }
11552
+ to {
11553
+ left: -150px;
11554
+ opacity: 0; } }
11555
+
11556
+ @keyframes fazer4 {
11557
+ 0% {
11558
+ left: 0; }
11559
+ to {
11560
+ left: -150px;
11561
+ opacity: 0; } }
11562
+
11563
+ @-webkit-keyframes speeder {
11564
+ 0% {
11565
+ -webkit-transform: translate(2px, 1px) rotate(0deg);
11566
+ transform: translate(2px, 1px) rotate(0deg); }
11567
+ 10% {
11568
+ -webkit-transform: translate(-1px, -3px) rotate(-1deg);
11569
+ transform: translate(-1px, -3px) rotate(-1deg); }
11570
+ 20% {
11571
+ -webkit-transform: translate(-2px) rotate(1deg);
11572
+ transform: translate(-2px) rotate(1deg); }
11573
+ 30% {
11574
+ -webkit-transform: translate(1px, 2px) rotate(0deg);
11575
+ transform: translate(1px, 2px) rotate(0deg); }
11576
+ 40% {
11577
+ -webkit-transform: translate(1px, -1px) rotate(1deg);
11578
+ transform: translate(1px, -1px) rotate(1deg); }
11579
+ 50% {
11580
+ -webkit-transform: translate(-1px, 3px) rotate(-1deg);
11581
+ transform: translate(-1px, 3px) rotate(-1deg); }
11582
+ 60% {
11583
+ -webkit-transform: translate(-1px, 1px) rotate(0deg);
11584
+ transform: translate(-1px, 1px) rotate(0deg); }
11585
+ 70% {
11586
+ -webkit-transform: translate(3px, 1px) rotate(-1deg);
11587
+ transform: translate(3px, 1px) rotate(-1deg); }
11588
+ 80% {
11589
+ -webkit-transform: translate(-2px, -1px) rotate(1deg);
11590
+ transform: translate(-2px, -1px) rotate(1deg); }
11591
+ 90% {
11592
+ -webkit-transform: translate(2px, 1px) rotate(0deg);
11593
+ transform: translate(2px, 1px) rotate(0deg); }
11594
+ to {
11595
+ -webkit-transform: translate(1px, -2px) rotate(-1deg);
11596
+ transform: translate(1px, -2px) rotate(-1deg); } }
11597
+
11598
+ @keyframes speeder {
11599
+ 0% {
11600
+ -webkit-transform: translate(2px, 1px) rotate(0deg);
11601
+ transform: translate(2px, 1px) rotate(0deg); }
11602
+ 10% {
11603
+ -webkit-transform: translate(-1px, -3px) rotate(-1deg);
11604
+ transform: translate(-1px, -3px) rotate(-1deg); }
11605
+ 20% {
11606
+ -webkit-transform: translate(-2px) rotate(1deg);
11607
+ transform: translate(-2px) rotate(1deg); }
11608
+ 30% {
11609
+ -webkit-transform: translate(1px, 2px) rotate(0deg);
11610
+ transform: translate(1px, 2px) rotate(0deg); }
11611
+ 40% {
11612
+ -webkit-transform: translate(1px, -1px) rotate(1deg);
11613
+ transform: translate(1px, -1px) rotate(1deg); }
11614
+ 50% {
11615
+ -webkit-transform: translate(-1px, 3px) rotate(-1deg);
11616
+ transform: translate(-1px, 3px) rotate(-1deg); }
11617
+ 60% {
11618
+ -webkit-transform: translate(-1px, 1px) rotate(0deg);
11619
+ transform: translate(-1px, 1px) rotate(0deg); }
11620
+ 70% {
11621
+ -webkit-transform: translate(3px, 1px) rotate(-1deg);
11622
+ transform: translate(3px, 1px) rotate(-1deg); }
11623
+ 80% {
11624
+ -webkit-transform: translate(-2px, -1px) rotate(1deg);
11625
+ transform: translate(-2px, -1px) rotate(1deg); }
11626
+ 90% {
11627
+ -webkit-transform: translate(2px, 1px) rotate(0deg);
11628
+ transform: translate(2px, 1px) rotate(0deg); }
11629
+ to {
11630
+ -webkit-transform: translate(1px, -2px) rotate(-1deg);
11631
+ transform: translate(1px, -2px) rotate(-1deg); } }
11632
+
11633
+ .loader-message .longfazers {
11634
+ position: absolute;
11635
+ width: 100%;
11636
+ height: 100%; }
11637
+
11638
+ .loader-message .longfazers span {
11639
+ position: absolute;
11640
+ height: 2px;
11641
+ width: 20%;
11642
+ background: #0d43a7; }
11643
+
11644
+ .loader-message .longfazers span:first-child {
11645
+ top: 20%;
11646
+ -webkit-animation: lf .6s linear infinite;
11647
+ animation: lf .6s linear infinite;
11648
+ -webkit-animation-delay: -5s;
11649
+ animation-delay: -5s; }
11650
+
11651
+ .loader-message .longfazers span:nth-child(2) {
11652
+ top: 40%;
11653
+ -webkit-animation: lf2 .8s linear infinite;
11654
+ animation: lf2 .8s linear infinite;
11655
+ -webkit-animation-delay: -1s;
11656
+ animation-delay: -1s; }
11657
+
11658
+ .loader-message .longfazers span:nth-child(3) {
11659
+ top: 60%;
11660
+ -webkit-animation: lf3 .6s linear infinite;
11661
+ animation: lf3 .6s linear infinite; }
11662
+
11663
+ .loader-message .longfazers span:nth-child(4) {
11664
+ top: 80%;
11665
+ -webkit-animation: lf4 .5s linear infinite;
11666
+ animation: lf4 .5s linear infinite;
11667
+ -webkit-animation-delay: -3s;
11668
+ animation-delay: -3s; }
11669
+
11670
+ .loader-message .message {
11671
+ position: absolute;
11672
+ font-family: Open Sans,sans-serif;
11673
+ font-weight: 600;
11674
+ font-size: 12px;
11675
+ text-transform: uppercase;
11676
+ left: 44%;
11677
+ top: 58%;
11678
+ margin-left: -20px; }
11679
+
11680
+ @-webkit-keyframes lf {
11681
+ 0% {
11682
+ left: 200%; }
11683
+ to {
11684
+ left: -200%;
11685
+ opacity: 0; } }
11686
+
11687
+ @keyframes lf {
11688
+ 0% {
11689
+ left: 200%; }
11690
+ to {
11691
+ left: -200%;
11692
+ opacity: 0; } }
11693
+
11694
+ @-webkit-keyframes lf2 {
11695
+ 0% {
11696
+ left: 200%; }
11697
+ to {
11698
+ left: -200%;
11699
+ opacity: 0; } }
11700
+
11701
+ @keyframes lf2 {
11702
+ 0% {
11703
+ left: 200%; }
11704
+ to {
11705
+ left: -200%;
11706
+ opacity: 0; } }
11707
+
11708
+ @-webkit-keyframes lf3 {
11709
+ 0% {
11710
+ left: 200%; }
11711
+ to {
11712
+ left: -100%;
11713
+ opacity: 0; } }
11714
+
11715
+ @keyframes lf3 {
11716
+ 0% {
11717
+ left: 200%; }
11718
+ to {
11719
+ left: -100%;
11720
+ opacity: 0; } }
11721
+
11722
+ @-webkit-keyframes lf4 {
11723
+ 0% {
11724
+ left: 200%; }
11725
+ to {
11726
+ left: -100%;
11727
+ opacity: 0; } }
11728
+
11729
+ @keyframes lf4 {
11730
+ 0% {
11731
+ left: 200%; }
11732
+ to {
11733
+ left: -100%;
11734
+ opacity: 0; } }
11356
11735
 
11357
11736
  .display-none {
11358
11737
  display: none; }