stay_commerce-frontend 0.1.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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/builds/404error-RVKQJ4S4.digested.jpg +0 -0
- data/app/assets/builds/Facebook-5HJUILVR.digested.svg +3 -0
- data/app/assets/builds/Google-CZ3UPVSC.digested.svg +6 -0
- data/app/assets/builds/application.js +95 -0
- data/app/assets/builds/application.js.map +7 -0
- data/app/assets/builds/beach-KAZW5GM3.digested.jpg +0 -0
- data/app/assets/builds/beach2-3ARC34NS.digested.jpg +0 -0
- data/app/assets/builds/beach3-PSTOH5FV.digested.jpg +0 -0
- data/app/assets/builds/beach4-PWNRPD3S.digested.jpg +0 -0
- data/app/assets/builds/beach5-SBOKKRHF.digested.jpg +0 -0
- data/app/assets/builds/beach6-SXZ5Y5AI.digested.jpg +0 -0
- data/app/assets/builds/beach7-FNBMFVKK.digested.jpg +0 -0
- data/app/assets/builds/beach8-TD7LTRQM.digested.jpg +0 -0
- data/app/assets/builds/bg-image-H7UGUMV2.digested.jpg +0 -0
- data/app/assets/builds/bgimage-DU3PCXKN.digested.jpg +0 -0
- data/app/assets/builds/bundle.css +30914 -0
- data/app/assets/builds/bundle.css.map +7 -0
- data/app/assets/builds/bundle.js +74569 -0
- data/app/assets/builds/bundle.js.map +7 -0
- data/app/assets/builds/hotel1-HGBXPKJK.digested.jpg +0 -0
- data/app/assets/builds/logo_updated-KQWAXLYL.digested.png +0 -0
- data/app/assets/builds/styles.css +6422 -0
- data/app/assets/builds/styles.css.map +7 -0
- data/app/assets/config/manifest.js +2 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/stay_commerce/frontend/beach-666122_1280 (1).jpg +0 -0
- data/app/assets/images/stay_commerce/frontend/beach-666122_1280.jpg +0 -0
- data/app/assets/stylesheets/stay_commerce/frontend/application.css +15 -0
- data/app/controllers/stay_commerce/frontend/application_controller.rb +8 -0
- data/app/controllers/stay_commerce/frontend/welcome_controller.rb +6 -0
- data/app/helpers/stay_commerce/frontend/application_helper.rb +6 -0
- data/app/javascript/Images/404error.jpg +0 -0
- data/app/javascript/Images/Facebook.svg +3 -0
- data/app/javascript/Images/Google.svg +6 -0
- data/app/javascript/Images/beach-2245867_1280.jpg +0 -0
- data/app/javascript/Images/beach.jpg +0 -0
- data/app/javascript/Images/beach2.jpg +0 -0
- data/app/javascript/Images/beach3.jpg +0 -0
- data/app/javascript/Images/beach4.jpg +0 -0
- data/app/javascript/Images/beach5.jpg +0 -0
- data/app/javascript/Images/beach6.jpg +0 -0
- data/app/javascript/Images/beach7.jpg +0 -0
- data/app/javascript/Images/beach8.jpg +0 -0
- data/app/javascript/Images/bg-image.jpg +0 -0
- data/app/javascript/Images/bgimage.jpg +0 -0
- data/app/javascript/Images/blog-1.jpg +0 -0
- data/app/javascript/Images/gallery.png +0 -0
- data/app/javascript/Images/home 5.jpg +0 -0
- data/app/javascript/Images/home1.jpg +0 -0
- data/app/javascript/Images/home2.jpg +0 -0
- data/app/javascript/Images/home3.jpg +0 -0
- data/app/javascript/Images/home6.jpg +0 -0
- data/app/javascript/Images/hotel1.jpg +0 -0
- data/app/javascript/Images/room1.jpg +0 -0
- data/app/javascript/Images/room2.jpg +0 -0
- data/app/javascript/Images/room3.jpg +0 -0
- data/app/javascript/Images/room4.jpg +0 -0
- data/app/javascript/Images/wine-4520213_1280.jpg +0 -0
- data/app/javascript/application.js +1 -0
- data/app/javascript/react/Api/apiConstants.js +47 -0
- data/app/javascript/react/assets/beach-2245867_1280.jpg +0 -0
- data/app/javascript/react/assets/logo.png +0 -0
- data/app/javascript/react/assets/logo_updated.png +0 -0
- data/app/javascript/react/components/AboutUsPage/AboutPage.jsx +41 -0
- data/app/javascript/react/components/AboutusFront/About.jsx +37 -0
- data/app/javascript/react/components/Accommodation/Accommodation.jsx +32 -0
- data/app/javascript/react/components/Accommodation/NormalListing.jsx +50 -0
- data/app/javascript/react/components/Accommodation/SpecialListing.jsx +51 -0
- data/app/javascript/react/components/Accountpage/AccountInfo.jsx +217 -0
- data/app/javascript/react/components/Accountpage/AccountPage.jsx +27 -0
- data/app/javascript/react/components/Accountpage/CommonPage.jsx +24 -0
- data/app/javascript/react/components/AddNewProperty/CommonLayout.jsx +68 -0
- data/app/javascript/react/components/AddNewProperty/Description.jsx +229 -0
- data/app/javascript/react/components/AddNewProperty/Details.jsx +234 -0
- data/app/javascript/react/components/AddNewProperty/Images.jsx +196 -0
- data/app/javascript/react/components/AddNewProperty/Location.jsx +239 -0
- data/app/javascript/react/components/AddNewProperty/Room.jsx +1132 -0
- data/app/javascript/react/components/AvatarDropdown/AvatarDropDown.jsx +142 -0
- data/app/javascript/react/components/BlogDesign/BlogsLatest.jsx +67 -0
- data/app/javascript/react/components/ContactUs/Contact.jsx +89 -0
- data/app/javascript/react/components/FacilitiesSection/Facilities.jsx +66 -0
- data/app/javascript/react/components/FixedNavbar/FixedNav.jsx +88 -0
- data/app/javascript/react/components/ForgetPassword/ForgetPassword.jsx +103 -0
- data/app/javascript/react/components/Gallery/Gallery.jsx +164 -0
- data/app/javascript/react/components/GalleryModalLight/GalleryModalLight.jsx +35 -0
- data/app/javascript/react/components/GallerySlider/GallerySlider.jsx +58 -0
- data/app/javascript/react/components/Headers/PropertyCard.jsx +46 -0
- data/app/javascript/react/components/HeroSectionDesign/BookingForm.jsx +178 -0
- data/app/javascript/react/components/HeroSectionDesign/HeroSection.jsx +29 -0
- data/app/javascript/react/components/HeroSectionDesign/MyPropertiesListing.jsx +104 -0
- data/app/javascript/react/components/HeroSectionDesign/PropertiesPage.jsx +122 -0
- data/app/javascript/react/components/HotelListing/Listing.jsx +48 -0
- data/app/javascript/react/components/Layout/Layout.js +18 -0
- data/app/javascript/react/components/Listing-stay-Detail/AmenitiesFeatures.jsx +58 -0
- data/app/javascript/react/components/Listing-stay-Detail/AmenitiesModal.jsx +250 -0
- data/app/javascript/react/components/Listing-stay-Detail/ApartmentCard.jsx +120 -0
- data/app/javascript/react/components/Listing-stay-Detail/BookingModal.jsx +398 -0
- data/app/javascript/react/components/Listing-stay-Detail/CheckoutForm.jsx +296 -0
- data/app/javascript/react/components/Listing-stay-Detail/ListingStayDetailPage.jsx +512 -0
- data/app/javascript/react/components/Listing-stay-Detail/PropertyDescription.jsx +76 -0
- data/app/javascript/react/components/Listing-stay-Detail/PropertyDetailsCard.jsx +62 -0
- data/app/javascript/react/components/Listing-stay-Detail/Reviews.jsx +132 -0
- data/app/javascript/react/components/Listing-stay-Detail/RoomDescriptionModal.jsx +105 -0
- data/app/javascript/react/components/Listing-stay-Detail/Rules.jsx +23 -0
- data/app/javascript/react/components/ListingImageGallery/ListingImageGallery.jsx +30 -0
- data/app/javascript/react/components/LoginPage/LoginPage.jsx +115 -0
- data/app/javascript/react/components/MobileNav/MobileMenu.jsx +47 -0
- data/app/javascript/react/components/Navbar/Navbar.jsx +25 -0
- data/app/javascript/react/components/Page404/Page404.jsx +30 -0
- data/app/javascript/react/components/PropertyListing/MyProperties.jsx +146 -0
- data/app/javascript/react/components/PropertyListing/StayBooking/BookingDetails.jsx +178 -0
- data/app/javascript/react/components/PropertyListing/StayBooking/MyBooking.jsx +83 -0
- data/app/javascript/react/components/ResetPassword/ResetPassword.jsx +117 -0
- data/app/javascript/react/components/SignupPage/SignupPage.jsx +185 -0
- data/app/javascript/react/components/SmallNavbar/SmallNav.jsx +51 -0
- data/app/javascript/react/components/SocialAuth/SocialAuth.jsx +21 -0
- data/app/javascript/react/components/StayCard/StayCard.jsx +69 -0
- data/app/javascript/react/components/StayCard/StayCard2.jsx +45 -0
- data/app/javascript/react/components/StayCard/StayCard3.jsx +45 -0
- data/app/javascript/react/components/TestimonialSection/Testimonial.jsx +113 -0
- data/app/javascript/react/components/Unauthorized/Unauthorized.jsx +12 -0
- data/app/javascript/react/data/jsons/__countryListing.json +201 -0
- data/app/javascript/react/packs/App.js +26 -0
- data/app/javascript/react/packs/index.jsx +38 -0
- data/app/javascript/react/packs/routes/ParentRoute.jsx +14 -0
- data/app/javascript/react/packs/routes/Route.jsx +163 -0
- data/app/javascript/react/pages/AccommodationList.jsx +21 -0
- data/app/javascript/react/pages/Home.jsx +32 -0
- data/app/javascript/react/redux/slices/AuthSlice/AuthSlice.jsx +100 -0
- data/app/javascript/react/redux/slices/PropertySlice/PropertySlice.jsx +722 -0
- data/app/javascript/react/redux/slices/PropertySlice/Searchslice.jsx +36 -0
- data/app/javascript/react/redux/slices/UserSlice/UserSlice.jsx +215 -0
- data/app/javascript/react/redux/store.js +35 -0
- data/app/javascript/react/shared/Avatar/Avatar.jsx +32 -0
- data/app/javascript/react/shared/Badge/Badge.jsx +33 -0
- data/app/javascript/react/shared/Button/Button.jsx +67 -0
- data/app/javascript/react/shared/Button/ButtonPrimary.jsx +11 -0
- data/app/javascript/react/shared/Button/ButtonSelect.jsx +9 -0
- data/app/javascript/react/shared/Checkbox/Checkbox.jsx +38 -0
- data/app/javascript/react/shared/CurrencySymbol.jsx +6 -0
- data/app/javascript/react/shared/DateField/CustomDatePicker.jsx +69 -0
- data/app/javascript/react/shared/FooterSection/Footer.jsx +75 -0
- data/app/javascript/react/shared/FormField/FormField.jsx +75 -0
- data/app/javascript/react/shared/FormItem/FormItem.jsx +20 -0
- data/app/javascript/react/shared/Input/Input.jsx +27 -0
- data/app/javascript/react/shared/Label/Label.jsx +12 -0
- data/app/javascript/react/shared/Modal.jsx +20 -0
- data/app/javascript/react/shared/NcImage/NcImage.jsx +101 -0
- data/app/javascript/react/shared/NcImage/PlaceIcon.jsx +31 -0
- data/app/javascript/react/shared/NcImage/placecImageIcon.svg +6 -0
- data/app/javascript/react/shared/Select/Select.jsx +20 -0
- data/app/javascript/react/styles/404error.scss +58 -0
- data/app/javascript/react/styles/ApartmentCard.scss +126 -0
- data/app/javascript/react/styles/BookingDetails.scss +457 -0
- data/app/javascript/react/styles/Modal.scss +36 -0
- data/app/javascript/react/styles/PropertiesPage.scss +219 -0
- data/app/javascript/react/styles/RenderSection.scss +480 -0
- data/app/javascript/react/styles/about.scss +97 -0
- data/app/javascript/react/styles/accountinfo.scss +67 -0
- data/app/javascript/react/styles/accountpage.scss +36 -0
- data/app/javascript/react/styles/amenitiesfeatures.scss +223 -0
- data/app/javascript/react/styles/application.scss +87 -0
- data/app/javascript/react/styles/avatar.scss +39 -0
- data/app/javascript/react/styles/avatardropdown.scss +57 -0
- data/app/javascript/react/styles/badge.scss +90 -0
- data/app/javascript/react/styles/blog.scss +100 -0
- data/app/javascript/react/styles/bookingform.scss +124 -0
- data/app/javascript/react/styles/button.scss +44 -0
- data/app/javascript/react/styles/buttonprimary.scss +32 -0
- data/app/javascript/react/styles/checkbox.scss +37 -0
- data/app/javascript/react/styles/commonlayout.scss +83 -0
- data/app/javascript/react/styles/commonpage.scss +51 -0
- data/app/javascript/react/styles/contact.scss +173 -0
- data/app/javascript/react/styles/customdatepicker.scss +120 -0
- data/app/javascript/react/styles/description.scss +21 -0
- data/app/javascript/react/styles/details.scss +88 -0
- data/app/javascript/react/styles/facilities.scss +131 -0
- data/app/javascript/react/styles/fixednavbar.scss +137 -0
- data/app/javascript/react/styles/fonts.scss +22 -0
- data/app/javascript/react/styles/footer.scss +300 -0
- data/app/javascript/react/styles/forgetpassword.scss +68 -0
- data/app/javascript/react/styles/formfield.scss +39 -0
- data/app/javascript/react/styles/formitem.scss +20 -0
- data/app/javascript/react/styles/gallery.scss +142 -0
- data/app/javascript/react/styles/gallerymodallight.scss +137 -0
- data/app/javascript/react/styles/galleryslider.scss +114 -0
- data/app/javascript/react/styles/header.scss +49 -0
- data/app/javascript/react/styles/herosection.scss +61 -0
- data/app/javascript/react/styles/images.scss +112 -0
- data/app/javascript/react/styles/input.scss +58 -0
- data/app/javascript/react/styles/label.scss +11 -0
- data/app/javascript/react/styles/listing.scss +94 -0
- data/app/javascript/react/styles/listingimagegallery.scss +57 -0
- data/app/javascript/react/styles/listingstaydetailpage.scss +887 -0
- data/app/javascript/react/styles/location.scss +66 -0
- data/app/javascript/react/styles/loginpage.scss +150 -0
- data/app/javascript/react/styles/mobilemenu.scss +53 -0
- data/app/javascript/react/styles/mybooking.scss +104 -0
- data/app/javascript/react/styles/myproperty.scss +51 -0
- data/app/javascript/react/styles/ncimage.scss +24 -0
- data/app/javascript/react/styles/normallisting.scss +95 -0
- data/app/javascript/react/styles/property-description.scss +75 -0
- data/app/javascript/react/styles/propertycard.scss +48 -0
- data/app/javascript/react/styles/propertydetailscard.scss +302 -0
- data/app/javascript/react/styles/resetpassword.scss +79 -0
- data/app/javascript/react/styles/reviews.scss +185 -0
- data/app/javascript/react/styles/room.scss +275 -0
- data/app/javascript/react/styles/rooms.scss +0 -0
- data/app/javascript/react/styles/select.scss +44 -0
- data/app/javascript/react/styles/signuppage.scss +132 -0
- data/app/javascript/react/styles/smallnav.scss +94 -0
- data/app/javascript/react/styles/socialauth.scss +62 -0
- data/app/javascript/react/styles/speciallisting.scss +94 -0
- data/app/javascript/react/styles/staycard.scss +77 -0
- data/app/javascript/react/styles/staycard2.scss +115 -0
- data/app/javascript/react/styles/testimonial.scss +216 -0
- data/app/javascript/react/styles/unauthorized.scss +22 -0
- data/app/javascript/react/styles/variables.scss +3 -0
- data/app/javascript/react/styles/wrapper.scss +4 -0
- data/app/javascript/react/utils/formSchema.js +120 -0
- data/app/javascript/react/utils/helpers/APIHelper.jsx +55 -0
- data/app/javascript/react/utils/helpers/ErrorHandler.js +21 -0
- data/app/javascript/react/utils/helpers/InfoHandler.js +15 -0
- data/app/javascript/react/utils/helpers/SuccessHandler.js +12 -0
- data/app/javascript/react/utils/helpers/isInViewPortIntersectionObserver.jsx +39 -0
- data/app/jobs/stay_commerce/frontend/application_job.rb +6 -0
- data/app/mailers/stay_commerce/frontend/application_mailer.rb +8 -0
- data/app/models/stay_commerce/frontend/application_record.rb +7 -0
- data/app/views/layouts/stay_commerce/frontend/application.html.erb +61 -0
- data/app/views/stay_commerce/frontend/welcome/index.html.erb +2 -0
- data/config/initializers/cors.rb +6 -0
- data/config/initializers/devise.rb +359 -0
- data/config/routes.rb +11 -0
- data/lib/stay_commerce/frontend/engine.rb +14 -0
- data/lib/stay_commerce/frontend/version.rb +5 -0
- data/lib/stay_commerce/frontend.rb +8 -0
- data/lib/tasks/stay_commerce/frontend_tasks.rake +4 -0
- metadata +370 -0
@@ -0,0 +1,223 @@
|
|
1
|
+
.amenities-section {
|
2
|
+
padding-bottom: 2rem;
|
3
|
+
padding-top: 1.5rem;
|
4
|
+
width: 100%;
|
5
|
+
|
6
|
+
border-radius: 0.75rem;
|
7
|
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
8
|
+
|
9
|
+
.amenities-header {
|
10
|
+
margin-bottom: 1.5rem;
|
11
|
+
padding-left:2rem;
|
12
|
+
padding-right:2rem;
|
13
|
+
|
14
|
+
h2 {
|
15
|
+
font-size: 1.5rem;
|
16
|
+
font-weight: 600;
|
17
|
+
margin-bottom: 0.5rem;
|
18
|
+
}
|
19
|
+
|
20
|
+
span {
|
21
|
+
color: #6b7280;
|
22
|
+
font-size: 0.875rem;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
.divider {
|
27
|
+
width: 3.5rem;
|
28
|
+
border-bottom: 1px solid #e5e7eb;
|
29
|
+
margin: 1rem 0;
|
30
|
+
}
|
31
|
+
|
32
|
+
.amenities-grid {
|
33
|
+
display: flex;
|
34
|
+
flex-wrap: wrap;
|
35
|
+
gap: 1.5rem;
|
36
|
+
padding-left:2rem;
|
37
|
+
padding-right:2rem;
|
38
|
+
|
39
|
+
.amenity-item {
|
40
|
+
display: flex;
|
41
|
+
align-items: center;
|
42
|
+
gap: 0.75rem;
|
43
|
+
font-size: 0.975rem;
|
44
|
+
color: #4b5563;
|
45
|
+
flex: 0 0 calc(33.333% - 1rem);
|
46
|
+
|
47
|
+
@media (max-width: 1024px) {
|
48
|
+
flex: 0 0 calc(50% - 0.75rem);
|
49
|
+
}
|
50
|
+
|
51
|
+
@media (max-width: 640px) {
|
52
|
+
flex: 0 0 100%;
|
53
|
+
}
|
54
|
+
|
55
|
+
.amenity-icon {
|
56
|
+
width: 20px;
|
57
|
+
height: 20px;
|
58
|
+
color: #4b5563;
|
59
|
+
margin-right: 8px;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.view-more {
|
65
|
+
margin-top: 1rem;
|
66
|
+
|
67
|
+
.btn-secondary {
|
68
|
+
background-color: transparent;
|
69
|
+
border: 1px solid #d1d5db;
|
70
|
+
border-radius: 0.375rem;
|
71
|
+
padding: 0.5rem 1rem;
|
72
|
+
font-size: 0.875rem;
|
73
|
+
cursor: pointer;
|
74
|
+
transition: all 0.2s ease;
|
75
|
+
|
76
|
+
&:hover {
|
77
|
+
background-color: #f3f4f6;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
.modal-overlay {
|
83
|
+
position: fixed;
|
84
|
+
top: 0;
|
85
|
+
left: 0;
|
86
|
+
right: 0;
|
87
|
+
bottom: 0;
|
88
|
+
background-color: rgba(0, 0, 0, 0.4);
|
89
|
+
display: flex;
|
90
|
+
align-items: center;
|
91
|
+
justify-content: center;
|
92
|
+
z-index: 50;
|
93
|
+
|
94
|
+
.modal-container {
|
95
|
+
background-color: white;
|
96
|
+
border-radius: 0.5rem;
|
97
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
98
|
+
width: 100%;
|
99
|
+
max-width: 36rem;
|
100
|
+
max-height: 80vh;
|
101
|
+
display: flex;
|
102
|
+
flex-direction: column;
|
103
|
+
|
104
|
+
.modal-header {
|
105
|
+
padding: 1rem 1.5rem;
|
106
|
+
border-bottom: 1px solid #e5e7eb;
|
107
|
+
position: relative;
|
108
|
+
|
109
|
+
h3 {
|
110
|
+
font-size: 1.125rem;
|
111
|
+
font-weight: 500;
|
112
|
+
text-align: center;
|
113
|
+
}
|
114
|
+
|
115
|
+
.close-button {
|
116
|
+
position: absolute;
|
117
|
+
left: 1rem;
|
118
|
+
top: 1rem;
|
119
|
+
background: transparent;
|
120
|
+
border: none;
|
121
|
+
font-size: 1.5rem;
|
122
|
+
cursor: pointer;
|
123
|
+
width: 2rem;
|
124
|
+
height: 2rem;
|
125
|
+
display: flex;
|
126
|
+
align-items: center;
|
127
|
+
justify-content: center;
|
128
|
+
border-radius: 50%;
|
129
|
+
|
130
|
+
&:hover {
|
131
|
+
background-color: #f3f4f6;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
.modal-content {
|
137
|
+
padding: 1rem 2rem;
|
138
|
+
overflow-y: auto;
|
139
|
+
|
140
|
+
.modal-amenity-item {
|
141
|
+
display: flex;
|
142
|
+
align-items: center;
|
143
|
+
gap: 0.75rem;
|
144
|
+
padding: 0.75rem 0;
|
145
|
+
border-bottom: 1px solid #e5e7eb;
|
146
|
+
|
147
|
+
&:last-child {
|
148
|
+
border-bottom: none;
|
149
|
+
}
|
150
|
+
|
151
|
+
.amenity-image {
|
152
|
+
width: 2rem;
|
153
|
+
height: 2rem;
|
154
|
+
|
155
|
+
img {
|
156
|
+
width: 100%;
|
157
|
+
height: 100%;
|
158
|
+
object-fit: cover;
|
159
|
+
border-radius: 0.375rem;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
.amenity-icon {
|
164
|
+
font-size: 1.5rem;
|
165
|
+
color: #10b981;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
// Dark mode styles
|
173
|
+
&.dark-mode {
|
174
|
+
.amenities-header span {
|
175
|
+
color: #9ca3af;
|
176
|
+
}
|
177
|
+
|
178
|
+
.divider {
|
179
|
+
border-bottom-color: #374151;
|
180
|
+
}
|
181
|
+
|
182
|
+
.amenity-item {
|
183
|
+
color: #d1d5db;
|
184
|
+
}
|
185
|
+
|
186
|
+
.btn-secondary {
|
187
|
+
border-color: #4b5563;
|
188
|
+
color: #e5e7eb;
|
189
|
+
|
190
|
+
&:hover {
|
191
|
+
background-color: #374151;
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
.modal-container {
|
196
|
+
background-color: #1f2937;
|
197
|
+
border: 1px solid #374151;
|
198
|
+
|
199
|
+
.modal-header {
|
200
|
+
border-bottom-color: #374151;
|
201
|
+
|
202
|
+
h3 {
|
203
|
+
color: #f3f4f6;
|
204
|
+
}
|
205
|
+
|
206
|
+
.close-button {
|
207
|
+
color: #e5e7eb;
|
208
|
+
|
209
|
+
&:hover {
|
210
|
+
background-color: #374151;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
}
|
214
|
+
|
215
|
+
.modal-content {
|
216
|
+
.modal-amenity-item {
|
217
|
+
border-bottom-color: #374151;
|
218
|
+
color: #d1d5db;
|
219
|
+
}
|
220
|
+
}
|
221
|
+
}
|
222
|
+
}
|
223
|
+
}
|
@@ -0,0 +1,87 @@
|
|
1
|
+
@import "fixednavbar";
|
2
|
+
@import "listing";
|
3
|
+
@import "herosection";
|
4
|
+
@import "facilities";
|
5
|
+
@import "bookingform";
|
6
|
+
@import "testimonial";
|
7
|
+
@import "about";
|
8
|
+
@import "normallisting";
|
9
|
+
@import "speciallisting";
|
10
|
+
@import "footer";
|
11
|
+
@import "blog";
|
12
|
+
@import "gallery";
|
13
|
+
@import "contact";
|
14
|
+
@import "header";
|
15
|
+
@import "404error";
|
16
|
+
@import "wrapper";
|
17
|
+
@import "mobilemenu";
|
18
|
+
@import "smallnav";
|
19
|
+
@import "gallerymodallight";
|
20
|
+
@import "fonts";
|
21
|
+
@import "loginpage";
|
22
|
+
@import "signuppage";
|
23
|
+
@import "avatar";
|
24
|
+
@import "socialauth";
|
25
|
+
@import "avatardropdown";
|
26
|
+
@import "formfield";
|
27
|
+
@import "commonpage";
|
28
|
+
@import "accountinfo";
|
29
|
+
@import "accountpage";
|
30
|
+
@import "mybooking";
|
31
|
+
@import "staycard";
|
32
|
+
@import "galleryslider";
|
33
|
+
@import "button";
|
34
|
+
@import "buttonprimary";
|
35
|
+
@import "commonlayout";
|
36
|
+
@import "description";
|
37
|
+
@import "details";
|
38
|
+
@import "images";
|
39
|
+
@import "location";
|
40
|
+
@import "unauthorized";
|
41
|
+
@import "staycard2";
|
42
|
+
@import "propertycard";
|
43
|
+
@import "myproperty";
|
44
|
+
@import "checkbox";
|
45
|
+
@import "room";
|
46
|
+
@import "select";
|
47
|
+
@import "input";
|
48
|
+
@import "formitem";
|
49
|
+
@import "ncimage";
|
50
|
+
@import "label";
|
51
|
+
@import "customdatepicker";
|
52
|
+
@import "forgetpassword";
|
53
|
+
@import "resetpassword";
|
54
|
+
@import "listingstaydetailpage";
|
55
|
+
@import "amenitiesfeatures";
|
56
|
+
@import "property-description";
|
57
|
+
@import "reviews";
|
58
|
+
@import "propertydetailscard";
|
59
|
+
@import "listingimagegallery";
|
60
|
+
@import "badge";
|
61
|
+
@import "RenderSection";
|
62
|
+
@import "ApartmentCard";
|
63
|
+
@import "PropertiesPage";
|
64
|
+
@import "BookingDetails";
|
65
|
+
@import "Modal.scss";
|
66
|
+
@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap");
|
67
|
+
* {
|
68
|
+
font-family: "Asap", sans-serif;
|
69
|
+
font-optical-sizing: auto;
|
70
|
+
font-weight: 400;
|
71
|
+
font-style: normal;
|
72
|
+
}
|
73
|
+
|
74
|
+
body {
|
75
|
+
background: white;
|
76
|
+
margin: 0px;
|
77
|
+
}
|
78
|
+
|
79
|
+
// application.scss (Rails or React version — wherever you import global styles)
|
80
|
+
.Toastify__toast-container {
|
81
|
+
z-index: 99999 !important;
|
82
|
+
}
|
83
|
+
|
84
|
+
.Toastify__toast {
|
85
|
+
font-size: 16px;
|
86
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
|
87
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
.avatar-container {
|
2
|
+
display: flex;
|
3
|
+
align-items: center;
|
4
|
+
gap: 10px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.avatar-circle {
|
8
|
+
width: 40px;
|
9
|
+
height: 40px;
|
10
|
+
color: white;
|
11
|
+
background-color: #081976;
|
12
|
+
font-size: 18px;
|
13
|
+
font-weight: bold;
|
14
|
+
display: flex;
|
15
|
+
align-items: center;
|
16
|
+
justify-content: center;
|
17
|
+
border-radius: 50%;
|
18
|
+
text-transform: uppercase;
|
19
|
+
margin-left: 6px;
|
20
|
+
}
|
21
|
+
|
22
|
+
.avatar-image {
|
23
|
+
width: 40px;
|
24
|
+
height: 40px;
|
25
|
+
object-fit: cover;
|
26
|
+
border-radius: 50%;
|
27
|
+
}
|
28
|
+
|
29
|
+
.large-avatar {
|
30
|
+
width: 100px;
|
31
|
+
height: 100px;
|
32
|
+
|
33
|
+
.avatar-image,
|
34
|
+
.avatar-circle {
|
35
|
+
width: 100px;
|
36
|
+
height: 100px;
|
37
|
+
font-size: 32px;
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
.avatar-dropdown {
|
2
|
+
position: relative;
|
3
|
+
display: inline-block;
|
4
|
+
|
5
|
+
.avatar-button {
|
6
|
+
background: none;
|
7
|
+
border: none;
|
8
|
+
cursor: pointer;
|
9
|
+
display: flex;
|
10
|
+
align-items: center;
|
11
|
+
}
|
12
|
+
|
13
|
+
.dropdown-menu {
|
14
|
+
position: absolute;
|
15
|
+
right: 0;
|
16
|
+
z-index: 10;
|
17
|
+
min-width: 200px;
|
18
|
+
background: white;
|
19
|
+
border-radius: 8px;
|
20
|
+
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
21
|
+
overflow: hidden;
|
22
|
+
}
|
23
|
+
|
24
|
+
.dropdown-content {
|
25
|
+
padding: 10px;
|
26
|
+
display: flex;
|
27
|
+
flex-direction: column;
|
28
|
+
}
|
29
|
+
|
30
|
+
.dropdown-item {
|
31
|
+
display: flex;
|
32
|
+
align-items: center;
|
33
|
+
gap: 10px;
|
34
|
+
padding: 10px;
|
35
|
+
text-decoration: none;
|
36
|
+
color: #333;
|
37
|
+
font-size: 14px;
|
38
|
+
transition: background-color 0.2s;
|
39
|
+
|
40
|
+
&:hover {
|
41
|
+
background: #f5f5f5;
|
42
|
+
}
|
43
|
+
|
44
|
+
.icon {
|
45
|
+
width: 20px;
|
46
|
+
height: 20px;
|
47
|
+
color: #555;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.dropdown-divider {
|
52
|
+
height: 1px;
|
53
|
+
background: #ddd;
|
54
|
+
margin: 8px 0;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
@@ -0,0 +1,90 @@
|
|
1
|
+
.badge {
|
2
|
+
display: inline-flex;
|
3
|
+
padding: 0.25rem 0.625rem;
|
4
|
+
border-radius: 9999px;
|
5
|
+
font-size: 0.75rem;
|
6
|
+
font-weight: 500;
|
7
|
+
transition: background-color 0.3s, color 0.3s;
|
8
|
+
text-decoration: none;
|
9
|
+
|
10
|
+
&.pink-badge {
|
11
|
+
color: #be185d;
|
12
|
+
background-color: #fce7f3;
|
13
|
+
|
14
|
+
&.hover:hover {
|
15
|
+
background-color: #be185d;
|
16
|
+
color: white;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
&.red-badge {
|
21
|
+
color: #b91c1c;
|
22
|
+
background-color: #fee2e2;
|
23
|
+
|
24
|
+
&.hover:hover {
|
25
|
+
background-color: #b91c1c;
|
26
|
+
color: white;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
&.gray-badge {
|
31
|
+
color: #1f2937;
|
32
|
+
background-color: #f3f4f6;
|
33
|
+
|
34
|
+
&.hover:hover {
|
35
|
+
background-color: #1f2937;
|
36
|
+
color: white;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
&.green-badge {
|
41
|
+
color: #065f46;
|
42
|
+
background-color: #d1fae5;
|
43
|
+
|
44
|
+
&.hover:hover {
|
45
|
+
background-color: #065f46;
|
46
|
+
color: white;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
&.purple-badge {
|
51
|
+
color: #6b21a8;
|
52
|
+
background-color: #f3e8ff;
|
53
|
+
|
54
|
+
&.hover:hover {
|
55
|
+
background-color: #6b21a8;
|
56
|
+
color: white;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
&.indigo-badge {
|
61
|
+
color: #3730a3;
|
62
|
+
background-color: #e0e7ff;
|
63
|
+
|
64
|
+
&.hover:hover {
|
65
|
+
background-color: #3730a3;
|
66
|
+
color: white;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
&.yellow-badge {
|
71
|
+
color: #92400e;
|
72
|
+
background-color: #fef9c3;
|
73
|
+
|
74
|
+
&.hover:hover {
|
75
|
+
background-color: #92400e;
|
76
|
+
color: white;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
&.blue-badge {
|
81
|
+
color: #1e40af;
|
82
|
+
background-color: #dbeafe;
|
83
|
+
|
84
|
+
&.hover:hover {
|
85
|
+
background-color: #1e40af;
|
86
|
+
color: white;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
@@ -0,0 +1,100 @@
|
|
1
|
+
|
2
|
+
.blog-section {
|
3
|
+
padding: 4rem 0;
|
4
|
+
text-align: center;
|
5
|
+
|
6
|
+
.title {
|
7
|
+
font-size: 2.5rem;
|
8
|
+
font-weight: bold;
|
9
|
+
margin-bottom: 0.5rem;
|
10
|
+
}
|
11
|
+
|
12
|
+
.subtitle {
|
13
|
+
color: #7a7a7a;
|
14
|
+
margin-bottom: 5rem;
|
15
|
+
}
|
16
|
+
|
17
|
+
.posts {
|
18
|
+
display: flex;
|
19
|
+
gap: 2rem;
|
20
|
+
justify-content: center;
|
21
|
+
flex-wrap: nowrap;
|
22
|
+
margin-bottom:3rem;
|
23
|
+
}
|
24
|
+
|
25
|
+
.post-card {
|
26
|
+
width: 350px;
|
27
|
+
border-radius: 8px;
|
28
|
+
overflow: hidden;
|
29
|
+
text-align: left;
|
30
|
+
transition: transform 0.9s ease-in-out;
|
31
|
+
|
32
|
+
.img-wrapper {
|
33
|
+
width: 350px;
|
34
|
+
height: 250px;
|
35
|
+
overflow: hidden;
|
36
|
+
border-radius: 4px;
|
37
|
+
|
38
|
+
.post-image {
|
39
|
+
width: 100%;
|
40
|
+
height: 100%;
|
41
|
+
object-fit: cover;
|
42
|
+
transition: transform 0.8s ease-in-out;
|
43
|
+
}
|
44
|
+
|
45
|
+
&:hover .post-image {
|
46
|
+
transform: scale(1.3) rotate(+7deg);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.post-content {
|
51
|
+
|
52
|
+
.tags {
|
53
|
+
margin: 1.75rem 0;
|
54
|
+
|
55
|
+
.tag {
|
56
|
+
display: inline-block;
|
57
|
+
padding: 0.25rem 1rem;
|
58
|
+
font-size: 0.85rem;
|
59
|
+
margin-right: 0.25rem;
|
60
|
+
border: 1px solid #e5e7eb;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.post-title {
|
65
|
+
font-size: 1.1rem;
|
66
|
+
font-weight: bold;
|
67
|
+
margin-bottom: 0.5rem;
|
68
|
+
}
|
69
|
+
|
70
|
+
.post-description {
|
71
|
+
font-size: 0.91rem;
|
72
|
+
color: #555;
|
73
|
+
margin-bottom: 0.5rem;
|
74
|
+
}
|
75
|
+
|
76
|
+
.post-date {
|
77
|
+
font-size: 1rem;
|
78
|
+
color: #000;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
@media (max-width: 1024px) {
|
84
|
+
.posts {
|
85
|
+
flex-wrap: wrap;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
@media (max-width: 382px) {
|
92
|
+
.blog-section{
|
93
|
+
.title {
|
94
|
+
font-size: 30px;
|
95
|
+
font-weight: bold;
|
96
|
+
margin-bottom: 0.5rem;
|
97
|
+
}
|
98
|
+
|
99
|
+
}
|
100
|
+
}
|
@@ -0,0 +1,124 @@
|
|
1
|
+
.booking-section {
|
2
|
+
position: relative;
|
3
|
+
background: rgba(255, 255, 255, 0.15);
|
4
|
+
backdrop-filter: blur(10px);
|
5
|
+
padding: 2px 0;
|
6
|
+
display: flex;
|
7
|
+
justify-content: center;
|
8
|
+
align-items: center;
|
9
|
+
width: 100%;
|
10
|
+
border-radius: 20px;
|
11
|
+
margin: 40px auto;
|
12
|
+
box-shadow: 0 0px 2px rgba(0, 0, 0, 0.2);
|
13
|
+
border: 1px solid rgba(255, 255, 255, 0.3);
|
14
|
+
|
15
|
+
@media (max-width: 768px) {
|
16
|
+
margin-top: 100px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.booking-table {
|
20
|
+
display: flex;
|
21
|
+
align-items: center;
|
22
|
+
justify-content: space-between;
|
23
|
+
max-width: 1100px;
|
24
|
+
width: 100%;
|
25
|
+
padding: 25px 0px;
|
26
|
+
|
27
|
+
@media (max-width: 768px) {
|
28
|
+
flex-direction: column;
|
29
|
+
padding: 0 40px 40px;
|
30
|
+
max-width: 540px;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.booking-title {
|
35
|
+
color: #fff;
|
36
|
+
font-size: 24px;
|
37
|
+
font-weight: bold;
|
38
|
+
text-transform: uppercase;
|
39
|
+
line-height: 1.2;
|
40
|
+
text-align: center;
|
41
|
+
margin-bottom: 10px;
|
42
|
+
|
43
|
+
@media (max-width: 768px) {
|
44
|
+
width: 100%;
|
45
|
+
text-align: center;
|
46
|
+
margin-bottom: 15px;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.form-fields {
|
51
|
+
width: 100%;
|
52
|
+
|
53
|
+
.form-row {
|
54
|
+
display: flex;
|
55
|
+
flex-direction: row;
|
56
|
+
align-items: center;
|
57
|
+
gap: 15px;
|
58
|
+
flex-wrap: wrap;
|
59
|
+
|
60
|
+
@media (max-width: 768px) {
|
61
|
+
flex-direction: column;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
.input-group {
|
67
|
+
position: relative;
|
68
|
+
display: flex;
|
69
|
+
flex: 1;
|
70
|
+
align-items: center;
|
71
|
+
border: 1px solid #555;
|
72
|
+
padding: 3px;
|
73
|
+
min-width: 150px;
|
74
|
+
border-radius: 5px;
|
75
|
+
}
|
76
|
+
|
77
|
+
.form-control {
|
78
|
+
width: 100%;
|
79
|
+
background: transparent;
|
80
|
+
border: none;
|
81
|
+
color: #777;
|
82
|
+
font-size: 14px;
|
83
|
+
padding: 8px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.form-control:focus {
|
87
|
+
outline: none;
|
88
|
+
border-color: #081976;
|
89
|
+
}
|
90
|
+
|
91
|
+
select.form-control {
|
92
|
+
appearance: auto;
|
93
|
+
}
|
94
|
+
|
95
|
+
.book-now-container {
|
96
|
+
display: flex;
|
97
|
+
align-items: center;
|
98
|
+
justify-content: center;
|
99
|
+
flex-shrink: 0;
|
100
|
+
min-width: 150px;
|
101
|
+
margin-top: 12px;
|
102
|
+
|
103
|
+
@media (min-width: 769px) {
|
104
|
+
margin-top: 0;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
.book-now-btn {
|
109
|
+
background-color: #db7c0b;
|
110
|
+
width: 100%;
|
111
|
+
padding: 10px 20px;
|
112
|
+
font-weight: bold;
|
113
|
+
font-size: 16px;
|
114
|
+
border-radius: 0;
|
115
|
+
border: none;
|
116
|
+
cursor: pointer;
|
117
|
+
text-align: center;
|
118
|
+
transition: background-color 0.3s;
|
119
|
+
}
|
120
|
+
|
121
|
+
.book-now-btn:hover {
|
122
|
+
background: #e6a600;
|
123
|
+
}
|
124
|
+
}
|