@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,595 +1,253 @@
|
|
|
1
|
+
/* Employee Login - Centered Design */
|
|
1
2
|
|
|
2
|
-
.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
padding-top: 14px;
|
|
12
|
-
padding-bottom: 14px;
|
|
13
|
-
padding-left: 32px;
|
|
14
|
-
padding-right: 32px;
|
|
15
|
-
}
|
|
16
|
-
.employeeCard
|
|
17
|
-
.submit-bar .submit-bar header
|
|
18
|
-
{
|
|
19
|
-
line-height: 2rem !important;
|
|
20
|
-
font-size: 16px;
|
|
21
|
-
background-color: #2947A3;
|
|
22
|
-
border-radius: 8px;
|
|
23
|
-
align-content: center;
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
.employeeCard{
|
|
29
|
-
width:100% !important;
|
|
30
|
-
}
|
|
31
|
-
.banner .bannerCard{
|
|
32
|
-
min-width: 420px !important;
|
|
33
|
-
background-color: transparent;
|
|
34
|
-
}
|
|
35
|
-
.employeeForgotPassword .employeeCard .field .field-container .component-in-front {
|
|
36
|
-
border: 1px solid;
|
|
37
|
-
border-right: none;
|
|
38
|
-
height: 32px !important;
|
|
39
|
-
margin-top: -16px !important;
|
|
40
|
-
z-index: 999;
|
|
41
|
-
background-color:#ffffffeb;
|
|
3
|
+
.employee-login-page {
|
|
4
|
+
min-height: 90vh;
|
|
5
|
+
width: 100%;
|
|
6
|
+
background: linear-gradient(180deg, #e8eaf6 0%, #f5f5f5 100%);
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
padding: 20px;
|
|
42
11
|
}
|
|
43
|
-
@screen dt {
|
|
44
|
-
.employeeForgotPassword .employeeCard .field .field-container .component-in-front {
|
|
45
|
-
|
|
46
|
-
border-right: none;
|
|
47
|
-
height: 32px !important;
|
|
48
|
-
margin-top: -16px !important;
|
|
49
|
-
z-index: 999;
|
|
50
|
-
background-color: #ffffffeb;
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
.loginFormStyleEmployee .employeeCard, .banner .bannerCard{
|
|
54
|
-
min-width: 270px !important;
|
|
55
|
-
|
|
56
|
-
background-color: #ffffffff !important;
|
|
57
|
-
|
|
58
|
-
|
|
59
12
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
13
|
+
.employee-login-container {
|
|
14
|
+
width: 100%;
|
|
15
|
+
max-width: 480px;
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
min-height: 100vh;
|
|
21
|
+
padding: 40px 0;
|
|
67
22
|
}
|
|
68
23
|
|
|
69
|
-
.
|
|
70
|
-
|
|
71
|
-
|
|
24
|
+
.employee-login-content {
|
|
25
|
+
width: 100%;
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
align-items: center;
|
|
72
29
|
}
|
|
73
30
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
31
|
+
/* Icon Circle at Top */
|
|
32
|
+
.employee-login-icon-circle {
|
|
33
|
+
width: 80px;
|
|
34
|
+
height: 80px;
|
|
35
|
+
border-radius: 50%;
|
|
36
|
+
background: linear-gradient(135deg, #5243e9 0%, #7c6fff 100%);
|
|
37
|
+
display: flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
justify-content: center;
|
|
40
|
+
color: white;
|
|
41
|
+
font-size: 36px;
|
|
42
|
+
box-shadow: 0 4px 12px rgba(82, 67, 233, 0.3);
|
|
43
|
+
margin-bottom: 24px;
|
|
85
44
|
}
|
|
86
|
-
|
|
87
|
-
|
|
45
|
+
|
|
46
|
+
.employee-login-icon-circle svg {
|
|
47
|
+
width: 40px;
|
|
48
|
+
height: 40px;
|
|
49
|
+
fill: white;
|
|
88
50
|
}
|
|
89
|
-
|
|
51
|
+
|
|
52
|
+
/* UPYOG Branding */
|
|
53
|
+
.employee-login-branding {
|
|
90
54
|
text-align: center;
|
|
55
|
+
margin-bottom: 32px;
|
|
91
56
|
}
|
|
92
|
-
.submit-bar {
|
|
93
|
-
.submit-bar {
|
|
94
|
-
@apply w-full;
|
|
95
|
-
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
.loginFormStyleEmployee .bannerHeader p,
|
|
99
|
-
.employeeForgotPassword .bannerHeader p,
|
|
100
|
-
.employeeChangePassword .bannerHeader p {
|
|
101
|
-
font-size: 19px;
|
|
102
|
-
}
|
|
103
|
-
.employeeCard .card-sub-header {
|
|
104
|
-
font-size: 24px;
|
|
105
|
-
}
|
|
106
|
-
.loginFormStyleEmployee .employeeCard .card-label, .employeeForgotPassword .employeeCard .card-label{
|
|
107
|
-
font-weight: 400 !important;
|
|
108
|
-
font-size: 16px !important;
|
|
109
|
-
line-height: 21px !important;
|
|
110
|
-
color: #232323;
|
|
111
|
-
z-index: 10 !important;
|
|
112
|
-
font-family: "Roboto", serif;;
|
|
113
|
-
|
|
114
57
|
|
|
115
|
-
|
|
116
|
-
|
|
58
|
+
.employee-upyog-title {
|
|
59
|
+
font-size: 32px;
|
|
60
|
+
font-weight: 700;
|
|
61
|
+
color: #0b0c0c;
|
|
62
|
+
margin: 0 0 4px 0;
|
|
63
|
+
letter-spacing: 0.5px;
|
|
117
64
|
}
|
|
118
65
|
|
|
119
|
-
.
|
|
120
|
-
font-weight: 400;
|
|
66
|
+
.employee-upyog-subtitle {
|
|
121
67
|
font-size: 16px;
|
|
122
|
-
|
|
123
|
-
color: #
|
|
124
|
-
|
|
68
|
+
font-weight: 400;
|
|
69
|
+
color: #686677;
|
|
70
|
+
margin: 0;
|
|
125
71
|
}
|
|
126
|
-
|
|
127
|
-
|
|
72
|
+
|
|
73
|
+
/* Login Card */
|
|
74
|
+
.employee-login-card {
|
|
75
|
+
padding: 20px;
|
|
76
|
+
width: 650px;
|
|
77
|
+
overflow: visible;
|
|
78
|
+
position: relative;
|
|
79
|
+
z-index: 1;
|
|
128
80
|
}
|
|
129
|
-
.loginFormStyleEmployee .primary-label-btn{
|
|
130
|
-
font-size: 12px;
|
|
131
81
|
|
|
82
|
+
/* Form Styles */
|
|
83
|
+
.employee-login-form {
|
|
84
|
+
width: 100%;
|
|
132
85
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
font-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
86
|
+
|
|
87
|
+
.employee-login-form .card-label {
|
|
88
|
+
font-weight: 500 !important;
|
|
89
|
+
font-size: 14px !important;
|
|
90
|
+
line-height: 20px !important;
|
|
91
|
+
color: #5c5c5c !important;
|
|
92
|
+
margin-bottom: 8px !important;
|
|
139
93
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
color: #505a5f;
|
|
94
|
+
|
|
95
|
+
.employee-login-form .card-label span {
|
|
96
|
+
color: #d73c3c;
|
|
144
97
|
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
font-size: 16px !important;
|
|
148
|
-
line-height: 21.7px !important;
|
|
149
|
-
color: #232323;
|
|
150
|
-
font-family: "Noto Sans";
|
|
98
|
+
|
|
99
|
+
.employee-login-form input {
|
|
151
100
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
margin-top: 7px;
|
|
156
|
-
}
|
|
157
|
-
.employeeCard .card-sub-header {
|
|
158
|
-
font-size: 18px;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
.employeeChangePassword .employeeCard .card-text-button {
|
|
162
|
-
text-align: center !important;
|
|
163
|
-
margin-bottom: 12px !important;
|
|
164
|
-
}
|
|
165
|
-
.employeeChangePassword .employeeCard .input-otp-wrap {
|
|
166
|
-
margin-bottom: 10px;
|
|
167
|
-
}
|
|
168
|
-
.employee .loginContainer {
|
|
169
|
-
padding-top: 0px !important;
|
|
170
|
-
}
|
|
171
|
-
.banner {
|
|
172
|
-
height: calc(100vh ) !important;
|
|
101
|
+
outline: none;
|
|
102
|
+
border-color: #5243e9;
|
|
103
|
+
transition: all 0.2s ease;
|
|
173
104
|
}
|
|
174
105
|
|
|
175
|
-
.
|
|
176
|
-
|
|
106
|
+
.employee-login-form input:focus {
|
|
107
|
+
outline: none;
|
|
108
|
+
border-color: #5243e9;
|
|
109
|
+
|
|
177
110
|
}
|
|
178
|
-
|
|
179
|
-
{
|
|
180
|
-
|
|
111
|
+
|
|
112
|
+
.employee-city-dropdown {
|
|
113
|
+
width: 100%;
|
|
114
|
+
border: 1px solid #d0d0d0 !important;
|
|
115
|
+
border-radius: 8px !important;
|
|
116
|
+
padding: 12px 16px !important;
|
|
117
|
+
background: white !important;
|
|
118
|
+
font-size: 16px !important;
|
|
181
119
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
120
|
+
|
|
121
|
+
.employee-city-dropdown:focus {
|
|
122
|
+
border-color: #5243e9 !important;
|
|
123
|
+
box-shadow: 0 0 0 3px rgba(82, 67, 233, 0.1) !important;
|
|
186
124
|
}
|
|
187
|
-
@media screen and (max-width : 768px){
|
|
188
|
-
.employeeForgotPassword .employeeCard .employee-card-sub-header, .employeeChangePassword .employeeCard .employee-card-sub-header, .loginFormStyleEmployee .employeeCard .employee-card-sub-header{
|
|
189
|
-
font-size: 18px !important;
|
|
190
|
-
line-height: 21px !important;
|
|
191
|
-
margin-bottom: 0px !important;
|
|
192
|
-
z-index: 10 !important;
|
|
193
|
-
}
|
|
194
|
-
.loginFormStyleEmployee .employeeCard, .banner .bannerCard{
|
|
195
|
-
min-width: 270px !important;
|
|
196
|
-
z-index: 10 !important;
|
|
197
|
-
background-color: #ffffffff !important;
|
|
198
|
-
margin-top: 0 !important;
|
|
199
125
|
|
|
126
|
+
/* Button Styling */
|
|
127
|
+
.employee-login-form button[type="submit"] {
|
|
128
|
+
margin-top: 24px !important;
|
|
129
|
+
font-size: 16px !important;
|
|
130
|
+
font-weight: 600 !important;
|
|
131
|
+
transition: all 0.2s ease !important;
|
|
132
|
+
}
|
|
200
133
|
|
|
201
|
-
|
|
134
|
+
.employee-login-form button[type="submit"]:hover {
|
|
135
|
+
background-color: #3e33c4 !important;
|
|
136
|
+
transform: translateY(-1px);
|
|
137
|
+
box-shadow: 0 4px 12px rgba(82, 67, 233, 0.3) !important;
|
|
138
|
+
}
|
|
202
139
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
max-width: 250px !important;
|
|
206
|
-
min-width: 250px !important;
|
|
207
|
-
margin-top: -50% !important;
|
|
208
|
-
background-color: #ffffffeb;
|
|
209
|
-
}
|
|
140
|
+
.employee-login-form button[type="submit"]:active {
|
|
141
|
+
transform: translateY(0);
|
|
210
142
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
143
|
+
|
|
144
|
+
/* Secondary Button (Forgot Password) */
|
|
145
|
+
.employee-login-form .secondary-label {
|
|
146
|
+
margin-top: 16px !important;
|
|
147
|
+
color: #5243e9 !important;
|
|
148
|
+
font-size: 14px !important;
|
|
149
|
+
font-weight: 500 !important;
|
|
150
|
+
text-align: center !important;
|
|
151
|
+
cursor: pointer !important;
|
|
152
|
+
text-decoration: underline !important;
|
|
214
153
|
}
|
|
215
|
-
|
|
216
|
-
|
|
154
|
+
|
|
155
|
+
.employee-login-form .secondary-label:hover {
|
|
156
|
+
color: #3e33c4 !important;
|
|
217
157
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
158
|
+
|
|
159
|
+
/* Footer */
|
|
160
|
+
.employee-login-footer {
|
|
161
|
+
font-size: 14px;
|
|
162
|
+
font-weight: 400;
|
|
163
|
+
color: #686677;
|
|
164
|
+
text-align: center;
|
|
165
|
+
margin-top: 16px;
|
|
224
166
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
}
|
|
167
|
+
|
|
168
|
+
.employee-login-footer span {
|
|
169
|
+
color: #686677;
|
|
229
170
|
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
margin-left: 418px;
|
|
235
|
-
height: 400px;
|
|
236
|
-
width: 400px;
|
|
237
|
-
padding-top: 56px;
|
|
238
|
-
padding-bottom: 56px;
|
|
239
|
-
padding-left: 48px;
|
|
240
|
-
padding-right: 48px;
|
|
241
|
-
border-radius: 8px;
|
|
171
|
+
|
|
172
|
+
.employee-login-footer a {
|
|
173
|
+
color: #5243e9;
|
|
174
|
+
text-decoration: none;
|
|
242
175
|
}
|
|
243
176
|
|
|
244
|
-
.
|
|
245
|
-
|
|
246
|
-
margin: 0px;
|
|
247
|
-
padding: 2rem;
|
|
177
|
+
.employee-login-footer a:hover {
|
|
178
|
+
text-decoration: underline;
|
|
248
179
|
}
|
|
249
180
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
left: 20px;
|
|
256
|
-
}
|
|
257
|
-
.banner{
|
|
258
|
-
padding-bottom: 40px;
|
|
259
|
-
height: 100vh !important;
|
|
260
|
-
z-index: 1;
|
|
261
|
-
}
|
|
262
|
-
.topbar{
|
|
263
|
-
background: white;
|
|
264
|
-
}
|
|
265
|
-
.employee .loginContainer{
|
|
266
|
-
padding-top: 0px !important;
|
|
181
|
+
/* Responsive Design */
|
|
182
|
+
@media (max-width: 768px) {
|
|
183
|
+
.employee-login-container {
|
|
184
|
+
max-width: 100%;
|
|
185
|
+
padding: 20px 0;
|
|
267
186
|
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
.options-card{
|
|
273
|
-
max-height: 160px;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
.banner .upyog-copyright-footer
|
|
277
|
-
{
|
|
278
|
-
display: none;
|
|
279
|
-
}
|
|
280
|
-
.banner .upyog-copyright-footer-web
|
|
281
|
-
{
|
|
282
|
-
display: block;
|
|
187
|
+
|
|
188
|
+
.employee-login-card {
|
|
189
|
+
padding: 32px 24px;
|
|
190
|
+
border-radius: 8px;
|
|
283
191
|
}
|
|
284
|
-
}
|
|
285
|
-
@media screen and (max-width:900px) {
|
|
286
192
|
|
|
287
|
-
.
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
z-index: 2;
|
|
193
|
+
.employee-login-icon-circle {
|
|
194
|
+
width: 70px;
|
|
195
|
+
height: 70px;
|
|
196
|
+
margin-bottom: 20px;
|
|
292
197
|
}
|
|
293
|
-
|
|
294
|
-
|
|
198
|
+
|
|
199
|
+
.employee-upyog-title {
|
|
200
|
+
font-size: 28px;
|
|
295
201
|
}
|
|
296
|
-
|
|
202
|
+
|
|
203
|
+
.employee-upyog-subtitle {
|
|
297
204
|
font-size: 14px;
|
|
298
205
|
}
|
|
299
|
-
.loginFormStyleEmployee, .employeeForgotPassword{
|
|
300
|
-
margin-top: -30% !important;
|
|
301
|
-
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
.employeeForgotPassword{
|
|
305
|
-
z-index: 2;
|
|
306
|
-
}
|
|
307
206
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
margin-top: -288px;
|
|
311
|
-
background-color: #FFFFFF;
|
|
312
|
-
}
|
|
313
|
-
.appbar {
|
|
314
|
-
display: flex;
|
|
315
|
-
width: 100%;
|
|
316
|
-
background-color: #294a97;
|
|
317
|
-
overflow: none;
|
|
318
|
-
box-sizing: border-box;
|
|
319
|
-
}
|
|
320
|
-
.appbar-container {
|
|
321
|
-
display: flex;
|
|
322
|
-
width: 1300px;
|
|
323
|
-
max-width: 100%;
|
|
324
|
-
flex-direction: row;
|
|
325
|
-
align-items: flex-start;
|
|
326
|
-
margin: auto;
|
|
327
|
-
padding: 0.8rem;
|
|
328
|
-
color: #fff;
|
|
329
|
-
}
|
|
330
|
-
.appbar-box-left {
|
|
331
|
-
display: flex;
|
|
332
|
-
width: 50%;
|
|
333
|
-
margin: auto;
|
|
334
|
-
padding: 0px;
|
|
335
|
-
}
|
|
336
|
-
.appbar-box-right {
|
|
337
|
-
display: flex;
|
|
338
|
-
width: 50%;
|
|
339
|
-
margin: auto;
|
|
340
|
-
padding: 0px;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
@media screen and (max-width: 768px) {
|
|
344
|
-
.appbar-container {
|
|
345
|
-
flex-direction: column;
|
|
346
|
-
}
|
|
347
|
-
.appbar-box-right {
|
|
348
|
-
display: none;
|
|
207
|
+
.employee-login-footer {
|
|
208
|
+
font-size: 12px;
|
|
349
209
|
}
|
|
350
210
|
}
|
|
351
211
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
padding: 20px 40px;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.topHeader-box-left img {
|
|
359
|
-
width: 50px;
|
|
360
|
-
height: 50px;
|
|
361
|
-
}
|
|
362
|
-
.topHeader-box-left img:first-child {
|
|
363
|
-
margin-right: 20px;
|
|
364
|
-
}
|
|
365
|
-
.topHeader-box-center {
|
|
366
|
-
font-weight: 500;
|
|
367
|
-
font-family: "Inter", serif;
|
|
368
|
-
margin-top: 20px;
|
|
369
|
-
}
|
|
370
|
-
.topHeader-box-center ul {
|
|
371
|
-
list-style-type: none;
|
|
372
|
-
display: flex;
|
|
373
|
-
padding: 0;
|
|
374
|
-
margin: 0;
|
|
375
|
-
flex-wrap: wrap;
|
|
376
|
-
}
|
|
377
|
-
.topHeader-box-center li {
|
|
378
|
-
margin-right: 20px;
|
|
379
|
-
font-weight: 500;
|
|
380
|
-
}
|
|
381
|
-
.topHeader-box-center a {
|
|
382
|
-
text-decoration: none;
|
|
383
|
-
color: black;
|
|
384
|
-
}
|
|
385
|
-
.topHeader-box-right {
|
|
386
|
-
display: flex;
|
|
387
|
-
justify-content: space-between;
|
|
388
|
-
flex-wrap: wrap;
|
|
389
|
-
margin-top: 10px;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.topHeader-box-right button {
|
|
393
|
-
width: 75px;
|
|
394
|
-
height: 30px;
|
|
395
|
-
border-radius: 5px;
|
|
396
|
-
margin-right: 10px;
|
|
397
|
-
border: none;
|
|
398
|
-
}
|
|
399
|
-
.topHeader-box-right button:first-child {
|
|
400
|
-
background-color: white;
|
|
401
|
-
border: 1px solid #294a97;
|
|
402
|
-
color: #294a97;
|
|
403
|
-
font-weight: 500;
|
|
404
|
-
}
|
|
405
|
-
.topHeader-box-right button:last-child {
|
|
406
|
-
background-color: #294a97;
|
|
407
|
-
color: white;
|
|
408
|
-
}
|
|
409
|
-
.heroSection {
|
|
410
|
-
width: 100%;
|
|
411
|
-
max-height: 508px;
|
|
412
|
-
margin: auto;
|
|
413
|
-
padding: 0;
|
|
414
|
-
background: #294a9733;
|
|
415
|
-
img {
|
|
416
|
-
width: 100%;
|
|
417
|
-
object-fit: cover;
|
|
418
|
-
opacity: 0.75;
|
|
419
|
-
max-height: 508px;
|
|
212
|
+
@media (max-width: 480px) {
|
|
213
|
+
.employee-login-page {
|
|
214
|
+
padding: 16px;
|
|
420
215
|
}
|
|
421
|
-
}
|
|
422
216
|
|
|
423
|
-
.
|
|
424
|
-
|
|
425
|
-
max-height: 508px;
|
|
426
|
-
margin: auto;
|
|
427
|
-
padding: 0;
|
|
428
|
-
background: #294A9733;
|
|
429
|
-
img{
|
|
430
|
-
width: 100%;
|
|
431
|
-
object-fit: cover;
|
|
432
|
-
opacity: 0.75;
|
|
433
|
-
max-height: 508px;
|
|
217
|
+
.employee-login-card {
|
|
218
|
+
padding: 24px 20px;
|
|
434
219
|
}
|
|
435
|
-
}
|
|
436
|
-
.loginpic{
|
|
437
|
-
margin-top: 50px;
|
|
438
|
-
height: '300px';
|
|
439
|
-
width: 100%;
|
|
440
|
-
|
|
441
|
-
position: absolute;
|
|
442
220
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
overflow: auto;
|
|
448
|
-
box-sizing: border-box;
|
|
449
|
-
/* margin-top: 10px; */
|
|
450
|
-
display: flex;
|
|
451
|
-
}
|
|
452
|
-
.loginFormStyleEmployeeNew {
|
|
453
|
-
|
|
454
|
-
width :40%;
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
align-items: center;
|
|
458
|
-
justify-content: center;
|
|
459
|
-
min-height: 400px;
|
|
460
|
-
|
|
461
|
-
display: flex;
|
|
462
|
-
align-items: flex-start;
|
|
463
|
-
justify-content: center;
|
|
464
|
-
position: absolute;
|
|
465
|
-
top: -90px;
|
|
466
|
-
}
|
|
467
|
-
@media screen and (max-width : 1024px) and (min-width:468px) {
|
|
468
|
-
.loginFormStyleEmployeeNew{
|
|
469
|
-
width: 60%;
|
|
470
|
-
padding: 2rem;
|
|
221
|
+
.employee-login-icon-circle {
|
|
222
|
+
width: 60px;
|
|
223
|
+
height: 60px;
|
|
224
|
+
}
|
|
471
225
|
|
|
226
|
+
.employee-upyog-title {
|
|
227
|
+
font-size: 24px;
|
|
472
228
|
}
|
|
473
|
-
}
|
|
474
|
-
@media screen and (max-width : 467px) {
|
|
475
|
-
.loginFormStyleEmployeeNew{
|
|
476
|
-
width: 80%;
|
|
477
|
-
padding: 1rem;
|
|
478
229
|
|
|
230
|
+
.employee-login-footer {
|
|
231
|
+
font-size: 11px;
|
|
479
232
|
}
|
|
480
233
|
}
|
|
481
|
-
.employeeCardNew{
|
|
482
|
-
box-sizing: border-box;
|
|
483
|
-
margin-bottom: 0px;
|
|
484
|
-
width: 100%;
|
|
485
|
-
margin-left: 0px;
|
|
486
|
-
|
|
487
|
-
background-color: #FFFFFF;
|
|
488
|
-
}
|
|
489
|
-
.headerStyle{
|
|
490
|
-
font-family: "Roboto", serif;
|
|
491
|
-
font-weight: 700;
|
|
492
|
-
text-align: left;
|
|
493
|
-
font-size: 36px;
|
|
494
|
-
line-height: 42px;
|
|
495
|
-
}
|
|
496
|
-
.descStyle{
|
|
497
|
-
font-family: 'Roboto';
|
|
498
|
-
font-weight: 400;
|
|
499
|
-
color: #8F8F8F;
|
|
500
|
-
text-align: left;
|
|
501
|
-
line-height: 21.09px;
|
|
502
|
-
padding: 0.5rem 0rem 2rem 0rem;
|
|
503
|
-
}
|
|
504
|
-
.labelStyle{
|
|
505
|
-
font-family: 'Roboto';
|
|
506
|
-
font-weight: 400;
|
|
507
|
-
font-size: 18px;
|
|
508
|
-
color: #232323;
|
|
509
|
-
line-height: 21.79px;
|
|
510
|
-
}
|
|
511
|
-
.footer{
|
|
512
|
-
display: -webkit-box;
|
|
513
|
-
box-sizing: border-box;
|
|
514
|
-
width: '100%';
|
|
515
|
-
position: 'fixed';
|
|
516
|
-
bottom: 0;
|
|
517
|
-
background-color:"#152265";
|
|
518
|
-
text-align:"center";
|
|
519
|
-
color:white;
|
|
520
|
-
margin-top: 170px;
|
|
521
|
-
}
|
|
522
|
-
.footerText{
|
|
523
|
-
display: 'flex';
|
|
524
|
-
justify-content: 'center';
|
|
525
|
-
color:"white" ;
|
|
526
|
-
background-color: #152265;
|
|
527
|
-
width: 100%;
|
|
528
|
-
text-align: center;
|
|
529
|
-
}
|
|
530
|
-
.footerContainer{
|
|
531
|
-
box-sizing: border-box;
|
|
532
|
-
height: 200px;
|
|
533
|
-
background-color: #294A97;
|
|
534
|
-
width:100%;
|
|
535
|
-
border-top: 2px solid #294A97;
|
|
536
|
-
text-align:'center';
|
|
537
|
-
color: 'white';
|
|
538
|
-
margin-top: 0px;
|
|
539
|
-
|
|
540
234
|
|
|
541
|
-
|
|
542
|
-
.
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
border-radius: 8px;
|
|
547
|
-
}
|
|
548
|
-
.submitButtonNew{
|
|
549
|
-
background-color: #2947A3;
|
|
550
|
-
height: 3rem;
|
|
551
|
-
text-align: center;
|
|
552
|
-
outline: 2px solid transparent;
|
|
553
|
-
outline-offset: 2px;
|
|
554
|
-
width: 100%;
|
|
555
|
-
/* width: 330px; */
|
|
556
|
-
padding: 0.8rem 0rem;
|
|
557
|
-
box-sizing: content-box;
|
|
558
|
-
height: 20px;
|
|
559
|
-
border-radius: 8px;
|
|
560
|
-
color: #FFFFFF;
|
|
235
|
+
/* Override FormComposer default styles */
|
|
236
|
+
.employee-login-form .card {
|
|
237
|
+
box-shadow: none !important;
|
|
238
|
+
padding: 0 !important;
|
|
239
|
+
background: transparent !important;
|
|
561
240
|
}
|
|
562
241
|
|
|
563
|
-
.
|
|
564
|
-
|
|
565
|
-
}
|
|
566
|
-
.background-login{
|
|
567
|
-
position: absolute;
|
|
568
|
-
height: 100%;
|
|
569
|
-
width: 100%;
|
|
570
|
-
|
|
242
|
+
.employee-login-form .card-header {
|
|
243
|
+
padding: 0 0 16px 0 !important;
|
|
571
244
|
}
|
|
572
|
-
.footerLinks{
|
|
573
|
-
box-sizing: border-box;
|
|
574
|
-
background-color: #F5FBFF;
|
|
575
|
-
height: 40px;
|
|
576
|
-
width:100%;
|
|
577
|
-
justify-content: space-between;
|
|
578
|
-
display: -webkit-box;
|
|
579
|
-
padding-top: 30px ;
|
|
580
|
-
padding-left: 164px ;
|
|
581
|
-
padding-right: 164px;
|
|
582
|
-
padding-bottom: 60px;
|
|
583
|
-
}
|
|
584
|
-
.footerCont{
|
|
585
|
-
box-sizing: border-box;
|
|
586
|
-
height: auto;
|
|
587
|
-
width:100%;
|
|
588
|
-
display: -webkit-box;
|
|
589
|
-
background-color: #294A97;
|
|
590
|
-
border-top: 2px solid #294A97;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
245
|
|
|
246
|
+
.employee-login-form .card-body {
|
|
247
|
+
padding: 0 !important;
|
|
248
|
+
}
|
|
594
249
|
|
|
595
|
-
|
|
250
|
+
.employee-login-form .submit-bar {
|
|
251
|
+
padding: 0 !important;
|
|
252
|
+
margin-top: 0 !important;
|
|
253
|
+
}
|