@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.
- package/dist/index.css +4595 -2612
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +425 -0
- package/src/components/NewAccordianCitizen.scss +130 -0
- package/src/components/TimeLine.scss +29 -1
- package/src/components/body.scss +116 -2
- package/src/components/buttons.scss +9 -2
- package/src/components/card.scss +243 -98
- package/src/components/info-banner.scss +1 -1
- package/src/components/keynote.scss +2 -0
- package/src/components/map.scss +6 -0
- package/src/components/multiSelectDropdown.scss +21 -5
- package/src/components/navbar.scss +3 -10
- package/src/components/newFooter.scss +75 -0
- package/src/components/searchAction.scss +7 -0
- package/src/components/selectdropdown.scss +89 -18
- package/src/components/table.scss +325 -141
- package/src/components/textfields.scss +25 -17
- package/src/components/topbar.scss +169 -99
- package/src/index.scss +7 -1
- package/src/pages/citizen/CitizenLogin.scss +50 -0
- package/src/pages/citizen/DocumentList.scss +145 -1
- package/src/pages/citizen/HomePageWrapper.scss +61 -12
- package/src/pages/citizen/InboxCard.scss +327 -0
- package/src/pages/citizen/citizenDocument.scss +4 -0
- package/src/pages/citizen/citizenNewLogin.scss +266 -102
- package/src/pages/citizen/container.scss +10 -0
- package/src/pages/employee/dashboard.scss +1 -1
- package/src/pages/employee/dss.scss +2 -0
- package/src/pages/employee/header.scss +262 -0
- package/src/pages/employee/index.scss +60 -61
- 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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
-
.
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
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
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
74
|
-
|
|
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
|
-
.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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
|
-
.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
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
|
-
.
|
|
103
|
-
|
|
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
|
-
|
|
110
|
-
max-width: 540px;
|
|
208
|
+
width: 100%;
|
|
111
209
|
}
|
|
112
210
|
|
|
113
211
|
.input-wrapper .card-label {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
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
|
|
121
|
-
.input-wrapper.hide-submit-buttons
|
|
122
|
-
|
|
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
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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
|
-
|
|
134
|
-
|
|
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
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
248
|
+
font-size: 16px;
|
|
249
|
+
font-weight: 500;
|
|
250
|
+
color: #686677;
|
|
251
|
+
text-align: right;
|
|
252
|
+
}
|
|
142
253
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
254
|
+
.resendIn span {
|
|
255
|
+
color: #5b68f0;
|
|
146
256
|
}
|
|
147
257
|
|
|
148
258
|
.resend {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
259
|
+
text-align: right;
|
|
260
|
+
cursor: pointer;
|
|
261
|
+
font-weight: 700;
|
|
262
|
+
color: #5b68f0;
|
|
152
263
|
}
|
|
153
264
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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
|
}
|