@pmidc/upyog-css 1.1.5 → 1.1.6

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.
Files changed (33) hide show
  1. package/dist/index.css +4595 -2612
  2. package/dist/index.min.css +1 -1
  3. package/package.json +1 -1
  4. package/src/components/CardBasedOptions.scss +425 -0
  5. package/src/components/NewAccordianCitizen.scss +130 -0
  6. package/src/components/TimeLine.scss +29 -1
  7. package/src/components/body.scss +116 -2
  8. package/src/components/buttons.scss +9 -2
  9. package/src/components/card.scss +243 -98
  10. package/src/components/info-banner.scss +1 -1
  11. package/src/components/keynote.scss +2 -0
  12. package/src/components/map.scss +6 -0
  13. package/src/components/multiSelectDropdown.scss +21 -5
  14. package/src/components/navbar.scss +3 -10
  15. package/src/components/newFooter.scss +75 -0
  16. package/src/components/searchAction.scss +7 -0
  17. package/src/components/selectdropdown.scss +89 -18
  18. package/src/components/table.scss +325 -141
  19. package/src/components/textfields.scss +25 -17
  20. package/src/components/topbar.scss +169 -99
  21. package/src/index.scss +7 -1
  22. package/src/pages/citizen/CitizenLogin.scss +50 -0
  23. package/src/pages/citizen/DocumentList.scss +145 -1
  24. package/src/pages/citizen/HomePageWrapper.scss +61 -12
  25. package/src/pages/citizen/InboxCard.scss +327 -0
  26. package/src/pages/citizen/citizenDocument.scss +4 -0
  27. package/src/pages/citizen/citizenNewLogin.scss +266 -102
  28. package/src/pages/citizen/container.scss +10 -0
  29. package/src/pages/employee/dashboard.scss +1 -1
  30. package/src/pages/employee/dss.scss +2 -0
  31. package/src/pages/employee/header.scss +262 -0
  32. package/src/pages/employee/index.scss +60 -61
  33. package/src/pages/employee/login.scss +188 -530
@@ -1,33 +1,144 @@
1
+ /* Main Container - Full height viewport */
2
+ .login-page-cover {
3
+ width: 100%;
4
+ height: 90vh;
5
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ /* Removed overflow: hidden to prevent scrolling issues */
10
+ }
11
+
12
+ /* Container - Full height split layout */
1
13
  .login-container {
2
- width: 100%;
3
- display: flex;
4
- align-items: center;
5
- justify-content: center;
6
- height: 100vh;
14
+ width: 100%;
15
+ height: 100vh;
16
+ max-width: 100%;
17
+ display: flex;
18
+ background-color: #ffffff;
19
+ overflow: hidden;
7
20
  }
8
21
 
