@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,128 +1,195 @@
|
|
|
1
|
+
|
|
1
2
|
.topbar {
|
|
2
|
-
position: fixed;
|
|
3
3
|
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
4
6
|
width: 100%;
|
|
5
|
-
padding:
|
|
6
|
-
background:
|
|
7
|
-
box-shadow: rgba(
|
|
7
|
+
padding: 12px 24px;
|
|
8
|
+
background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.98));
|
|
9
|
+
box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.04);
|
|
10
|
+
border-bottom: 1px solid rgba(15, 23, 42, 0.06);
|
|
11
|
+
backdrop-filter: blur(6px);
|
|
8
12
|
z-index: 9999999;
|
|
9
|
-
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
transition: box-shadow 0.25s ease;
|
|
17
|
+
}
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
|
|
19
|
+
.topbar img {
|
|
20
|
+
display: inline;
|
|
21
|
+
}
|
|
13
22
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
23
|
+
.topbar img.city {
|
|
24
|
+
margin-right: 12px;
|
|
25
|
+
height: 48px;
|
|
26
|
+
width: 48px;
|
|
27
|
+
border-radius: 8px;
|
|
28
|
+
transition: transform 0.2s ease;
|
|
29
|
+
}
|
|
19
30
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
}
|
|
31
|
+
.topbar img.city:hover {
|
|
32
|
+
transform: scale(1.05);
|
|
33
|
+
}
|
|
25
34
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
35
|
+
.topbar img.state {
|
|
36
|
+
min-height: 50px;
|
|
37
|
+
width: 80px;
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
30
40
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.user-img-txt {
|
|
41
|
-
background: #a82227;
|
|
42
|
-
padding: 10px 15px;
|
|
43
|
-
border-radius: 50%;
|
|
44
|
-
color: white;
|
|
45
|
-
font-weight: 700;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
41
|
+
.topbar .ulb {
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
display: inline-block;
|
|
44
|
+
color: #1f2937;
|
|
45
|
+
font-size: 15px;
|
|
46
|
+
letter-spacing: -0.3px;
|
|
47
|
+
}
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
.topbar .right {
|
|
50
|
+
float: unset;
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
gap: 16px;
|
|
54
|
+
margin-top: 0;
|
|
55
|
+
position: relative;
|
|
56
|
+
}
|
|
52
57
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
.topbar .right svg {
|
|
59
|
+
display: inline;
|
|
60
|
+
color: #6b7280;
|
|
61
|
+
fill: #6b7280;
|
|
62
|
+
transition: color 0.2s ease;
|
|
63
|
+
}
|
|
56
64
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
65
|
+
.topbar .right svg:hover {
|
|
66
|
+
color: #2563eb;
|
|
67
|
+
fill: #2563eb;
|
|
68
|
+
}
|
|
60
69
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
70
|
+
.topbar .right .user-img-txt {
|
|
71
|
+
background: linear-gradient(135deg, #2563eb, #7c3aed);
|
|
72
|
+
padding: 10px 15px;
|
|
73
|
+
border-radius: 50%;
|
|
74
|
+
color: white;
|
|
75
|
+
font-weight: 700;
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
transition: all 0.25s ease;
|
|
79
|
+
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
|
|
80
|
+
}
|
|
64
81
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
82
|
+
.topbar .right .user-img-txt:hover {
|
|
83
|
+
transform: scale(1.08);
|
|
84
|
+
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
|
|
85
|
+
}
|
|
68
86
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
87
|
+
.topbar .left {
|
|
88
|
+
float: unset;
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
gap: 12px;
|
|
92
|
+
}
|
|
72
93
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
94
|
+
.topbar .w-80 {
|
|
95
|
+
width: auto;
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
gap: 16px;
|
|
99
|
+
}
|
|
80
100
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
101
|
+
.topbar .width-20 {
|
|
102
|
+
width: auto;
|
|
103
|
+
}
|
|
84
104
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
105
|
+
.topbar .margin-top-6 {
|
|
106
|
+
margin-top: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.topbar .margin-right-30 {
|
|
110
|
+
margin-right: 16px;
|
|
111
|
+
}
|
|
88
112
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
113
|
+
.topbar .margin-top-10 {
|
|
114
|
+
margin-top: 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.topbar .icon {
|
|
118
|
+
display: block;
|
|
119
|
+
color: #6b7280;
|
|
120
|
+
fill: #6b7280;
|
|
121
|
+
height: 21px;
|
|
122
|
+
width: 21px;
|
|
123
|
+
transition: all 0.2s ease;
|
|
124
|
+
cursor: pointer;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.topbar .icon:hover {
|
|
128
|
+
color: #2563eb;
|
|
129
|
+
fill: #2563eb;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.topbar .column-gap-15 {
|
|
133
|
+
column-gap: 16px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.topbar .column-gap-5 {
|
|
137
|
+
column-gap: 8px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.topbar .select-wrap,
|
|
141
|
+
.topbar .employee-select-wrap {
|
|
142
|
+
margin-bottom: 0px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.topbar .select-wrap .profile-dropdown--item span,
|
|
146
|
+
.topbar .employee-select-wrap .profile-dropdown--item span {
|
|
147
|
+
white-space: pre;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@media (max-width: 768px) {
|
|
151
|
+
.topbar {
|
|
152
|
+
padding: 10px 16px;
|
|
153
|
+
}
|
|
154
|
+
.topbar .right {
|
|
155
|
+
gap: 12px;
|
|
156
|
+
}
|
|
157
|
+
.topbar .left {
|
|
158
|
+
gap: 8px;
|
|
159
|
+
}
|
|
160
|
+
.topbar img.city {
|
|
161
|
+
height: 40px;
|
|
162
|
+
width: 40px;
|
|
97
163
|
}
|
|
98
164
|
}
|
|
99
165
|
|
|
100
166
|
.cp {
|
|
101
167
|
cursor: pointer;
|
|
102
|
-
|
|
103
|
-
display: none;
|
|
104
|
-
}
|
|
168
|
+
}
|
|
105
169
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
display: none;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
170
|
+
.cp .hamburger {
|
|
171
|
+
display: none;
|
|
111
172
|
}
|
|
112
173
|
|
|
113
|
-
|
|
114
|
-
.
|
|
115
|
-
|
|
116
|
-
margin-bottom: 5px;
|
|
174
|
+
@media (max-width: 780px) {
|
|
175
|
+
.cp .hamburger {
|
|
176
|
+
display: none;
|
|
117
177
|
}
|
|
178
|
+
}
|
|
118
179
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
180
|
+
.citizen .right {
|
|
181
|
+
margin-top: 5px;
|
|
182
|
+
margin-bottom: 5px;
|
|
183
|
+
}
|
|
122
184
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
185
|
+
.citizen .topbar-select-wrap {
|
|
186
|
+
margin-bottom: 0;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.citizen .flex-between {
|
|
190
|
+
display: flex;
|
|
191
|
+
align-items: center;
|
|
192
|
+
justify-content: space-between;
|
|
126
193
|
}
|
|
127
194
|
|
|
128
195
|
.profile-dropdown--item {
|
|
@@ -131,16 +198,19 @@
|
|
|
131
198
|
padding: 10px;
|
|
132
199
|
column-gap: 10px;
|
|
133
200
|
color: #505a5f;
|
|
201
|
+
}
|
|
134
202
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
203
|
+
.profile-dropdown--item:hover {
|
|
204
|
+
background: #eeeeee;
|
|
138
205
|
}
|
|
139
206
|
|
|
140
207
|
.flex-right {
|
|
141
|
-
|
|
208
|
+
display: flex;
|
|
209
|
+
align-items: center;
|
|
210
|
+
justify-content: flex-end;
|
|
142
211
|
min-width: 85px;
|
|
143
212
|
}
|
|
213
|
+
|
|
144
214
|
video::-webkit-media-controls-panel {
|
|
145
215
|
top: 55%;
|
|
146
216
|
position: absolute;
|
package/src/index.scss
CHANGED
|
@@ -125,7 +125,13 @@
|
|
|
125
125
|
@import "./pages/common/sanctionFeeTable.scss";
|
|
126
126
|
@import "./pages/citizen/loaderMessage.scss";
|
|
127
127
|
@import "./pages/employee/disconnection.scss";
|
|
128
|
+
@import "./pages/citizen/InboxCard.scss";
|
|
129
|
+
@import "./pages/employee/header.scss";
|
|
130
|
+
|
|
128
131
|
@import "./pages/common/pgrUICssfix.scss";
|
|
132
|
+
@import "./components/newFooter.scss";
|
|
133
|
+
@import "./pages/citizen/CitizenLogin.scss";
|
|
134
|
+
@import "./components/NewAccordianCitizen.scss";
|
|
129
135
|
|
|
130
136
|
.display-none {
|
|
131
137
|
display: none;
|
|
@@ -639,7 +645,7 @@
|
|
|
639
645
|
width: calc(100% - 219px);
|
|
640
646
|
padding-left: 16px;
|
|
641
647
|
padding-right: 16px;
|
|
642
|
-
margin-top:
|
|
648
|
+
margin-top: 3rem;
|
|
643
649
|
}
|
|
644
650
|
}
|
|
645
651
|
@media only screen and (max-width: 768px) {
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.newLoginlanguageWrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
margin-bottom: 24px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.newLoginlabel {
|
|
7
|
+
font-weight: 500;
|
|
8
|
+
font-size: 16px;
|
|
9
|
+
line-height: 25px;
|
|
10
|
+
color: #686677;
|
|
11
|
+
margin-bottom: 8px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.newLoginrequired {
|
|
15
|
+
color: #ff1515;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.newLoginlanguageButtonContainer {
|
|
19
|
+
display: flex;
|
|
20
|
+
gap: 12px;
|
|
21
|
+
width: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Default button style */
|
|
25
|
+
.newLoginlanguageButton {
|
|
26
|
+
flex: 1;
|
|
27
|
+
padding: 12px 20px;
|
|
28
|
+
border: 1px solid #d0d5dd;
|
|
29
|
+
border-radius: 8px;
|
|
30
|
+
background-color: #ffffff;
|
|
31
|
+
color: #344054;
|
|
32
|
+
font-size: 16px;
|
|
33
|
+
font-weight: 500;
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
transition: all 0.newLogin2s ease;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Hover state */
|
|
39
|
+
.newLoginlanguageButton:hover {
|
|
40
|
+
border-color: #98a2b3;
|
|
41
|
+
background-color: #f9fafb;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* Selected button state */
|
|
45
|
+
.newLoginselected {
|
|
46
|
+
border: 2px solid #5b68f0;
|
|
47
|
+
background-color: #f0f1ff;
|
|
48
|
+
color: #5b68f0;
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
}
|
|
@@ -6,6 +6,22 @@
|
|
|
6
6
|
margin-top: 0.5em;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
+
.document-required-options{
|
|
10
|
+
display: flex;
|
|
11
|
+
.document-index{
|
|
12
|
+
min-width:20px;
|
|
13
|
+
text-align: right;
|
|
14
|
+
padding: 5px;
|
|
15
|
+
}
|
|
16
|
+
.document-description{
|
|
17
|
+
flex-grow:1;
|
|
18
|
+
word-break: break-word;
|
|
19
|
+
padding: 5px;
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
9
25
|
.accordion-item {
|
|
10
26
|
overflow: hidden;
|
|
11
27
|
transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
|
|
@@ -281,7 +297,9 @@
|
|
|
281
297
|
overflow: hidden;
|
|
282
298
|
text-overflow: ellipsis;
|
|
283
299
|
}
|
|
284
|
-
|
|
300
|
+
.documentation-list{
|
|
301
|
+
display: flex;
|
|
302
|
+
}
|
|
285
303
|
.Docs_CardWrapper{
|
|
286
304
|
@apply bg-white m-sm px-md pt-md pb-lg shadow-card;
|
|
287
305
|
border-radius: 4px;
|
|
@@ -302,4 +320,130 @@
|
|
|
302
320
|
.documentDetails_row_items{
|
|
303
321
|
@apply grid grid-cols-2 gap-4;
|
|
304
322
|
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
/* When there are no documents */
|
|
327
|
+
.obps-document-detail-no-doc {
|
|
328
|
+
padding: 10px 0px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/* Row (Label) */
|
|
332
|
+
.obps-document-detail-row {
|
|
333
|
+
padding-top: 10px;
|
|
334
|
+
width: 100%;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/* Outer container for files */
|
|
338
|
+
.obps-document-detail-list {
|
|
339
|
+
display: flex;
|
|
340
|
+
flex-wrap: wrap;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/* Each document block */
|
|
344
|
+
.obps-document-detail-item {
|
|
345
|
+
display: flex;
|
|
346
|
+
flex-wrap: wrap;
|
|
347
|
+
justify-content: flex-start;
|
|
348
|
+
align-content: center;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/* Clickable link */
|
|
352
|
+
.obps-document-detail-link {
|
|
353
|
+
min-width: 100px;
|
|
354
|
+
max-width: 100px;
|
|
355
|
+
margin-right: 10px;
|
|
356
|
+
height: auto;
|
|
357
|
+
text-decoration: none;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/* SVG icon wrapper */
|
|
361
|
+
.obps-document-detail-icon-wrapper {
|
|
362
|
+
display: flex;
|
|
363
|
+
justify-content: center;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/* Document Title */
|
|
367
|
+
.obps-document-detail-title {
|
|
368
|
+
margin-top: 8px;
|
|
369
|
+
text-align: center;
|
|
370
|
+
color: #505a5f;
|
|
371
|
+
font-weight: 400;
|
|
372
|
+
line-height: 19px;
|
|
373
|
+
font-size: 16px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/* Divider line */
|
|
377
|
+
.obps-document-detail-divider {
|
|
378
|
+
color: #d6d5d4;
|
|
379
|
+
background-color: #d6d5d4;
|
|
380
|
+
height: 2px;
|
|
381
|
+
margin-top: 20px;
|
|
382
|
+
margin-bottom: 20px;
|
|
383
|
+
border: none;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.clu-doc-required-card {
|
|
387
|
+
background: #FAFAFA;
|
|
388
|
+
border: 1px solid #D6D5D4;
|
|
389
|
+
padding: 8px;
|
|
390
|
+
border-radius: 4px;
|
|
391
|
+
max-width: 600px;
|
|
392
|
+
min-width: 280px;
|
|
393
|
+
margin-bottom: 15px;
|
|
394
|
+
padding-top: 15px;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.clu-doc-required-wrapper {
|
|
398
|
+
margin-bottom: 24px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.clu-doc-required-label {
|
|
402
|
+
width: 100%;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.clu-doc-required-field {
|
|
406
|
+
display: flex;
|
|
407
|
+
flex-direction: column;
|
|
408
|
+
gap: 10px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.clu-doc-required-coordinates {
|
|
412
|
+
padding: 10px;
|
|
413
|
+
font-size: 14px;
|
|
414
|
+
}
|
|
415
|
+
.clu-doc-view-container {
|
|
416
|
+
margin-top: 19px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.clu-doc-view-grid {
|
|
420
|
+
display: flex;
|
|
421
|
+
flex-wrap: wrap;
|
|
422
|
+
gap: 16px;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.clu-doc-view-link {
|
|
426
|
+
width: 120px;
|
|
427
|
+
text-align: center;
|
|
428
|
+
display: flex;
|
|
429
|
+
flex-direction: column;
|
|
430
|
+
align-items: center;
|
|
431
|
+
text-decoration: none;
|
|
432
|
+
color: inherit;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.clu-doc-view-pdf-icon {
|
|
436
|
+
background: #f6f6f6;
|
|
437
|
+
padding: 8px;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.clu-doc-view-label {
|
|
441
|
+
margin-top: 8px;
|
|
442
|
+
font-size: 12px;
|
|
443
|
+
word-wrap: break-word;
|
|
444
|
+
overflow: hidden;
|
|
445
|
+
text-overflow: ellipsis;
|
|
446
|
+
display: -webkit-box;
|
|
447
|
+
-webkit-line-clamp: 2;
|
|
448
|
+
-webkit-box-orient: vertical;
|
|
305
449
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
.HomePageWrapper {
|
|
2
2
|
margin-top: -25px;
|
|
3
|
-
|
|
3
|
+
margin: 0 auto;
|
|
4
|
+
padding: 0 40px;
|
|
4
5
|
.BannerWithSearch {
|
|
5
6
|
margin-bottom: 40px;
|
|
6
7
|
width: 100%;
|
|
@@ -15,6 +16,54 @@
|
|
|
15
16
|
@apply w-full object-cover;
|
|
16
17
|
}
|
|
17
18
|
}
|
|
19
|
+
.hero-banner-styles {
|
|
20
|
+
background: linear-gradient(135deg, #4f65d8 0%, #00157a 100%);
|
|
21
|
+
border-radius: 16px;
|
|
22
|
+
padding: 60px 40px;
|
|
23
|
+
margin: 24px 0;
|
|
24
|
+
text-align: center;
|
|
25
|
+
color: #fff;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.hero-title-styles {
|
|
29
|
+
font-size: 42px;
|
|
30
|
+
font-weight: 700;
|
|
31
|
+
margin-bottom: 12px;
|
|
32
|
+
letter-spacing: -0.5px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.heroSubtitleStyles {
|
|
36
|
+
font-size: 18px;
|
|
37
|
+
font-weight: 400;
|
|
38
|
+
margin-bottom: 32px;
|
|
39
|
+
opacity: 0.95;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.searchBarStyles {
|
|
43
|
+
max-width: 600px;
|
|
44
|
+
margin: 0 auto;
|
|
45
|
+
background-color: #fff;
|
|
46
|
+
border-radius: 12px;
|
|
47
|
+
padding: 14px 20px;
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.searchInputStyles {
|
|
54
|
+
border: none;
|
|
55
|
+
outline: none;
|
|
56
|
+
width: 100%;
|
|
57
|
+
font-size: 16px;
|
|
58
|
+
margin-left: 12px;
|
|
59
|
+
color: black;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.searchIconStyles {
|
|
63
|
+
color: #9ca3af;
|
|
64
|
+
font-size: 20px;
|
|
65
|
+
}
|
|
66
|
+
|
|
18
67
|
|
|
19
68
|
.ServicesSection {
|
|
20
69
|
@apply flex flex-wrap;
|
|
@@ -46,12 +95,12 @@
|
|
|
46
95
|
}
|
|
47
96
|
}
|
|
48
97
|
|
|
49
|
-
.WhatsAppBanner{
|
|
98
|
+
.WhatsAppBanner {
|
|
50
99
|
width: 100%;
|
|
51
100
|
padding: 0px 20px 0px 20px;
|
|
52
101
|
margin: auto;
|
|
53
102
|
cursor: pointer;
|
|
54
|
-
display:none;
|
|
103
|
+
display: none;
|
|
55
104
|
img {
|
|
56
105
|
width: 100%;
|
|
57
106
|
}
|
|
@@ -75,6 +124,8 @@
|
|
|
75
124
|
}
|
|
76
125
|
|
|
77
126
|
.HomePageContainer {
|
|
127
|
+
width: 100%;
|
|
128
|
+
padding: 0;
|
|
78
129
|
@media (min-width: 780px) {
|
|
79
130
|
display: flex;
|
|
80
131
|
width: 100% !important;
|
|
@@ -89,12 +140,11 @@
|
|
|
89
140
|
margin-top: -25px;
|
|
90
141
|
img {
|
|
91
142
|
height: 33vw;
|
|
92
|
-
background: linear-gradient(#000000
|
|
143
|
+
background: linear-gradient(#000000, #000000);
|
|
93
144
|
@apply object-cover;
|
|
94
|
-
width:100vw;
|
|
145
|
+
width: 100vw;
|
|
95
146
|
}
|
|
96
147
|
h1 {
|
|
97
|
-
position: absolute;
|
|
98
148
|
top: 100px;
|
|
99
149
|
left: 21px;
|
|
100
150
|
@apply text-heading-xl text-white font-bold;
|
|
@@ -103,9 +153,9 @@
|
|
|
103
153
|
border: none;
|
|
104
154
|
top: 76px;
|
|
105
155
|
svg {
|
|
106
|
-
fill: #
|
|
156
|
+
fill: #000000;
|
|
107
157
|
}
|
|
108
|
-
@apply
|
|
158
|
+
@apply text-black text-heading-s ml-md;
|
|
109
159
|
}
|
|
110
160
|
}
|
|
111
161
|
|
|
@@ -136,12 +186,11 @@
|
|
|
136
186
|
|
|
137
187
|
.WhatsAppBanner {
|
|
138
188
|
width: 100%;
|
|
139
|
-
img{
|
|
189
|
+
img {
|
|
140
190
|
height: 20vw;
|
|
141
191
|
width: 100%;
|
|
142
192
|
}
|
|
143
193
|
}
|
|
144
|
-
|
|
145
194
|
}
|
|
146
195
|
.moduleLinkHomePage {
|
|
147
196
|
img {
|
|
@@ -160,6 +209,6 @@
|
|
|
160
209
|
|
|
161
210
|
.moduleLinkHomePageModuleLinks {
|
|
162
211
|
max-width: unset;
|
|
163
|
-
width:100
|
|
212
|
+
width: 100%;
|
|
164
213
|
}
|
|
165
|
-
}
|
|
214
|
+
}
|