@pmidc/upyog-css 1.0.35 → 1.0.37

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
@@ -877,8 +877,11 @@ img, video {
877
877
  position: relative !important; }
878
878
 
879
879
  .navbar {
880
+ --text-opacity:1;
881
+ color: #fff;
882
+ color: rgba(255, 255, 255, var(--text-opacity));
880
883
  margin-bottom: 16px;
881
- background: #294a97 !important; }
884
+ background: #fff !important; }
882
885
  .navbar img {
883
886
  height: 24px; }
884
887
 
@@ -1008,16 +1011,15 @@ img, video {
1008
1011
  margin-top: 90px; }
1009
1012
 
1010
1013
  .navbar {
1011
- --text-opacity:1;
1012
- color: #fff;
1013
- color: rgba(255, 255, 255, var(--text-opacity));
1014
1014
  --bg-opacity:1;
1015
1015
  background-color: #22394d;
1016
1016
  background-color: rgba(34, 57, 77, var(--bg-opacity));
1017
- padding: 16px;
1018
1017
  width: 100%;
1019
1018
  position: fixed;
1020
- z-index: 9999; }
1019
+ z-index: 9999;
1020
+ color: #000;
1021
+ -webkit-box-shadow: 0 1px 4px #b1b4b6;
1022
+ box-shadow: 0 1px 4px #b1b4b6; }
1021
1023
  .navbar img {
1022
1024
  display: inline-block;
1023
1025
  min-width: 78px;
@@ -1059,20 +1061,22 @@ img, video {
1059
1061
  -ms-flex-align: center;
1060
1062
  align-items: center;
1061
1063
  padding-top: 30px;
1062
- background-color: #fff; }
1064
+ background: -webkit-gradient(linear, left top, right bottom, from(#3765ca), to(#294a97));
1065
+ background: linear-gradient(to bottom right, #3765ca, #294a97);
1066
+ border-radius: 8px;
1067
+ margin: .2rem; }
1063
1068
  .profile-section img {
1064
1069
  width: 89px;
1065
1070
  height: 88px;
1066
1071
  margin: 0 auto 16px; }
1067
1072
  .profile-section .label-container .label-text {
1068
- color: #767676; }
1073
+ color: #eee; }
1069
1074
  .profile-section .label-container.name-Profile .label-text {
1070
1075
  letter-spacing: .6px;
1071
1076
  font-weight: 700;
1072
1077
  font-size: 18px;
1073
- color: #0b0c0c; }
1078
+ color: #fff; }
1074
1079
  .profile-section .profile-divider {
1075
- border-top: 1px solid #d6d5d4;
1076
1080
  margin-left: 20px;
1077
1081
  margin-right: 20px;
1078
1082
  width: 90%;
@@ -4676,16 +4680,7 @@ video::-webkit-media-controls-panel {
4676
4680
 
4677
4681
  @media (min-width: 780px) {
4678
4682
  .citizenAllServiceGrid {
4679
- display: flex-root !important;
4680
- display: grid;
4681
- grid-template-columns: repeat(2, minmax(0, 1fr));
4682
- grid-gap: 1rem;
4683
- gap: 1rem; }
4684
- .links {
4685
- display: grid;
4686
- grid-template-columns: repeat(4, minmax(0, 1fr));
4687
- grid-gap: 1px;
4688
- gap: 1px; }
4683
+ display: flex-root !important; }
4689
4684
  .CitizenHomeCard {
4690
4685
  padding: 16px !important;
4691
4686
  margin-right: 16px !important;
@@ -4704,6 +4699,186 @@ video::-webkit-media-controls-panel {
4704
4699
  .CitizenHomeCard .links a {
4705
4700
  padding-bottom: 16px; } }
4706
4701
 
4702
+ .wallet {
4703
+ --bg-color:#323c57;
4704
+ --bg-color-light:#94a8df;
4705
+ --text-color-hover:#fff;
4706
+ --box-shadow-color:rgba(206,178,252,0.48);
4707
+ -ms-flex-wrap: wrap;
4708
+ flex-wrap: wrap;
4709
+ grid-gap: 1rem;
4710
+ gap: 1rem;
4711
+ padding: 1rem; }
4712
+
4713
+ .cardService, .wallet {
4714
+ display: -webkit-box;
4715
+ display: -ms-flexbox;
4716
+ display: flex;
4717
+ -webkit-box-pack: center;
4718
+ -ms-flex-pack: center;
4719
+ justify-content: center; }
4720
+
4721
+ .cardService {
4722
+ width: 100%;
4723
+ max-width: 300px;
4724
+ height: 400px;
4725
+ aspect-ratio: 3/4;
4726
+ margin: 1rem;
4727
+ background: #fff;
4728
+ border-top-right-radius: 10px;
4729
+ overflow: hidden;
4730
+ -webkit-box-orient: vertical;
4731
+ -webkit-box-direction: normal;
4732
+ -ms-flex-direction: column;
4733
+ flex-direction: column;
4734
+ -webkit-box-align: center;
4735
+ -ms-flex-align: center;
4736
+ align-items: center;
4737
+ position: relative;
4738
+ -webkit-box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
4739
+ box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
4740
+ -webkit-transition: all .3s ease-out;
4741
+ transition: all .3s ease-out;
4742
+ text-decoration: none; }
4743
+
4744
+ .cardService:hover {
4745
+ -webkit-transform: translateY(-5px) scale(1.005) translateZ(0);
4746
+ transform: translateY(-5px) scale(1.005) translateZ(0);
4747
+ -webkit-box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color);
4748
+ box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color); }
4749
+
4750
+ .cardService:hover .overlayService {
4751
+ opacity: 1;
4752
+ -webkit-transform: scale(4) translateZ(0);
4753
+ transform: scale(4) translateZ(0); }
4754
+
4755
+ .cardService:hover .circleService {
4756
+ border-color: var(--bg-color-light);
4757
+ background: var(--bg-color); }
4758
+
4759
+ .cardService:hover .circleService:after {
4760
+ background: var(--bg-color-light); }
4761
+
4762
+ .cardService:hover p {
4763
+ color: var(--text-color-hover); }
4764
+
4765
+ .cardService p {
4766
+ font-size: 17px;
4767
+ color: #4c5656;
4768
+ margin-top: 30px;
4769
+ z-index: 1000;
4770
+ -webkit-transition: color .3s ease-out;
4771
+ transition: color .3s ease-out; }
4772
+
4773
+ .circleService {
4774
+ width: 131px;
4775
+ height: 131px;
4776
+ border-radius: 50%;
4777
+ background: #fff;
4778
+ border: 2px solid var(--bg-color);
4779
+ display: -webkit-box;
4780
+ display: -ms-flexbox;
4781
+ display: flex;
4782
+ -webkit-box-pack: center;
4783
+ -ms-flex-pack: center;
4784
+ justify-content: center;
4785
+ -webkit-box-align: center;
4786
+ -ms-flex-align: center;
4787
+ align-items: center;
4788
+ position: relative;
4789
+ z-index: 1;
4790
+ -webkit-transition: all .3s ease-out;
4791
+ transition: all .3s ease-out; }
4792
+
4793
+ .circleService:after {
4794
+ content: "";
4795
+ width: 118px;
4796
+ height: 118px;
4797
+ display: block;
4798
+ position: absolute;
4799
+ background: var(--bg-color);
4800
+ border-radius: 50%;
4801
+ top: 7px;
4802
+ left: 7px;
4803
+ -webkit-transition: opacity .3s ease-out;
4804
+ transition: opacity .3s ease-out; }
4805
+
4806
+ .circleService svg {
4807
+ z-index: 10000;
4808
+ -webkit-transform: translateZ(0);
4809
+ transform: translateZ(0); }
4810
+
4811
+ .overlayService {
4812
+ width: 120px;
4813
+ position: absolute;
4814
+ height: 118px;
4815
+ border-radius: 50%;
4816
+ background: var(--bg-color);
4817
+ top: 70px;
4818
+ left: 50px;
4819
+ z-index: 0;
4820
+ opacity: 0;
4821
+ -webkit-transition: -webkit-transform .3s ease-out;
4822
+ transition: -webkit-transform .3s ease-out;
4823
+ transition: transform .3s ease-out;
4824
+ transition: transform .3s ease-out, -webkit-transform .3s ease-out;
4825
+ transition: transform .3s ease-out,-webkit-transform .3s ease-out; }
4826
+
4827
+ @media (max-width: 1024px) {
4828
+ .cardService {
4829
+ width: 45%; } }
4830
+
4831
+ @media (max-width: 768px) {
4832
+ .cardService {
4833
+ width: 90%; }
4834
+ .overlayService {
4835
+ top: 60px;
4836
+ left: 40px; }
4837
+ .circleService {
4838
+ width: 100px;
4839
+ height: 100px; }
4840
+ .circleService:after {
4841
+ width: 88px;
4842
+ height: 88px;
4843
+ top: 6px;
4844
+ left: 6px; } }
4845
+
4846
+ .card-header {
4847
+ text-align: center;
4848
+ text-transform: uppercase;
4849
+ padding-bottom: 5px; }
4850
+
4851
+ .card-header h1 {
4852
+ position: relative;
4853
+ padding: 0;
4854
+ margin: 0;
4855
+ font-family: Raleway,sans-serif;
4856
+ font-weight: 300;
4857
+ font-size: 40px;
4858
+ color: #080808;
4859
+ -webkit-transition: all .4s ease 0s;
4860
+ transition: all .4s ease 0s; }
4861
+
4862
+ .card-header h1:before {
4863
+ width: 28px;
4864
+ height: 5px;
4865
+ position: absolute;
4866
+ bottom: 3px;
4867
+ margin-left: -14px; }
4868
+
4869
+ .card-header h1:after, .card-header h1:before {
4870
+ display: block;
4871
+ content: "";
4872
+ left: 50%;
4873
+ background-color: #b80000; }
4874
+
4875
+ .card-header h1:after {
4876
+ width: 100px;
4877
+ height: 1px;
4878
+ position: relative;
4879
+ margin-top: 25px;
4880
+ margin-left: -50px; }
4881
+
4707
4882
  .PropertySearchForm .pt-search-action {
4708
4883
  width: 100%;
4709
4884
  display: -webkit-box;
@@ -6626,7 +6801,6 @@ video::-webkit-media-controls-panel {
6626
6801
  display: -webkit-box;
6627
6802
  display: -ms-flexbox;
6628
6803
  display: flex;
6629
- float: right;
6630
6804
  display: flex; }
6631
6805
  .RightMostTopBarOptions .EventNotificationWrapper {
6632
6806
  position: relative;
@@ -6647,7 +6821,7 @@ video::-webkit-media-controls-panel {
6647
6821
  .RightMostTopBarOptions .select-wrap {
6648
6822
  margin-bottom: unset; }
6649
6823
  .RightMostTopBarOptions .select-wrap svg {
6650
- fill: #fff; }
6824
+ fill: #a82227; }
6651
6825
 
6652
6826
  .fullWidth {
6653
6827
  width: 100%; }
@@ -8786,15 +8960,15 @@ body {
8786
8960
 
8787
8961
  @media (min-width: 780px) {
8788
8962
  .SideBarStatic {
8789
- width: 219px;
8963
+ width: 250px;
8790
8964
  background: #fff;
8791
- margin-top: -24px; } }
8965
+ margin-top: -3px; } }
8792
8966
 
8793
8967
  @media (max-width: 780px) {
8794
8968
  .SideBarStatic {
8795
- width: 219px;
8969
+ width: 250px;
8796
8970
  background: #fff;
8797
- margin-top: -24px;
8971
+ margin-top: -3px;
8798
8972
  display: none; } }
8799
8973
 
8800
8974
  @media (min-width: 780px) {
@@ -10853,6 +11027,17 @@ body {
10853
11027
  grid-gap: 0;
10854
11028
  gap: 0; } }
10855
11029
 
11030
+ .search-icon {
11031
+ position: relative;
11032
+ z-index: 100;
11033
+ left: 160px;
11034
+ margin-top: -55px; }
11035
+ @media (min-width: 780px) {
11036
+ .search-icon {
11037
+ right: 35px;
11038
+ margin-top: -24px;
11039
+ left: auto; } }
11040
+
10856
11041
  .display-none {
10857
11042
  display: none; }
10858
11043