@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/package.json
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
margin-bottom: 8px;
|
|
83
83
|
margin-top: 8px;
|
|
84
84
|
font-weight: 700;
|
|
85
|
+
text-transform: uppercase;
|
|
85
86
|
letter-spacing: 0.5px;
|
|
86
87
|
width: 100%;
|
|
87
88
|
}
|
|
@@ -203,7 +204,8 @@
|
|
|
203
204
|
font-size: 16px;
|
|
204
205
|
color: #0f172a;
|
|
205
206
|
margin-bottom: 8px;
|
|
206
|
-
font-weight: 700;
|
|
207
|
+
font-weight: 700;
|
|
208
|
+
text-transform: uppercase;
|
|
207
209
|
letter-spacing: 0.5px;
|
|
208
210
|
}
|
|
209
211
|
|
package/src/index.scss
CHANGED
|
@@ -145,6 +145,7 @@
|
|
|
145
145
|
.display-none {
|
|
146
146
|
display: none;
|
|
147
147
|
}
|
|
148
|
+
|
|
148
149
|
.primary-label-btn {
|
|
149
150
|
margin: 10px auto 0px !important;
|
|
150
151
|
}
|
|
@@ -2266,3 +2267,50 @@ input[type="date"] {
|
|
|
2266
2267
|
}
|
|
2267
2268
|
}
|
|
2268
2269
|
}
|
|
2270
|
+
.language-plugin{
|
|
2271
|
+
position: fixed;
|
|
2272
|
+
top: 16px;
|
|
2273
|
+
right: 20px;
|
|
2274
|
+
z-index: 99999;
|
|
2275
|
+
background: linear-gradient(135deg, rgb(37, 99, 235), rgb(124, 58, 237));
|
|
2276
|
+
padding: 6px 10px;
|
|
2277
|
+
border-radius:8px;
|
|
2278
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
|
2279
|
+
display: flex;
|
|
2280
|
+
align-items: center;
|
|
2281
|
+
}
|
|
2282
|
+
.language-plugin svg path{
|
|
2283
|
+
fill: #FFF;
|
|
2284
|
+
}
|
|
2285
|
+
.language-plugin:hover{
|
|
2286
|
+
transform: translateY(-3px) scale(1.03);
|
|
2287
|
+
box-shadow:
|
|
2288
|
+
0 10px 20px rgba(0, 0, 0, 0.25),
|
|
2289
|
+
0 0 20px rgba(59, 130, 246, 0.5),
|
|
2290
|
+
0 0 35px rgba(14, 165, 233, 0.4);
|
|
2291
|
+
}
|
|
2292
|
+
.language-plugin-landing{
|
|
2293
|
+
position: fixed;
|
|
2294
|
+
top: 16px;
|
|
2295
|
+
right: 20px;
|
|
2296
|
+
z-index: 99999;
|
|
2297
|
+
background: #FFF;
|
|
2298
|
+
padding: 6px 10px;
|
|
2299
|
+
border-radius:8px;
|
|
2300
|
+
display: flex;
|
|
2301
|
+
align-items: center;
|
|
2302
|
+
backdrop-filter: blur(12px);
|
|
2303
|
+
-webkit-backdrop-filter: blur(12px);
|
|
2304
|
+
box-shadow:0 8px 32px rgba(0, 0, 0, 0.2);
|
|
2305
|
+
transition: all 0.3s ease;
|
|
2306
|
+
}
|
|
2307
|
+
.language-plugin-landing:hover{
|
|
2308
|
+
transform: translateY(-3px) scale(1.03);
|
|
2309
|
+
box-shadow:
|
|
2310
|
+
0 10px 20px rgba(0, 0, 0, 0.25),
|
|
2311
|
+
0 0 20px rgba(59, 130, 246, 0.5),
|
|
2312
|
+
0 0 35px rgba(14, 165, 233, 0.4);
|
|
2313
|
+
}
|
|
2314
|
+
.margin-right-50{
|
|
2315
|
+
margin-right: 50px;
|
|
2316
|
+
}
|