iceholidays-frontend 0.3.0 → 0.5.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.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/iceholidays/frontend/actiontext.scss +119 -0
  3. data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +2194 -0
  4. data/app/assets/stylesheets/iceholidays/frontend/common.scss +317 -0
  5. data/app/assets/stylesheets/iceholidays/frontend/layout.scss +281 -0
  6. data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +122 -0
  7. data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +4 -0
  8. data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +52 -0
  9. data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +116 -0
  10. data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
  11. data/app/controllers/iceholidays/frontend/site_controller.rb +32 -0
  12. data/app/javascript/api-services/agents-api.service.ts +33 -0
  13. data/app/javascript/api-services/banners-api.service.ts +28 -0
  14. data/app/javascript/api-services/locations-api.service.ts +71 -0
  15. data/app/javascript/api-services/search-api.service.ts +16 -0
  16. data/app/javascript/api-services/series-api.service.ts +64 -0
  17. data/app/javascript/api-services/testimonials-api.service.ts +27 -0
  18. data/app/javascript/interfaces/agent.interface.ts +11 -0
  19. data/app/javascript/interfaces/banner.interface.ts +10 -0
  20. data/app/javascript/interfaces/country.interface.ts +19 -0
  21. data/app/javascript/interfaces/itinerary.interface.ts +111 -0
  22. data/app/javascript/interfaces/testimonial.interface.ts +6 -0
  23. data/app/javascript/react/App.tsx +32 -0
  24. data/app/javascript/react/components/Destinations.tsx +84 -143
  25. data/app/javascript/react/components/PriceDetails.tsx +146 -0
  26. data/app/javascript/react/components/Testimonials.tsx +68 -61
  27. data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
  28. data/app/javascript/react/components/shared/Headline.tsx +30 -0
  29. data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
  30. data/app/javascript/react/components/shared/LocationPostcards.tsx +52 -0
  31. data/app/javascript/react/components/shared/RibbonSection.tsx +21 -0
  32. data/app/javascript/react/index.js +3 -5
  33. data/app/javascript/react/layouts/MainFooter.tsx +97 -0
  34. data/app/javascript/react/layouts/MainHeader.tsx +83 -0
  35. data/app/javascript/react/layouts/MainLayout.tsx +21 -0
  36. data/app/javascript/react/pages/AboutUsPage.tsx +95 -0
  37. data/app/javascript/react/pages/BlogPage.tsx +81 -0
  38. data/app/javascript/react/pages/BlogShowPage.tsx +43 -0
  39. data/app/javascript/react/pages/ContactAgentsPage.tsx +185 -0
  40. data/app/javascript/react/pages/ContactUsPage.tsx +122 -0
  41. data/app/javascript/react/pages/CountriesPage.tsx +57 -0
  42. data/app/javascript/react/pages/Homepage.tsx +100 -0
  43. data/app/javascript/react/pages/ListingPage.tsx +292 -0
  44. data/app/javascript/react/pages/ShowPage.tsx +402 -0
  45. data/app/javascript/react/widgets/FilterPills.tsx +111 -0
  46. data/app/javascript/react/widgets/SearchBarWidget.tsx +58 -0
  47. data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
  48. data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
  49. data/app/views/iceholidays/frontend/site/index.html.erb +1 -24
  50. data/app/views/layouts/iceholidays/frontend/application.html.erb +2 -6
  51. data/config/routes.rb +10 -0
  52. data/lib/iceholidays/frontend/version.rb +1 -1
  53. data/public/iceholidays-assets/application.css +2638 -0
  54. data/public/iceholidays-assets/application.js +212 -651
  55. data/public/iceholidays-assets/application.js.map +4 -4
  56. data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
  57. data/public/iceholidays-assets/images/about_us.png +0 -0
  58. data/public/iceholidays-assets/images/about_us2.png +0 -0
  59. data/public/iceholidays-assets/images/blog.png +0 -0
  60. data/public/iceholidays-assets/images/blog1.png +0 -0
  61. data/public/iceholidays-assets/images/certificate1.png +0 -0
  62. data/public/iceholidays-assets/images/certificate2.png +0 -0
  63. data/public/iceholidays-assets/images/china_southern_airlines.png +0 -0
  64. data/public/iceholidays-assets/images/china_southern_airlines_icon.png +0 -0
  65. data/public/iceholidays-assets/images/competitiveness.png +0 -0
  66. data/public/iceholidays-assets/images/contact_agents.png +0 -0
  67. data/public/iceholidays-assets/images/contact_us.png +0 -0
  68. data/public/iceholidays-assets/images/contact_us_form.png +0 -0
  69. data/public/iceholidays-assets/images/destinations_logo.png +0 -0
  70. data/public/iceholidays-assets/images/ethical.png +0 -0
  71. data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
  72. data/public/iceholidays-assets/images/hw_logo.png +0 -0
  73. data/public/iceholidays-assets/images/innovative.png +0 -0
  74. data/public/iceholidays-assets/images/logo_mobile.png +0 -0
  75. data/public/iceholidays-assets/images/plane.png +0 -0
  76. data/public/iceholidays-assets/images/social/ico_fb.png +0 -0
  77. data/public/iceholidays-assets/images/social/ico_ig.png +0 -0
  78. data/public/iceholidays-assets/images/social/ico_twitter.png +0 -0
  79. data/public/iceholidays-assets/images/social/ico_yt.png +0 -0
  80. data/public/iceholidays-assets/images/social.png +0 -0
  81. metadata +74 -71
  82. data/app/assets/stylesheets/iceholidays/frontend/application.scss +0 -904
  83. data/app/javascript/react/components/Homepage.tsx +0 -15
  84. data/app/javascript/react/components/HomepageBanner.tsx +0 -62
  85. data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +0 -42
  86. data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +0 -20
  87. data/public/iceholidays-assets/images/Frame71.png +0 -0
  88. data/public/iceholidays-assets/images/africa.png +0 -0
  89. data/public/iceholidays-assets/images/banner1.png +0 -0
  90. data/public/iceholidays-assets/images/banner2.png +0 -0
  91. data/public/iceholidays-assets/images/china.png +0 -0
  92. data/public/iceholidays-assets/images/china2.png +0 -0
  93. data/public/iceholidays-assets/images/guangzhou.png +0 -0
  94. data/public/iceholidays-assets/images/guilin.png +0 -0
  95. data/public/iceholidays-assets/images/harbin.png +0 -0
  96. data/public/iceholidays-assets/images/hongkong.png +0 -0
  97. data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
  98. data/public/iceholidays-assets/images/jiangxi.png +0 -0
  99. data/public/iceholidays-assets/images/kenya.png +0 -0
  100. data/public/iceholidays-assets/images/kenya2.png +0 -0
  101. data/public/iceholidays-assets/images/kunming.png +0 -0
  102. data/public/iceholidays-assets/images/slikroad.png +0 -0
  103. data/public/iceholidays-assets/images/southafrica.png +0 -0
  104. data/public/iceholidays-assets/images/tanzania.png +0 -0
  105. data/public/iceholidays-assets/images/uganda.png +0 -0
  106. /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
  107. /data/public/iceholidays-assets/images/{chongqing.png → china_listings_cover.png} +0 -0
  108. /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
