@pmidc/upyog-css 1.2.35 → 1.2.36
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 +58 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +3 -1
- package/src/index.scss +48 -0
package/dist/index.css
CHANGED
|
@@ -1642,6 +1642,7 @@ body {
|
|
|
1642
1642
|
margin-bottom: 8px;
|
|
1643
1643
|
margin-top: 8px;
|
|
1644
1644
|
font-weight: 700;
|
|
1645
|
+
text-transform: uppercase;
|
|
1645
1646
|
letter-spacing: .5px;
|
|
1646
1647
|
width: 100%; }
|
|
1647
1648
|
.card .card-label-error {
|
|
@@ -1737,6 +1738,7 @@ body {
|
|
|
1737
1738
|
color: #0f172a;
|
|
1738
1739
|
margin-bottom: 8px;
|
|
1739
1740
|
font-weight: 700;
|
|
1741
|
+
text-transform: uppercase;
|
|
1740
1742
|
letter-spacing: .5px; }
|
|
1741
1743
|
.employeeCard .card-label-error {
|
|
1742
1744
|
display: block;
|
|
@@ -21724,3 +21726,59 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21724
21726
|
text-align: left;
|
|
21725
21727
|
text-transform: uppercase;
|
|
21726
21728
|
letter-spacing: .4px; } }
|
|
21729
|
+
|
|
21730
|
+
.language-plugin {
|
|
21731
|
+
position: fixed;
|
|
21732
|
+
top: 16px;
|
|
21733
|
+
right: 20px;
|
|
21734
|
+
z-index: 99999;
|
|
21735
|
+
background: linear-gradient(135deg, #2563eb, #7c3aed);
|
|
21736
|
+
padding: 6px 10px;
|
|
21737
|
+
border-radius: 8px;
|
|
21738
|
+
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
|
21739
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
|
21740
|
+
display: -webkit-box;
|
|
21741
|
+
display: -ms-flexbox;
|
|
21742
|
+
display: flex;
|
|
21743
|
+
-webkit-box-align: center;
|
|
21744
|
+
-ms-flex-align: center;
|
|
21745
|
+
align-items: center; }
|
|
21746
|
+
|
|
21747
|
+
.language-plugin svg path {
|
|
21748
|
+
fill: #fff; }
|
|
21749
|
+
|
|
21750
|
+
.language-plugin:hover {
|
|
21751
|
+
-webkit-transform: translateY(-3px) scale(1.03);
|
|
21752
|
+
transform: translateY(-3px) scale(1.03);
|
|
21753
|
+
-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.5), 0 0 35px rgba(14, 165, 233, 0.4);
|
|
21754
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.5), 0 0 35px rgba(14, 165, 233, 0.4); }
|
|
21755
|
+
|
|
21756
|
+
.language-plugin-landing {
|
|
21757
|
+
position: fixed;
|
|
21758
|
+
top: 16px;
|
|
21759
|
+
right: 20px;
|
|
21760
|
+
z-index: 99999;
|
|
21761
|
+
background: #fff;
|
|
21762
|
+
padding: 6px 10px;
|
|
21763
|
+
border-radius: 8px;
|
|
21764
|
+
display: -webkit-box;
|
|
21765
|
+
display: -ms-flexbox;
|
|
21766
|
+
display: flex;
|
|
21767
|
+
-webkit-box-align: center;
|
|
21768
|
+
-ms-flex-align: center;
|
|
21769
|
+
align-items: center;
|
|
21770
|
+
backdrop-filter: blur(12px);
|
|
21771
|
+
-webkit-backdrop-filter: blur(12px);
|
|
21772
|
+
-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
|
|
21773
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
|
|
21774
|
+
-webkit-transition: all .3s ease;
|
|
21775
|
+
transition: all .3s ease; }
|
|
21776
|
+
|
|
21777
|
+
.language-plugin-landing:hover {
|
|
21778
|
+
-webkit-transform: translateY(-3px) scale(1.03);
|
|
21779
|
+
transform: translateY(-3px) scale(1.03);
|
|
21780
|
+
-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.5), 0 0 35px rgba(14, 165, 233, 0.4);
|
|
21781
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.5), 0 0 35px rgba(14, 165, 233, 0.4); }
|
|
21782
|
+
|
|
21783
|
+
.margin-right-50 {
|
|
21784
|
+
margin-right: 50px; }
|