9
- .login-page-cover {
10
- background: linear-gradient(0deg, rgba(41, 71, 163, 0.9), rgba(41, 71, 163, 0.9)),
11
- url("https://sdc-uat.lgpunjab.gov.in/filestore/v1/files/viewfile/?name=pb%2Fproperty-upload%2FOctober%2F16%2F1760620815250vZVIeEsyde.jpeg");
12
- background-size: cover;
13
- background-position: center;
14
- height: 100vh;
15
- width: 100%;
22
+ /* Left Panel - Hero Section takes full height */
23
+ .login-hero-panel {
24
+ flex: 1;
25
+ background: linear-gradient(135deg, #5b68f0 0%, #7b5fc7 100%);
26
+ color: white;
27
+ padding: 60px 50px;
28
+ display: flex;
29
+ flex-direction: column;
30
+ align-items: center;
31
+ justify-content: center;
32
+ overflow-y: auto;
33
+ }
34
+
35
+ .hero-content {
36
+ max-width: 500px;
37
+ text-align: center;
38
+ }
39
+
40
+ .hero-icon-circle {
41
+ width: 100px;
42
+ height: 100px;
43
+ border-radius: 50%;
44
+ background-color: rgba(255, 255, 255, 0.2);
45
+ border: 3px solid rgba(255, 255, 255, 0.3);
46
+ display: flex;
47
+ align-items: center;
48
+ justify-content: center;
49
+ margin: 0 auto 30px;
50
+ backdrop-filter: blur(10px);
51
+ }
52
+
53
+ .hero-icon-circle svg {
54
+ width: 50px;
55
+ height: 50px;
56
+ color: white;
57
+ }
58
+
59
+ .hero-title {
60
+ font-size: 2.5rem;
61
+ font-weight: 700;
62
+ margin-bottom: 20px;
63
+ line-height: 1.2;
64
+ }
65
+
66
+ .hero-description {
67
+ font-size: 1.125rem;
68
+ line-height: 1.6;
69
+ margin-bottom: 50px;
70
+ opacity: 0.95;
71
+ }
72
+
73
+ .hero-features {
74
+ display: flex;
75
+ justify-content: space-around;
76
+ gap: 30px;
77
+ margin-top: 40px;
78
+ }
79
+
80
+ .feature-item {
81
+ display: flex;
82
+ flex-direction: column;
83
+ align-items: center;
84
+ gap: 12px;
85
+ }
86
+
87
+ .feature-icon {
88
+ width: 70px;
89
+ height: 70px;
90
+ border-radius: 50%;
91
+ background-color: rgba(255, 255, 255, 0.15);
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ border: 2px solid rgba(255, 255, 255, 0.2);
96
+ transition: all 0.3s ease;
97
+ }
98
+
99
+ .feature-icon:hover {
100
+ background-color: rgba(255, 255, 255, 0.25);
101
+ transform: translateY(-5px);
16
102
  }
17
103
 
104
+ .feature-icon svg {
105
+ color: white;
106
+ }
107
+
108
+ .feature-text {
109
+ font-size: 0.95rem;
110
+ font-weight: 500;
111
+ text-align: center;
112
+ }
113
+
114
+ /* Right Panel - Login Form with scrollable content */
115
+ .login-form-panel {
116
+ flex: 1;
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: center;
120
+ background-color: #f5f5f5;
121
+ overflow-y: auto;
122
+ padding: 20px;
123
+ }
124
+
125
+ /* Login Wrapper - Matches reference image design */
18
126
  .login-wrapper {
127
+ width: 100%;
128
+ max-width: 480px;
129
+ background-color: #ffffff;
130
+ padding: 40px;
131
+ border-radius: 12px;
132
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
133
+ }
134
+
135
+ .login-form-header {
136
+ margin-bottom: 30px;
19
137
  display: flex;
20
138
  flex-direction: column;
21
139
  justify-content: center;
22
140
  align-items: flex-start;
23
- background-color: rgba(255, 255, 255, 1);
24
- margin: 8px;
25
- padding: 2rem;
26
- box-shadow: 0 0 5px 0 rgba(34, 34, 34, 0.43922);
27
141
  border-radius: 4px;
28
- width: 35%;
29
- max-width: 100vw;
30
- height: 750px;
31
142
  position: relative;
32
143
  }
33
144
  .register-login-wrapper {
@@ -45,129 +156,182 @@
45
156
  height: 900px;
46
157
  position: relative;
47
158
  }
159
+
48
160
  .login-title {
49
- width: 100%;
50
- max-width: 525px;
51
- font-size: 2.5rem;
52
- color: #0b0c0c;
53
- font-weight: 600;
54
- text-align: center;
55
- padding: 2rem 0rem;
161
+ font-size: 2rem;
162
+ font-weight: 700;
163
+ color: #0b0c0c;
164
+ margin-bottom: 8px;
56
165
  }
57
166
 
58
- .lag-loc-wrapper {
59
- display: flex;
60
- justify-content: center;
61
- width: 100%;
62
- max-width: 540px;
63
- gap: 30px;
167
+ .login-subtitle {
168
+ font-size: 0.95rem;
169
+ color: #686677;
170
+ margin: 0;
64
171
  }
65
172
 
66
- .location-wrapper {
67
- display: flex;
68
- flex-direction: column;
69
- gap: 8px;
70
- width: 100%;
173
+ /* Form Elements */
174
+ .label {
175
+ font-weight: 500;
176
+ font-size: 16px;
177
+ line-height: 25px;
178
+ color: #686677;
179
+ display: block;
180
+ margin-bottom: 8px;
71
181
  }
72
182
 
73
- /* The inner select div */
74
- .location-wrapper .select {
75
- display: flex;
76
- align-items: center;
77
- border: 1px solid #b4b4b4 !important;
78
- background-color: rgba(255, 255, 255, var(--bg-opacity));
79
- border-radius: 8px;
183
+ .label span {
184
+ color: #ff1515;
80
185
  }
81
186
 
82
- .location-wrapper .select-active {
83
- border-radius: 8px !important;
84
- }
85
-
86
- .language-wrapper {
87
- width: 100%;
88
- max-width: 260px;
187
+ .language-wrapper,
188
+ .location-wrapper,
189
+ .input-wrapper {
190
+ margin-bottom: 24px;
191
+ width: 100%;
89
192
  }
90
193
 
91
- .label {
92
- font-weight: 500;
93
- font-size: 16px;
94
- line-height: 25px;
95
- color: #686677;
96
-
97
- span {
98
- color: #ff1515;
99
- }
194
+ .location-wrapper .select {
195
+ display: flex;
196
+ align-items: center;
197
+ border: 1px solid #b4b4b4 !important;
198
+ background-color: rgba(255, 255, 255, var(--bg-opacity));
199
+ border-radius: 8px;
100
200
  }
101
201
 
102
- .input-wrapper {
103
- width: 100%;
104
- max-width: 540px;
202
+ .location-wrapper .select-active {
203
+ border-radius: 8px !important;
105
204
  }
106
205
 
107
206
  .input-wrapper .submit-bar,
108
207
  .input-wrapper .submit-bar-disabled {
109
- width: 100%;
110
- max-width: 540px;
208
+ width: 100%;
111
209
  }
112
210
 
113
211
  .input-wrapper .card-label {
114
- font-weight: 500 !important;
115
- font-size: 16px !important;
116
- line-height: 25px !important;
117
- color: #686677 !important;
212
+ font-weight: 500 !important;
213
+ font-size: 16px !important;
214
+ line-height: 25px !important;
215
+ color: #686677 !important;
118
216
  }
119
217
 
120
- .input-wrapper.hide-submit-buttons+.submit-bar,
121
- .input-wrapper.hide-submit-buttons+.submit-bar-disabled {
122
- display: none !important;
218
+ .input-wrapper.hide-submit-buttons + .submit-bar,
219
+ .input-wrapper.hide-submit-buttons + .submit-bar-disabled {
220
+ display: none !important;
123
221
  }
124
222
 
223
+ /* Account Link */
125
224
  .account-link {
126
- font-size: 16px;
127
- font-weight: 400;
128
- line-height: 25px;
129
- text-align: center;
225
+ font-size: 16px;
226
+ font-weight: 400;
227
+ line-height: 25px;
228
+ text-align: center;
229
+ margin-top: 24px;
230
+ color: #0b0c0c;
130
231
  }
131
232
 
132
233
  .link {
133
- color: #1778ff;
134
- text-decoration: underline;
234
+ color: #5b68f0;
235
+ text-decoration: none;
236
+ cursor: pointer;
237
+ font-weight: 500;
238
+ transition: color 0.2s ease;
239
+ }
240
+
241
+ .link:hover {
242
+ color: #7b5fc7;
243
+ text-decoration: underline;
135
244
  }
136
245
 
246
+ /* OTP Section */
137
247
  .resendIn {
138
- font-size: 16px;
139
- font-weight: 500;
140
- color: #686677;
141
- text-align: right;
248
+ font-size: 16px;
249
+ font-weight: 500;
250
+ color: #686677;
251
+ text-align: right;
252
+ }
142
253
 
143
- span {
144
- color: #1778ff;
145
- }
254
+ .resendIn span {
255
+ color: #5b68f0;
146
256
  }
147
257
 
148
258
  .resend {
149
- text-align: right;
150
- cursor: pointer;
151
- font-weight: 700;
259
+ text-align: right;
260
+ cursor: pointer;
261
+ font-weight: 700;
262
+ color: #5b68f0;
152
263
  }
153
264
 
154
- .login-circle {
155
- width: 75px;
156
- height: 75px;
157
- border-radius: 50%;
158
- background-color: #2947a3;
159
- display: flex;
160
- align-items: center;
161
- justify-content: center;
162
- color: white;
163
- font-size: 24px;
164
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
165
- cursor: pointer;
166
- position: absolute;
167
- top: -30px;
265
+ /* Register Login Wrapper - For registration page with same left panel */
266
+ .register-login-wrapper {
267
+ width: 100%;
268
+ max-width: 480px;
269
+ background-color: #ffffff;
270
+ padding: 40px;
271
+ border-radius: 12px;
272
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
273
+ }
274
+
275
+ /* Responsive Design - Hide left panel on tablets and mobile */
276
+ @media (max-width: 1024px) {
277
+ .login-hero-panel {
278
+ display: none;
279
+ }
280
+
281
+ .login-container {
282
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
283
+ }
284
+
285
+ .login-form-panel {
286
+ background: transparent;
287
+ }
288
+
289
+ .login-wrapper,
290
+ .register-login-wrapper {
291
+ box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
292
+ }
168
293
  }
169
294
 
170
295
  @media (max-width: 768px) {
296
+ .login-wrapper,
297
+ .register-login-wrapper {
298
+ padding: 30px 24px;
299
+ max-width: 95%;
300
+ }
301
+
302
+ .login-title {
303
+ font-size: 1.75rem;
304
+ }
305
+
306
+ .login-subtitle {
307
+ font-size: 0.875rem;
308
+ }
309
+ }
310
+
311
+ @media (max-width: 480px) {
312
+ .login-wrapper,
313
+ .register-login-wrapper {
314
+ padding: 24px 20px;
315
+ }
316
+
317
+ .login-title {
318
+ font-size: 1.5rem;
319
+ }
320
+
321
+ .login-form-header {
322
+ margin-bottom: 24px;
323
+ }
324
+
325
+ .language-wrapper,
326
+ .location-wrapper,
327
+ .input-wrapper {
328
+ margin-bottom: 20px;
329
+ }
330
+
331
+ .label,
332
+ .account-link {
333
+ font-size: 14px;
334
+ }
171
335
  .lag-loc-wrapper {
172
336
  flex-direction: column;
173
337
  gap: 0px;
@@ -20,4 +20,14 @@
20
20
  .font-Weigth-bold {
21
21
  font-weight: 600 !important;
22
22
  margin-top: 20px !important;
23
+ }
24
+
25
+ .obps-citizen-search-header{
26
+ background:#ffffff;
27
+ padding: 20px 0px;
28
+ color: #00000099;
29
+ padding: 10px;
30
+ }
31
+ .obps-citizen-card-paragraph{
32
+ text-align: center;
23
33
  }
@@ -133,7 +133,7 @@
133
133
 
134
134
  .employee-dashboard-quick-services-title {
135
135
  color: "#000";
136
- font-family: "Manrope";
136
+
137
137
  font-weight: 700;
138
138
  font-size: 20px;
139
139
  line-height: 27.32px;
@@ -69,6 +69,8 @@ padding: 8px 24px;
69
69
 
70
70
  .dss-white-pre{
71
71
  white-space: pre;
72
+ float: right;
73
+ margin-top: 20px;
72
74
 
73
75
  }
74
76
  .dss-white-pre-line{