@@ -0,0 +1,317 @@
1
+
2
+
3
+ #headline{
4
+ //can change to container width
5
+ --side-padding: 20px;
6
+
7
+ &_banner{
8
+ // width: 1440px;
9
+ height: 180px;
10
+ background-size: cover;
11
+ background-repeat: no-repeat;
12
+ background-position: center center;
13
+ }
14
+
15
+ &_header{
16
+ padding: 20px var(--side-padding);
17
+ // width: 1440px;
18
+ // height: 106px;
19
+ top: 398px;
20
+ gap: 0px;
21
+ opacity: 0px;
22
+ background: linear-gradient(270deg, #AA853E 0%, #F9E298 33.5%, #FFF3A6 50%, #F9E298 65.5%, #E1B65B 100%),
23
+ linear-gradient(40.85deg, rgba(170, 133, 62, 0.5) -614.19%, rgba(249, 225, 151, 0.5) -547.57%);
24
+
25
+ h1{
26
+ // width: 314px;
27
+ // height: 68px;
28
+ margin: 0;
29
+ font-family: $font-default;
30
+ font-weight: 400;
31
+ font-size: 18px;
32
+ line-height: 27px;
33
+ letter-spacing: 5%;
34
+ text-align: left;
35
+ text-underline-position: from-font;
36
+ text-decoration-skip-ink: none;
37
+ color: $supportive-color;
38
+ text-transform: uppercase;
39
+ }
40
+
41
+ // .country-filter.ant-select{
42
+ // line-height: 35px;
43
+ // width: 170px;
44
+
45
+ // .ant-select-selector{
46
+ // padding: 3px 40px 3px 15px;
47
+ // border-radius: 30px;
48
+ // height: 36px;
49
+ // }
50
+
51
+ // .ant-select-selection-item{
52
+ // font-family: $font-default;
53
+ // font-size: 20px;
54
+ // font-weight: 500;
55
+ // line-height: 30px;
56
+ // letter-spacing: 0.05em;
57
+ // text-align: left;
58
+ // text-underline-position: from-font;
59
+ // text-decoration-skip-ink: none;
60
+ // color: #836848;
61
+ // }
62
+
63
+ // .ant-select-arrow{
64
+ // inset-inline-end: 20px;
65
+ // color: #836848;
66
+ // }
67
+ // }
68
+
69
+ }
70
+
71
+ .ant-breadcrumb{
72
+ padding: 10px var(--side-padding) 0;
73
+ font-size: 12px;
74
+ }
75
+ }
76
+
77
+ .date-selector{
78
+ background: #F5F5F5;
79
+ // width: Fixed (516px)px;
80
+ padding: 15px 24px;
81
+ border-radius: 10px;
82
+ display: inline-flex;
83
+ gap: 8px;
84
+ width: 100%;
85
+ flex-wrap: wrap;
86
+ box-sizing: border-box;
87
+
88
+ span{
89
+ border-width: 1px;
90
+ border-style: solid;
91
+ border-radius: 20px;
92
+ background: #FFFFFF;
93
+ font-family: $font-default;
94
+ font-size: 12px;
95
+ font-weight: 400;
96
+ line-height: 18px;
97
+ letter-spacing: 0.05em;
98
+ text-align: center;
99
+ text-underline-position: from-font;
100
+ text-decoration-skip-ink: none;
101
+ color: #999999;
102
+ padding: 2px 8px 2px 8px;
103
+ cursor: pointer;
104
+ }
105
+
106
+ .show-all-dates{
107
+ font-family: $font-default;
108
+ font-size: 11px;
109
+ font-weight: 400;
110
+ line-height: 16.5px;
111
+ text-align: right;
112
+ text-underline-position: from-font;
113
+ text-decoration-skip-ink: none;
114
+ color: $primary-color;
115
+ display: inline-flex;
116
+ gap: 5px;
117
+ cursor: pointer;
118
+ }
119
+ }
120
+
121
+ .postcards{
122
+ display: grid;
123
+ grid-template-columns: 1fr;
124
+ // grid-template-rows: repeat(2, 1fr);
125
+ gap: 20px;
126
+
127
+ .postcard{
128
+ border-radius: 20px;
129
+ overflow: hidden;
130
+ width: 100%;
131
+
132
+ img{
133
+ width: 100%;
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%;
144
+
145
+ &:hover{
146
+ transform: scale(1.2);
147
+ width: 100%;
148
+ }
149
+ }
150
+
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
+ }
194
+ }
195
+ }
196
+
197
+ #ribbon-section{
198
+ background: #F7F4EB;
199
+ margin-top: 100px;
200
+
201
+ &_header{
202
+ height: 138px;
203
+ text-align: center;
204
+ position: relative;
205
+ background-image: url('/iceholidays-assets/images/Layer_1.png');
206
+
207
+ h1{
208
+ font-family: $font-default;
209
+ font-size: 45px;
210
+ font-weight: 200;
211
+ line-height: 67.5px;
212
+ letter-spacing: 0.06em;
213
+ text-underline-position: from-font;
214
+ text-decoration-skip-ink: none;
215
+ color: $supportive-color;
216
+ text-transform: uppercase;
217
+
218
+ position: absolute;
219
+ bottom: 20px;
220
+ left: 50%;
221
+ transform: translate(-50%, 20px);
222
+ margin: 0;
223
+ }
224
+ }
225
+ }
226
+
227
+ .pre-wrap{
228
+ white-space: pre-wrap; /* css-3 */
229
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
230
+ white-space: -pre-wrap; /* Opera 4-6 */
231
+ white-space: -o-pre-wrap; /* Opera 7 */
232
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
233
+ }
234
+
235
+ .location-dropdown{
236
+ margin: 10px;
237
+
238
+ .location-filter{
239
+ height: 46px;
240
+ width: 100%;
241
+
242
+ .ant-select-selector{
243
+ border-radius: 30px;
244
+ border: none;
245
+ background: linear-gradient(360deg, $primary-color 5.04%, #F9E298 99.13%);
246
+ }
247
+
248
+ .ant-select-selection-wrap{
249
+ padding: 3px 16px;
250
+ }
251
+
252
+ .ant-select-selection-item{
253
+ font-family: $font-default;
254
+ font-weight: 500;
255
+ font-size: 16px;
256
+ line-height: 24px;
257
+ letter-spacing: 5%;
258
+ text-transform: uppercase;
259
+ color: $supportive-color;
260
+ }
261
+
262
+ .ant-select-arrow{
263
+ inset-inline-end: 20px;
264
+ color: $supportive-color;
265
+ }
266
+
267
+ }
268
+
269
+ }
270
+
271
+ .location-filter_option{
272
+ font-family: Poppins;
273
+ font-weight: 400;
274
+ font-size: 16px;
275
+ line-height: 32px;
276
+ letter-spacing: 5%;
277
+ text-transform: uppercase;
278
+ }
279
+
280
+ @media only screen and (min-width: 769px) {
281
+ #headline{
282
+ --side-padding: 10%;
283
+
284
+ &_banner{
285
+ height: 352px;
286
+ }
287
+
288
+ &_header{
289
+
290
+ h1{
291
+ font-size: 45px;
292
+ font-weight: 400;
293
+ line-height: 67.5px;
294
+ letter-spacing: 0.05em;
295
+ }
296
+ }
297
+
298
+ .ant-breadcrumb{
299
+ font-size: 14px;
300
+ }
301
+ }
302
+ .postcards{
303
+ grid-template-columns: repeat(2, 1fr);
304
+
305
+ .postcard{
306
+ img{
307
+ height: 230px;
308
+ }
309
+
310
+ .name{
311
+ font-size: 20px;
312
+ font-weight: 400;
313
+ line-height: 30px;
314
+ }
315
+ }
316
+ }
317
+ }
@@ -0,0 +1,281 @@
1
+
2
+ #main-header{
3
+ --button-height: 35px;
4
+ position: relative;
5
+ height: 50px;
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;
11
+ align-items: center;
12
+
13
+ #nav-buttons{
14
+ display: inline-flex;
15
+ gap: 7px;
16
+ }
17
+
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;
28
+ }
29
+
30
+ .nav-menu{
31
+ display: none;
32
+ }
33
+
34
+ .logo{
35
+ z-index: 2;
36
+ position: relative;
37
+
38
+ &.logo_mobile{
39
+ padding-top: 25px;
40
+ }
41
+ }
42
+
43
+ #get-brochure{
44
+ width: 152px;
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;
62
+ }
63
+ }
64
+
65
+ #main-footer{
66
+ background: url('/iceholidays-assets/images/footer-bg_mobile.png') no-repeat;
67
+ padding: 50px 30px;
68
+ position: relative;
69
+
70
+ &_links{
71
+
72
+ &> div{
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;
95
+ }
96
+
97
+ a{
98
+ font-family: $font-default;
99
+ font-size: 16px;
100
+ font-weight: 500;
101
+ line-height: 32px;
102
+ letter-spacing: 0.05em;
103
+ text-align: left;
104
+ text-underline-position: from-font;
105
+ text-decoration-skip-ink: none;
106
+ color: #AA853E;
107
+ text-transform: uppercase;
108
+ }
109
+
110
+ div:has(> a+a){
111
+ display: grid;
112
+ grid-template-columns: repeat(2, 1fr);
113
+ grid-template-rows: 1fr;
114
+ column-gap: 34px;
115
+ }
116
+
117
+ .contact-info{
118
+ .link-group-title{
119
+ text-align: center;
120
+ }
121
+ }
122
+ }
123
+
124
+
125
+ #copyright{
126
+ text-align: center;
127
+ padding: 20px 0 0;
128
+
129
+ span{
130
+ font-family: $font-default;
131
+ font-size: 14px;
132
+ font-weight: 400;
133
+ line-height: 16.93px;
134
+ letter-spacing: 0.05em;
135
+ text-align: left;
136
+ text-underline-position: from-font;
137
+ text-decoration-skip-ink: none;
138
+ color: #AA853E;
139
+ }
140
+ }
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
+ }
@@ -0,0 +1,122 @@
1
+ .ant-layout-content{
2
+ position: relative;
3
+ }
4
+
5
+ .ant-btn-variant-solid{
6
+ background-color: $primary-color;
7
+ color: #FFFFFF;
8
+ border-radius: 20px;
9
+
10
+ &:not(:disabled):not(.ant-btn-disabled):hover{
11
+ background-color: #AA853E;
12
+ }
13
+ }
14
+
15
+ .ant-btn-color-primary.ant-btn-variant-outlined{
16
+ border-color: $primary-color;
17
+ color: $primary-color;
18
+ border-radius: 20px;
19
+
20
+ &:not(:disabled):not(.ant-btn-disabled):hover{
21
+ --darkPrimaryColor: #AA853E;
22
+ border-color: var(--darkPrimaryColor);
23
+ color: var(--darkPrimaryColor);
24
+ }
25
+ }
26
+
27
+ .ant-btn-color-default.ant-btn-variant-filled{
28
+ color: $primary-color;
29
+ }
30
+
31
+ .ant-btn-color-primary {
32
+ box-shadow: 0 2px 0 rgb(220 176 98 / 10%);;
33
+ }
34
+
35
+ .ant-btn-sm{
36
+ font-size: 10px;
37
+ }
38
+
39
+ .ant-input-outlined,
40
+ .ant-picker-outlined{
41
+ &:hover, &:focus{
42
+ border-color: $primary-color;
43
+ }
44
+
45
+ &:focus{
46
+ box-shadow: 0 2px 0 rgb(220 176 98 / 10%);
47
+ }
48
+ }
49
+
50
+
51
+
52
+
53
+ [class~='ant-carousel'] {
54
+ [class~='slick-dots'] {
55
+ bottom: 30px;
56
+
57
+ li {
58
+ width: 15px !important;
59
+
60
+ button{
61
+ width: 13px;
62
+ height: 13px;
63
+ border-radius: 100%;
64
+ background-color: transparent;
65
+ border: 1px solid #FFFFFF;
66
+ opacity: 1;
67
+ }
68
+
69
+ &.slick-active {
70
+ button {
71
+ width: 13px;
72
+ height: 13px;
73
+ border-radius: 100%;
74
+ background-color: white;
75
+ }
76
+ }
77
+ }
78
+ }
79
+
80
+ .slick-prev,
81
+ .slick-next{
82
+ width: unset;
83
+ height: unset;
84
+
85
+ &::after{
86
+ display: none;
87
+ }
88
+ }
89
+
90
+ }
91
+
92
+ a{
93
+ color: $primary-color;
94
+ }
95
+
96
+ .ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled),
97
+ .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled){
98
+ background-color: transparent;
99
+ color: $primary-color;
100
+ }
101
+
102
+ .ant-select-dropdown .ant-select-item{
103
+ color: #00000080;
104
+ }
105
+
106
+ .ant-menu-light{
107
+ &.ant-menu-horizontal{
108
+
109
+ &>.ant-menu-item:hover,
110
+ &>.ant-menu-item-selected,
111
+ &>.ant-menu-item-active{
112
+
113
+ &::after{
114
+ display: none;
115
+ }
116
+ }
117
+ }
118
+
119
+ .ant-menu-item-selected{
120
+ background-color: transparent;
121
+ }
122
+ }
@@ -0,0 +1,4 @@
1
+ $font-default: Poppins, san-serif;
2
+ $primary-color: #DCB062;
3
+ $supportive-color: #5B4713;
4
+ $secondary-color: #F9E298;