iceholidays-frontend 0.4.0 → 0.6.0
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/iceholidays/frontend/actiontext.scss +119 -0
- data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +968 -355
- data/app/assets/stylesheets/iceholidays/frontend/common.scss +159 -74
- data/app/assets/stylesheets/iceholidays/frontend/layout.scss +218 -125
- data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +22 -7
- data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +2 -1
- data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +19 -12
- data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +4 -0
- data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
- data/app/javascript/api-services/agents-api.service.ts +33 -0
- data/app/javascript/api-services/locations-api.service.ts +23 -1
- data/app/javascript/api-services/series-api.service.ts +48 -28
- data/app/javascript/interfaces/agent.interface.ts +11 -0
- data/app/javascript/interfaces/country.interface.ts +4 -3
- data/app/javascript/interfaces/itinerary.interface.ts +101 -8
- data/app/javascript/react/App.tsx +1 -1
- data/app/javascript/react/components/Destinations.tsx +30 -20
- data/app/javascript/react/components/PriceDetails.tsx +146 -0
- data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
- data/app/javascript/react/components/shared/Headline.tsx +2 -1
- data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
- data/app/javascript/react/components/shared/{Postcard.tsx → LocationPostcards.tsx} +22 -1
- data/app/javascript/react/layouts/MainFooter.tsx +64 -39
- data/app/javascript/react/layouts/MainHeader.tsx +68 -30
- data/app/javascript/react/pages/AboutUsPage.tsx +8 -8
- data/app/javascript/react/pages/BlogPage.tsx +6 -4
- data/app/javascript/react/pages/ContactAgentsPage.tsx +174 -5
- data/app/javascript/react/pages/ContactUsPage.tsx +5 -5
- data/app/javascript/react/pages/CountriesPage.tsx +3 -8
- data/app/javascript/react/pages/Homepage.tsx +23 -13
- data/app/javascript/react/pages/ListingPage.tsx +197 -145
- data/app/javascript/react/pages/ShowPage.tsx +275 -265
- data/app/javascript/react/widgets/FilterPills.tsx +83 -49
- data/app/javascript/react/widgets/SearchBarWidget.tsx +24 -8
- data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
- data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
- data/config/routes.rb +2 -1
- data/lib/iceholidays/frontend/version.rb +1 -1
- data/public/iceholidays-assets/application.css +1209 -437
- data/public/iceholidays-assets/application.js +91 -104
- data/public/iceholidays-assets/application.js.map +4 -4
- data/public/iceholidays-assets/images/TSTRibbon.png +0 -0
- data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
- data/public/iceholidays-assets/images/destinations_logo.png +0 -0
- data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
- data/public/iceholidays-assets/images/logo_mobile.png +0 -0
- metadata +19 -27
- data/public/iceholidays-assets/images/8D7N.png +0 -0
- data/public/iceholidays-assets/images/Frame71.png +0 -0
- data/public/iceholidays-assets/images/africa.png +0 -0
- data/public/iceholidays-assets/images/banner1.png +0 -0
- data/public/iceholidays-assets/images/banner2.png +0 -0
- data/public/iceholidays-assets/images/china.png +0 -0
- data/public/iceholidays-assets/images/china2.png +0 -0
- data/public/iceholidays-assets/images/chongqing.png +0 -0
- data/public/iceholidays-assets/images/guangzhou.png +0 -0
- data/public/iceholidays-assets/images/guilin.png +0 -0
- data/public/iceholidays-assets/images/harbin.png +0 -0
- data/public/iceholidays-assets/images/hongkong.png +0 -0
- data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
- data/public/iceholidays-assets/images/jiangxi.png +0 -0
- data/public/iceholidays-assets/images/kenya.png +0 -0
- data/public/iceholidays-assets/images/kenya2.png +0 -0
- data/public/iceholidays-assets/images/kunming.png +0 -0
- data/public/iceholidays-assets/images/slikroad.png +0 -0
- data/public/iceholidays-assets/images/southafrica.png +0 -0
- data/public/iceholidays-assets/images/tanzania.png +0 -0
- data/public/iceholidays-assets/images/tour1.png +0 -0
- data/public/iceholidays-assets/images/uganda.png +0 -0
- /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
- /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
#headline{
|
|
4
4
|
//can change to container width
|
|
5
|
-
--side-padding:
|
|
5
|
+
--side-padding: 20px;
|
|
6
6
|
|
|
7
7
|
&_banner{
|
|
8
8
|
// width: 1440px;
|
|
9
|
-
height:
|
|
9
|
+
height: 180px;
|
|
10
10
|
background-size: cover;
|
|
11
11
|
background-repeat: no-repeat;
|
|
12
12
|
background-position: center center;
|
|
@@ -26,16 +26,15 @@
|
|
|
26
26
|
// width: 314px;
|
|
27
27
|
// height: 68px;
|
|
28
28
|
margin: 0;
|
|
29
|
-
|
|
30
29
|
font-family: $font-default;
|
|
31
|
-
font-size: 45px;
|
|
32
30
|
font-weight: 400;
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
font-size: 18px;
|
|
32
|
+
line-height: 27px;
|
|
33
|
+
letter-spacing: 5%;
|
|
35
34
|
text-align: left;
|
|
36
35
|
text-underline-position: from-font;
|
|
37
36
|
text-decoration-skip-ink: none;
|
|
38
|
-
color:
|
|
37
|
+
color: $supportive-color;
|
|
39
38
|
text-transform: uppercase;
|
|
40
39
|
}
|
|
41
40
|
|
|
@@ -70,7 +69,8 @@
|
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
.ant-breadcrumb{
|
|
73
|
-
padding: 10px var(--side-padding);
|
|
72
|
+
padding: 10px var(--side-padding) 0;
|
|
73
|
+
font-size: 12px;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
@@ -120,76 +120,76 @@
|
|
|
120
120
|
|
|
121
121
|
.postcards{
|
|
122
122
|
display: grid;
|
|
123
|
-
grid-template-columns:
|
|
124
|
-
grid-template-rows: repeat(2, 1fr);
|
|
123
|
+
grid-template-columns: 1fr;
|
|
124
|
+
// grid-template-rows: repeat(2, 1fr);
|
|
125
125
|
gap: 20px;
|
|
126
|
-
}
|
|
127
126
|
|
|
128
|
-
.postcard{
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
width: 100%;
|
|
132
|
-
|
|
133
|
-
img{
|
|
127
|
+
.postcard{
|
|
128
|
+
border-radius: 20px;
|
|
129
|
+
overflow: hidden;
|
|
134
130
|
width: 100%;
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
opacity: 0px;
|
|
138
|
-
border-top-left-radius: 20px;
|
|
139
|
-
border-top-right-radius: 20px;
|
|
140
|
-
display: block;
|
|
141
|
-
object-fit: cover;
|
|
142
|
-
object-position: top center;
|
|
143
|
-
transition: transform 0.4s ease;
|
|
144
|
-
transform-origin: 50% 100%;
|
|
145
|
-
|
|
146
|
-
&:hover{
|
|
147
|
-
transform: scale(1.2);
|
|
131
|
+
|
|
132
|
+
img{
|
|
148
133
|
width: 100%;
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
background: $primary-color;
|
|
160
|
-
display: flex;;
|
|
161
|
-
border-bottom-left-radius: 20px;
|
|
162
|
-
border-bottom-right-radius: 20px;
|
|
163
|
-
}
|
|
134
|
+
height: 140px;
|
|
135
|
+
gap: 0px;
|
|
136
|
+
opacity: 0px;
|
|
137
|
+
border-top-left-radius: 20px;
|
|
138
|
+
border-top-right-radius: 20px;
|
|
139
|
+
display: block;
|
|
140
|
+
object-fit: cover;
|
|
141
|
+
object-position: top center;
|
|
142
|
+
transition: transform 0.4s ease;
|
|
143
|
+
transform-origin: 50% 100%;
|
|
164
144
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
line-height: 30px;
|
|
170
|
-
letter-spacing: 0.05em;
|
|
171
|
-
text-align: left;
|
|
172
|
-
text-underline-position: from-font;
|
|
173
|
-
text-decoration-skip-ink: none;
|
|
174
|
-
text-transform: uppercase;
|
|
175
|
-
color: #FFFFFF;
|
|
145
|
+
&:hover{
|
|
146
|
+
transform: scale(1.2);
|
|
147
|
+
width: 100%;
|
|
148
|
+
}
|
|
176
149
|
}
|
|
177
150
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
151
|
+
.details{
|
|
152
|
+
padding: 12px 20px 12px 20px;
|
|
153
|
+
gap: 0px;
|
|
154
|
+
border: 1px 0px 0px 0px;
|
|
155
|
+
justify-content: space-between;
|
|
156
|
+
align-items: center;
|
|
157
|
+
opacity: 0px;
|
|
158
|
+
background: $primary-color;
|
|
159
|
+
display: flex;;
|
|
160
|
+
border-bottom-left-radius: 20px;
|
|
161
|
+
border-bottom-right-radius: 20px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.name{
|
|
165
|
+
font-family: $font-default;
|
|
166
|
+
font-size: 16px;
|
|
167
|
+
font-weight: 400;
|
|
168
|
+
line-height: 24px;
|
|
169
|
+
letter-spacing: 0.05em;
|
|
170
|
+
text-align: left;
|
|
171
|
+
text-underline-position: from-font;
|
|
172
|
+
text-decoration-skip-ink: none;
|
|
173
|
+
text-transform: uppercase;
|
|
174
|
+
color: #FFFFFF;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.tour-count{
|
|
178
|
+
font-family: $font-default;
|
|
179
|
+
font-size: 14px;
|
|
180
|
+
font-weight: 400;
|
|
181
|
+
line-height: 21px;
|
|
182
|
+
letter-spacing: 0.05em;
|
|
183
|
+
text-align: right;
|
|
184
|
+
text-underline-position: from-font;
|
|
185
|
+
text-decoration-skip-ink: none;
|
|
186
|
+
color: #FFFFFF;
|
|
187
|
+
cursor: pointer;
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
svg{
|
|
191
|
+
vertical-align: middle;
|
|
192
|
+
}
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
}
|
|
@@ -199,10 +199,11 @@
|
|
|
199
199
|
margin-top: 100px;
|
|
200
200
|
|
|
201
201
|
&_header{
|
|
202
|
-
height:
|
|
202
|
+
height: 150px;
|
|
203
203
|
text-align: center;
|
|
204
204
|
position: relative;
|
|
205
|
-
background-image: url('/iceholidays-assets/images/
|
|
205
|
+
background-image: url('/iceholidays-assets/images/TSTRibbon.png');
|
|
206
|
+
background-repeat: no-repeat;
|
|
206
207
|
|
|
207
208
|
h1{
|
|
208
209
|
font-family: $font-default;
|
|
@@ -212,7 +213,7 @@
|
|
|
212
213
|
letter-spacing: 0.06em;
|
|
213
214
|
text-underline-position: from-font;
|
|
214
215
|
text-decoration-skip-ink: none;
|
|
215
|
-
color:
|
|
216
|
+
color: $supportive-color;
|
|
216
217
|
text-transform: uppercase;
|
|
217
218
|
|
|
218
219
|
position: absolute;
|
|
@@ -230,4 +231,88 @@
|
|
|
230
231
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
231
232
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
232
233
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.location-dropdown{
|
|
237
|
+
margin: 10px;
|
|
238
|
+
|
|
239
|
+
.location-filter{
|
|
240
|
+
height: 46px;
|
|
241
|
+
width: 100%;
|
|
242
|
+
|
|
243
|
+
.ant-select-selector{
|
|
244
|
+
border-radius: 30px;
|
|
245
|
+
border: none;
|
|
246
|
+
background: linear-gradient(360deg, $primary-color 5.04%, #F9E298 99.13%);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.ant-select-selection-wrap{
|
|
250
|
+
padding: 3px 16px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.ant-select-selection-item{
|
|
254
|
+
font-family: $font-default;
|
|
255
|
+
font-weight: 500;
|
|
256
|
+
font-size: 16px;
|
|
257
|
+
line-height: 24px;
|
|
258
|
+
letter-spacing: 5%;
|
|
259
|
+
text-transform: uppercase;
|
|
260
|
+
color: $supportive-color;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.ant-select-arrow{
|
|
264
|
+
inset-inline-end: 20px;
|
|
265
|
+
color: $supportive-color;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.location-filter_option{
|
|
273
|
+
font-family: Poppins;
|
|
274
|
+
font-weight: 400;
|
|
275
|
+
font-size: 16px;
|
|
276
|
+
line-height: 32px;
|
|
277
|
+
letter-spacing: 5%;
|
|
278
|
+
text-transform: uppercase;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@media only screen and (min-width: 769px) {
|
|
282
|
+
#headline{
|
|
283
|
+
--side-padding: 10%;
|
|
284
|
+
|
|
285
|
+
&_banner{
|
|
286
|
+
height: 352px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
&_header{
|
|
290
|
+
|
|
291
|
+
h1{
|
|
292
|
+
font-size: 45px;
|
|
293
|
+
font-weight: 400;
|
|
294
|
+
line-height: 67.5px;
|
|
295
|
+
letter-spacing: 0.05em;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.ant-breadcrumb{
|
|
300
|
+
font-size: 14px;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
.postcards{
|
|
304
|
+
grid-template-columns: repeat(2, 1fr);
|
|
305
|
+
|
|
306
|
+
.postcard{
|
|
307
|
+
img{
|
|
308
|
+
height: 230px;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.name{
|
|
312
|
+
font-size: 20px;
|
|
313
|
+
font-weight: 400;
|
|
314
|
+
line-height: 30px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
233
318
|
}
|
|
@@ -1,127 +1,104 @@
|
|
|
1
1
|
|
|
2
2
|
#main-header{
|
|
3
|
+
--button-height: 35px;
|
|
3
4
|
position: relative;
|
|
4
|
-
background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, $secondary-color -2.73%, #B68B31 108.18%);
|
|
5
|
-
width: 100%;
|
|
6
5
|
height: 50px;
|
|
7
|
-
|
|
6
|
+
width: 100%;
|
|
7
|
+
background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, $secondary-color -2.73%, #B68B31 108.18%);
|
|
8
|
+
padding-inline-end: 25px;
|
|
9
|
+
display: inline-flex;
|
|
10
|
+
justify-content: space-between;
|
|
8
11
|
align-items: center;
|
|
9
|
-
justify-content: space-around;
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
display: flex;
|
|
13
|
-
|
|
14
|
-
justify-content: space-around;
|
|
13
|
+
#nav-buttons{
|
|
14
|
+
display: inline-flex;
|
|
15
|
+
gap: 7px;
|
|
15
16
|
}
|
|
16
|
-
|
|
17
|
-
.nav-menu{
|
|
18
|
-
/* position: absolute; */
|
|
19
|
-
display: grid;
|
|
20
|
-
grid-template-columns: auto auto auto auto;
|
|
21
17
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
text-decoration-skip-ink: none;
|
|
33
|
-
text-decoration: none;
|
|
34
|
-
|
|
35
|
-
&.active{
|
|
36
|
-
color: #5B4713;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
}
|
|
18
|
+
#toggle-menu{
|
|
19
|
+
height: var(--button-height);
|
|
20
|
+
background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
21
|
+
border: 1px solid;
|
|
22
|
+
border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
|
|
23
|
+
box-shadow: 0px 4px 4px 0px #F9F6F31A inset, 0px 1px 2px 0px #AA853E80;
|
|
24
|
+
width: 35px;
|
|
25
|
+
height: 35px;
|
|
26
|
+
padding: 6px 5px 6px 5px;
|
|
27
|
+
border-radius: 23px;
|
|
40
28
|
}
|
|
41
29
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
left: 183px;
|
|
45
|
-
gap: 35px;
|
|
46
|
-
opacity: 0px;
|
|
30
|
+
.nav-menu{
|
|
31
|
+
display: none;
|
|
47
32
|
}
|
|
48
|
-
|
|
33
|
+
|
|
49
34
|
.logo{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
#right-menu{
|
|
59
|
-
top: 13px;
|
|
60
|
-
left: 877px;
|
|
61
|
-
gap: 35px;
|
|
62
|
-
opacity: 0px;
|
|
35
|
+
z-index: 2;
|
|
36
|
+
position: relative;
|
|
37
|
+
|
|
38
|
+
&.logo_mobile{
|
|
39
|
+
padding-top: 25px;
|
|
40
|
+
}
|
|
63
41
|
}
|
|
64
42
|
|
|
65
43
|
#get-brochure{
|
|
66
|
-
position: absolute;
|
|
67
44
|
width: 152px;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
line-height: 21px;
|
|
86
|
-
letter-spacing: 0.05em;
|
|
87
|
-
text-align: left;
|
|
88
|
-
text-underline-position: from-font;
|
|
89
|
-
text-decoration-skip-ink: none;
|
|
90
|
-
}
|
|
45
|
+
height: var(--button-height);
|
|
46
|
+
padding: 7px 8px 7px 8px;
|
|
47
|
+
border-radius: 20px;
|
|
48
|
+
border: 1px solid;
|
|
49
|
+
background: linear-gradient(287.63deg, $primary-color -19.9%, $primary-color 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
50
|
+
border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
|
|
51
|
+
box-shadow: 0px 3px 10px 0px #AA853E80, 0px 4px 4px 0px #F9F6F31A inset;
|
|
52
|
+
text-align: center;
|
|
53
|
+
text-transform: uppercase;
|
|
54
|
+
font-family: $font-default;
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
font-weight: 500;
|
|
57
|
+
line-height: 21px;
|
|
58
|
+
letter-spacing: 0.05em;
|
|
59
|
+
text-align: left;
|
|
60
|
+
text-underline-position: from-font;
|
|
61
|
+
text-decoration-skip-ink: none;
|
|
91
62
|
}
|
|
92
63
|
}
|
|
93
64
|
|
|
94
65
|
#main-footer{
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
gap: 0px;
|
|
98
|
-
opacity: 0px;
|
|
99
|
-
background: linear-gradient(270deg, #AA853E 0%, $secondary-color 33.5%, #FFF3A6 50%, $secondary-color 65.5%, #E1B65B 100%),
|
|
100
|
-
linear-gradient(4.08deg, rgba(170, 133, 62, 0.5) -2.54%, rgba(249, 225, 151, 0.5) 7.02%);
|
|
66
|
+
background: url('/iceholidays-assets/images/footer-bg_mobile.png') no-repeat;
|
|
67
|
+
padding: 50px 30px;
|
|
101
68
|
position: relative;
|
|
102
69
|
|
|
103
70
|
&_links{
|
|
104
|
-
margin: auto;
|
|
105
|
-
height: 196px;
|
|
106
|
-
width: 70%;
|
|
107
|
-
display: flex;
|
|
108
|
-
align-items: center;
|
|
109
|
-
justify-content: space-between;
|
|
110
|
-
padding: 38px 0;
|
|
111
|
-
position: relative;
|
|
112
71
|
|
|
113
72
|
&> div{
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
73
|
+
border-bottom: 1px solid #DFB16380;
|
|
74
|
+
padding: 10px 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ant-space{
|
|
78
|
+
width: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.link-group-title{
|
|
82
|
+
font-family: $font-default;
|
|
83
|
+
font-family: Poppins;
|
|
84
|
+
font-size: 14px;
|
|
85
|
+
font-weight: 400;
|
|
86
|
+
line-height: 21px;
|
|
87
|
+
letter-spacing: 0.05em;
|
|
88
|
+
text-align: left;
|
|
89
|
+
text-underline-position: from-font;
|
|
90
|
+
text-decoration-skip-ink: none;
|
|
91
|
+
|
|
92
|
+
color: $supportive-color;
|
|
93
|
+
// height: 37px;
|
|
94
|
+
grid-row-start: 2 span;
|
|
118
95
|
}
|
|
119
96
|
|
|
120
97
|
a{
|
|
121
98
|
font-family: $font-default;
|
|
122
|
-
font-size:
|
|
99
|
+
font-size: 16px;
|
|
123
100
|
font-weight: 500;
|
|
124
|
-
line-height:
|
|
101
|
+
line-height: 32px;
|
|
125
102
|
letter-spacing: 0.05em;
|
|
126
103
|
text-align: left;
|
|
127
104
|
text-underline-position: from-font;
|
|
@@ -133,45 +110,21 @@
|
|
|
133
110
|
div:has(> a+a){
|
|
134
111
|
display: grid;
|
|
135
112
|
grid-template-columns: repeat(2, 1fr);
|
|
136
|
-
grid-template-rows:
|
|
113
|
+
grid-template-rows: 1fr;
|
|
137
114
|
column-gap: 34px;
|
|
138
115
|
}
|
|
139
|
-
|
|
140
|
-
.link-group-title{
|
|
141
|
-
font-family: $font-default;
|
|
142
|
-
font-size: 15px;
|
|
143
|
-
font-weight: 400;
|
|
144
|
-
line-height: 22.5px;
|
|
145
|
-
letter-spacing: 0.05em;
|
|
146
|
-
text-align: left;
|
|
147
|
-
text-underline-position: from-font;
|
|
148
|
-
text-decoration-skip-ink: none;
|
|
149
|
-
color: #5B4713;
|
|
150
|
-
height: 37px;
|
|
151
|
-
grid-row-start: 2 span;
|
|
152
|
-
}
|
|
153
116
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
left: 0;
|
|
159
|
-
gap: 0px;
|
|
160
|
-
border: 1px 0px 0px 0px;
|
|
161
|
-
opacity: 0px;
|
|
162
|
-
border: 1px solid #DFB16380;
|
|
163
|
-
position: absolute;
|
|
117
|
+
.contact-info{
|
|
118
|
+
.link-group-title{
|
|
119
|
+
text-align: center;
|
|
120
|
+
}
|
|
164
121
|
}
|
|
165
122
|
}
|
|
166
123
|
|
|
167
124
|
|
|
168
125
|
#copyright{
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
left: 592px;
|
|
172
|
-
gap: 0px;
|
|
173
|
-
opacity: 0px;
|
|
174
|
-
position: absolute;
|
|
126
|
+
text-align: center;
|
|
127
|
+
padding: 20px 0 0;
|
|
175
128
|
|
|
176
129
|
span{
|
|
177
130
|
font-family: $font-default;
|
|
@@ -186,3 +139,143 @@
|
|
|
186
139
|
}
|
|
187
140
|
}
|
|
188
141
|
}
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
#nav-drawer.ant-drawer-content{
|
|
145
|
+
background: #F7F4EB;
|
|
146
|
+
|
|
147
|
+
.ant-drawer-header{
|
|
148
|
+
border: none;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.ant-drawer-header-title{
|
|
152
|
+
justify-content: flex-end;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.ant-drawer-close{
|
|
156
|
+
width: 35px;
|
|
157
|
+
height: 35px;
|
|
158
|
+
padding: 6px 5px 6px 5px;
|
|
159
|
+
border-radius: 23px;
|
|
160
|
+
background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
161
|
+
border: 1px solid;
|
|
162
|
+
border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
|
|
163
|
+
box-shadow: 0px 4px 4px 0px #F9F6F31A inset, 0px 1px 2px 0px #AA853E80;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.ant-drawer-body{
|
|
167
|
+
padding: 0 30px;
|
|
168
|
+
|
|
169
|
+
.ant-menu-light{
|
|
170
|
+
background-color: transparent;
|
|
171
|
+
border: none;
|
|
172
|
+
|
|
173
|
+
.ant-menu-item{
|
|
174
|
+
border-bottom: 1px solid #AA853E24;
|
|
175
|
+
padding: 16px 0;
|
|
176
|
+
height: 56px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.ant-menu-item:has(.logo_desktop){
|
|
180
|
+
display: none;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.nav-menu_mobile{
|
|
185
|
+
a{
|
|
186
|
+
font-family: $font-default;
|
|
187
|
+
font-size: 16px;
|
|
188
|
+
font-weight: 500;
|
|
189
|
+
line-height: 24px;
|
|
190
|
+
letter-spacing: 0.05em;
|
|
191
|
+
text-align: left;
|
|
192
|
+
text-underline-position: from-font;
|
|
193
|
+
text-decoration-skip-ink: none;
|
|
194
|
+
text-transform: uppercase;
|
|
195
|
+
color: $supportive-color;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@media only screen and (min-width: 769px) {
|
|
203
|
+
#main-header{
|
|
204
|
+
#toggle-menu{
|
|
205
|
+
display: none;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.nav-menu{
|
|
209
|
+
display: flex;
|
|
210
|
+
flex: 1;
|
|
211
|
+
background: transparent;
|
|
212
|
+
height: 100%;
|
|
213
|
+
justify-content: center;
|
|
214
|
+
margin-inline-start: 80px;
|
|
215
|
+
|
|
216
|
+
a{
|
|
217
|
+
color: white;
|
|
218
|
+
text-transform: uppercase;
|
|
219
|
+
font-family: $font-default;
|
|
220
|
+
font-size: 16px;
|
|
221
|
+
font-weight: 500;
|
|
222
|
+
line-height: 24px;
|
|
223
|
+
letter-spacing: 0.05em;
|
|
224
|
+
text-align: left;
|
|
225
|
+
text-underline-position: from-font;
|
|
226
|
+
text-decoration-skip-ink: none;
|
|
227
|
+
text-decoration: none;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.ant-menu-item-selected{
|
|
231
|
+
a{
|
|
232
|
+
color: $supportive-color;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.ant-menu-item:has(.logo){
|
|
237
|
+
// margin: 0 -35px;
|
|
238
|
+
padding: 0;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.logo{
|
|
243
|
+
width: 304px;
|
|
244
|
+
// height: 66px;
|
|
245
|
+
|
|
246
|
+
&.logo_mobile{
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&.logo_desktop{
|
|
251
|
+
display: block;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
#main-footer{
|
|
257
|
+
height: 321px;
|
|
258
|
+
background: linear-gradient(270deg, #AA853E 0%, $secondary-color 33.5%, #FFF3A6 50%, $secondary-color 65.5%, #E1B65B 100%),
|
|
259
|
+
linear-gradient(4.08deg, rgba(170, 133, 62, 0.5) -2.54%, rgba(249, 225, 151, 0.5) 7.02%);
|
|
260
|
+
|
|
261
|
+
&_links {
|
|
262
|
+
width: 80%;
|
|
263
|
+
margin: auto !important;
|
|
264
|
+
|
|
265
|
+
&> div{
|
|
266
|
+
padding: 10px 0 40px;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.footer-menu{
|
|
271
|
+
padding-top: 40px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.contact-info{
|
|
275
|
+
.ant-flex{
|
|
276
|
+
gap: 10px !important;
|
|
277
|
+
align-items: flex-start;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|