diff --git a/.github/workflows/auto-label-issues.yml b/.github/workflows/auto-label-issues.yml new file mode 100644 index 00000000..9c5051ff --- /dev/null +++ b/.github/workflows/auto-label-issues.yml @@ -0,0 +1,46 @@ +name: Auto Label Issue + +on: + issues: + types: [opened, reopened, edited] + +jobs: + label_issue: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Label Issue + uses: actions/github-script@v6 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const issue = context.payload.issue; + const issueTitle = issue.title.toLowerCase(); + + // Add gssoc label to all issues + await github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + labels: ['gssoc'] + }); + const addLabel = async (label) => { + await github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + labels: [label] + }); + }; + if (issueTitle.includes('documentation')) { + await addLabel('documentation'); + } + + if (issueTitle.includes('feature')) { + await addLabel('enhancement'); + + } + if (issueTitle.includes('bug')) { + await addLabel('bug'); + } diff --git a/.github/workflows/auto-label-pr.yml b/.github/workflows/auto-label-pr.yml new file mode 100644 index 00000000..5564a36f --- /dev/null +++ b/.github/workflows/auto-label-pr.yml @@ -0,0 +1,53 @@ +name: Auto Label PRs + +on: + pull_request: + types: [opened, edited] + +jobs: + label_pr: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + configuration-path: .github/labeler.yml + + - name: Add GSSOC label + uses: actions/github-script@v6 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ['gssoc'] + }) + + - name: Add additional labels based on title + uses: actions/github-script@v6 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const title = context.payload.pull_request.title.toLowerCase(); + const labelsToAdd = []; + + if (title.includes('documentation')) { + labelsToAdd.push('documentation'); + } + if (title.includes('feature')) { + labelsToAdd.push('feature'); + } + if (title.includes('bug')) { + labelsToAdd.push('bug'); + } + + if (labelsToAdd.length > 0) { + github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: labelsToAdd + }); + } diff --git a/.history/Html-files/offers1_20240727211126.html b/.history/Html-files/offers1_20240727211126.html new file mode 100644 index 00000000..e69de29b diff --git a/.history/Html-files/offers1_20240727211457.html b/.history/Html-files/offers1_20240727211457.html new file mode 100644 index 00000000..81630759 --- /dev/null +++ b/.history/Html-files/offers1_20240727211457.html @@ -0,0 +1,118 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215004.html b/.history/Html-files/offers1_20240727215004.html new file mode 100644 index 00000000..81630759 --- /dev/null +++ b/.history/Html-files/offers1_20240727215004.html @@ -0,0 +1,118 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215119.html b/.history/Html-files/offers1_20240727215119.html new file mode 100644 index 00000000..66bec0b4 --- /dev/null +++ b/.history/Html-files/offers1_20240727215119.html @@ -0,0 +1,133 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215233.html b/.history/Html-files/offers1_20240727215233.html new file mode 100644 index 00000000..66bec0b4 --- /dev/null +++ b/.history/Html-files/offers1_20240727215233.html @@ -0,0 +1,133 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215544.html b/.history/Html-files/offers1_20240727215544.html new file mode 100644 index 00000000..765ffc70 --- /dev/null +++ b/.history/Html-files/offers1_20240727215544.html @@ -0,0 +1,134 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215701.html b/.history/Html-files/offers1_20240727215701.html new file mode 100644 index 00000000..66bec0b4 --- /dev/null +++ b/.history/Html-files/offers1_20240727215701.html @@ -0,0 +1,133 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727215939.html b/.history/Html-files/offers1_20240727215939.html new file mode 100644 index 00000000..23080d94 --- /dev/null +++ b/.history/Html-files/offers1_20240727215939.html @@ -0,0 +1,132 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers1_20240727220425.html b/.history/Html-files/offers1_20240727220425.html new file mode 100644 index 00000000..23080d94 --- /dev/null +++ b/.history/Html-files/offers1_20240727220425.html @@ -0,0 +1,132 @@ + + + + + + + Offer Details - Savings + + + + +
+

Exclusive Offer - Savings

+
+
+
+

🎉 Grab your savings now with our unbeatable new discounts every week! 💸

+

Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸

+

Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers2_20240727211142.html b/.history/Html-files/offers2_20240727211142.html new file mode 100644 index 00000000..e69de29b diff --git a/.history/Html-files/offers2_20240727211200.html b/.history/Html-files/offers2_20240727211200.html new file mode 100644 index 00000000..fe266355 --- /dev/null +++ b/.history/Html-files/offers2_20240727211200.html @@ -0,0 +1,102 @@ + + + + + + + Offer Details - Collaborations + + + + +
+

Exclusive Offer - Collaborations

+
+
+
+

🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟

+

Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨

+

We are thrilled to announce partnerships with renowned brands and influencers, bringing you a range of exclusive products and services. Explore our new collaborations and take advantage of special offers designed just for you.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers2_20240727215819.html b/.history/Html-files/offers2_20240727215819.html new file mode 100644 index 00000000..3bebf11c --- /dev/null +++ b/.history/Html-files/offers2_20240727215819.html @@ -0,0 +1,117 @@ + + + + + + + + Offer Details - Collaborations + + + + +
+

Exclusive Offer - Collaborations

+
+
+
+

🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟

+

Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨

+

We are thrilled to announce partnerships with renowned brands and influencers, bringing you a range of exclusive products and services. Explore our new collaborations and take advantage of special offers designed just for you.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers2_20240727220007.html b/.history/Html-files/offers2_20240727220007.html new file mode 100644 index 00000000..f29690b9 --- /dev/null +++ b/.history/Html-files/offers2_20240727220007.html @@ -0,0 +1,116 @@ + + + + + + + + Offer Details - Collaborations + + + + +
+

Exclusive Offer - Collaborations

+
+
+
+

🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟

+

Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨

+

We are thrilled to announce partnerships with renowned brands and influencers, bringing you a range of exclusive products and services. Explore our new collaborations and take advantage of special offers designed just for you.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers2_20240727220428.html b/.history/Html-files/offers2_20240727220428.html new file mode 100644 index 00000000..f29690b9 --- /dev/null +++ b/.history/Html-files/offers2_20240727220428.html @@ -0,0 +1,116 @@ + + + + + + + + Offer Details - Collaborations + + + + +
+

Exclusive Offer - Collaborations

+
+
+
+

🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟

+

Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨

+

We are thrilled to announce partnerships with renowned brands and influencers, bringing you a range of exclusive products and services. Explore our new collaborations and take advantage of special offers designed just for you.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers3_20240727211219.html b/.history/Html-files/offers3_20240727211219.html new file mode 100644 index 00000000..e69de29b diff --git a/.history/Html-files/offers3_20240727211224.html b/.history/Html-files/offers3_20240727211224.html new file mode 100644 index 00000000..59090823 --- /dev/null +++ b/.history/Html-files/offers3_20240727211224.html @@ -0,0 +1,102 @@ + + + + + + + Offer Details - Games + + + + +
+

Exclusive Offer - Games

+
+
+
+

🎮 New games alert! Level up your fun with our latest releases! 🚀

+

Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ

+

Our latest game releases offer a variety of genres to keep you entertained. From action-packed adventures to mind-bending puzzles, we have something for every gamer. Check out our new titles and get ready for endless fun.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers3_20240727220127.html b/.history/Html-files/offers3_20240727220127.html new file mode 100644 index 00000000..59090823 --- /dev/null +++ b/.history/Html-files/offers3_20240727220127.html @@ -0,0 +1,102 @@ + + + + + + + Offer Details - Games + + + + +
+

Exclusive Offer - Games

+
+
+
+

🎮 New games alert! Level up your fun with our latest releases! 🚀

+

Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ

+

Our latest game releases offer a variety of genres to keep you entertained. From action-packed adventures to mind-bending puzzles, we have something for every gamer. Check out our new titles and get ready for endless fun.

+

Benefits:

+ +

Terms and Conditions:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers3_20240727220341.html b/.history/Html-files/offers3_20240727220341.html new file mode 100644 index 00000000..109ec82d --- /dev/null +++ b/.history/Html-files/offers3_20240727220341.html @@ -0,0 +1,136 @@ + + + + + + + Offer Details - Games + + + + +
+

Exclusive Offer - New Games

+
+
+
+

🎮 New games alert! Level up your fun with our latest releases! 🚀

+

Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ

+

Our latest game releases offer a variety of genres to keep you entertained. From action-packed adventures to mind-bending puzzles, we have something for every gamer. Check out our new titles and get ready for endless fun.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"The new games are amazing! The early access and special rewards make the experience even better." - Jamie L.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers3_20240727220430.html b/.history/Html-files/offers3_20240727220430.html new file mode 100644 index 00000000..109ec82d --- /dev/null +++ b/.history/Html-files/offers3_20240727220430.html @@ -0,0 +1,136 @@ + + + + + + + Offer Details - Games + + + + +
+

Exclusive Offer - New Games

+
+
+
+

🎮 New games alert! Level up your fun with our latest releases! 🚀

+

Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ

+

Our latest game releases offer a variety of genres to keep you entertained. From action-packed adventures to mind-bending puzzles, we have something for every gamer. Check out our new titles and get ready for endless fun.

+

Benefits:

+ +

Terms and Conditions:

+ +

Customer Testimonials:

+
+

"The new games are amazing! The early access and special rewards make the experience even better." - Jamie L.

+
+

FAQs:

+ +

Contact Us:

+

If you have any questions, feel free to contact our support team at support@example.com.

+ Back to Offers +
+
+ + + + \ No newline at end of file diff --git a/.history/Html-files/offers_20240727205039.html b/.history/Html-files/offers_20240727205039.html new file mode 100644 index 00000000..4c1127b3 --- /dev/null +++ b/.history/Html-files/offers_20240727205039.html @@ -0,0 +1,698 @@ + + + + + + + + + Offers-Food Ordering Website + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + +
+
+ Offer 1 +
+
50% Off on Burgers
+

Enjoy a 50% discount on all burgers today!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Free Delivery
+

Get free delivery on orders above $30!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Combo Deal
+

Buy 1 get 1 free on selected combos!

+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary + offerings. From savory dishes crafted with fresh, local + ingredients to indulgent desserts that delight the senses, + each bite tells a story. Savor the fusion of traditional + recipes and innovative twists, bringing global tastes to your + table. Taste the difference today! +

+
+
+
+ +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts + every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive + discounts 💸 on your favorite items and save big on every + purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the + latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover + innovative partnerships and enjoy exclusive benefits now! + 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest + releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 + Challenge yourself and explore thrilling adventures today! + 🕹ī¸đŸŒŸ +

+ +
+
+
+
+
+
+
+ + +
+
+
+
+

Have A Great Taste !!

+
+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + diff --git a/.history/Html-files/offers_20240727211457.html b/.history/Html-files/offers_20240727211457.html new file mode 100644 index 00000000..74a7a889 --- /dev/null +++ b/.history/Html-files/offers_20240727211457.html @@ -0,0 +1,550 @@ + + + + + + + + + + Offers-Food Ordering Website + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + +
+
+ Offer 1 +
+
50% Off on Burgers
+

Enjoy a 50% discount on all burgers today!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Free Delivery
+

Get free delivery on orders above $30!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Combo Deal
+

Buy 1 get 1 free on selected combos!

+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the fusion of traditional recipes and innovative twists, + bringing global tastes to your table. Taste the difference today! +

+
+
+
+ +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ +

+ +
+
+
+
+
+
+
+ + +
+
+
+
+

Have A Great Taste !!

+
+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.history/Html-files/offers_20240727214904.html b/.history/Html-files/offers_20240727214904.html new file mode 100644 index 00000000..6980408c --- /dev/null +++ b/.history/Html-files/offers_20240727214904.html @@ -0,0 +1,550 @@ + + + + + + + + + + Offers-Food Ordering Website + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + +
+
+ Offer 1 +
+
50% Off on Burgers
+

Enjoy a 50% discount on all burgers today!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Free Delivery
+

Get free delivery on orders above $30!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Combo Deal
+

Buy 1 get 1 free on selected combos!

+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the fusion of traditional recipes and innovative twists, + bringing global tastes to your table. Taste the difference today! +

+
+
+
+ +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ +

+ +
+
+
+
+
+
+
+ + +
+
+
+
+

Have A Great Taste !!

+
+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.history/Html-files/offers_20240727220341.html b/.history/Html-files/offers_20240727220341.html new file mode 100644 index 00000000..ad33f6e2 --- /dev/null +++ b/.history/Html-files/offers_20240727220341.html @@ -0,0 +1,550 @@ + + + + + + + + + + Offers-Food Ordering Website + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + +
+
+ Offer 1 +
+
50% Off on Burgers
+

Enjoy a 50% discount on all burgers today!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Free Delivery
+

Get free delivery on orders above $30!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Combo Deal
+

Buy 1 get 1 free on selected combos!

+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the fusion of traditional recipes and innovative twists, + bringing global tastes to your table. Taste the difference today! +

+
+
+
+ +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ +

+ +
+
+
+
+
+
+
+ + +
+
+
+
+

Have A Great Taste !!

+
+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.history/Html-files/offers_20240727220422.html b/.history/Html-files/offers_20240727220422.html new file mode 100644 index 00000000..3533fada --- /dev/null +++ b/.history/Html-files/offers_20240727220422.html @@ -0,0 +1,550 @@ + + + + + + + + + + Offers-Food Ordering Website + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + +
+
+ Offer 1 +
+
50% Off on Burgers
+

Enjoy a 50% discount on all burgers today!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Free Delivery
+

Get free delivery on orders above $30!

+
+ +
+
+ + +
+
+ Offer 1 +
+
Combo Deal
+

Buy 1 get 1 free on selected combos!

+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the fusion of traditional recipes and innovative twists, + bringing global tastes to your table. Taste the difference today! +

+
+
+
+ +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ +

+ +
+
+
+
+
+
+
+ + +
+
+
+
+

Have A Great Taste !!

+
+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Css-files/RateUs.css b/Css-files/RateUs.css index 7686e8a6..9c410cfe 100644 --- a/Css-files/RateUs.css +++ b/Css-files/RateUs.css @@ -41,6 +41,13 @@ body { font-weight: bold; margin-bottom: 20px; text-align: center; + /* added */ + transition: text-shadow 0.3s, transform 0.3s; +} +/* added */ +.rateus-heading:hover { + text-shadow: 0 0 10px #ffcc00; + transform: scale(1.05); } /* Star Rating Styles */ @@ -55,11 +62,15 @@ body { color: #ccc; cursor: pointer; transition: color 0.3s; + /* added */ + transform: 0.3s; } .star:hover, .star.selected { color: #ffcc00; + /* added */ + transform: scale(1.2); } /* Textarea Styles */ @@ -73,11 +84,15 @@ body { font-size: 16px; color: black; transition: border-color 0.3s; + /* added */ + box-shadow :0.3s; } .feedback-textarea:focus { outline: none; border-color: #ffcc00; + /* added */ + box-shadow: 0 0 10px #ffcc00; } /* Submit Button Styles */ diff --git a/Css-files/content.css b/Css-files/content.css index be63e27e..99342d31 100644 --- a/Css-files/content.css +++ b/Css-files/content.css @@ -468,8 +468,6 @@ body { .thumbnail img { max-width: 100%; height: auto; - border-radius: 10px; - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } @@ -884,4 +882,42 @@ td { background-color: #dc3545; cursor: pointer; } + + /* added */ + .menu-items .card { + transition: transform 0.4s, box-shadow 0.4s; +} + +.menu-items .card:hover { + transform: translateY(-5px); + box-shadow: 0 0 10px rgba(224, 224, 252, 0.678); +} +.menu-items .card .btn { + transition: all 0.3s ease-in-out; +} + +.menu-items .card .btn:hover { + background-color: white; + color: orangered; + border-color: orangered; +} +.menu-items .card-thumbnail img { + + transition: transform 0.4s, box-shadow 0.4s; +} + +.menu-items .card-thumbnail img:hover { + transform: scale(1.1); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); +} + +.menu-items .items .caption { + transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out; +} + +.menu-items .items .caption:hover { + color: orangered; + text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); +} + \ No newline at end of file diff --git a/Css-files/contributor.css b/Css-files/contributor.css index 765a495d..27465691 100644 --- a/Css-files/contributor.css +++ b/Css-files/contributor.css @@ -2,7 +2,12 @@ body { margin: 0; font-family: Arial, sans-serif; color: #fff; - background-image: linear-gradient(115deg, rgba(191, 7, 7, 0.456), rgba(7, 5, 7, 0.67)), url(../Images/homeSliderImages/home-slider-3.jpg); + background-image: linear-gradient( + 115deg, + rgba(220, 96, 96, 0.456), + rgba(7, 5, 7, 0.67) + ), + url(../Images/homeSliderImages/home-slider-3.jpg); } .header-hero { @@ -95,7 +100,7 @@ body { } .gap-8 { - gap: 2rem; + gap: 3rem; } .contributors { @@ -103,16 +108,16 @@ body { } .contributor-card { - width: calc(100% - 32px); + width: calc(100% - 52px); max-width: 300px; /* Adjust this value as needed */ display: flex; flex-direction: column; align-items: center; - background-color: #fff; + background-color: #fae4e4; border: 1px solid #ccc; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); - padding: 16px; + padding: 13px; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; @@ -120,13 +125,14 @@ body { } .contributor-card:hover { - transform: scale(1.05); - box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); + transform: scale(1.06); + box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6); + border: 4px solid black; } .contributor-card img { - width: 96px; - height: 96px; + width: 130px; + height: 130px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; @@ -137,7 +143,7 @@ body { } .text-gray-900 { - color: #1a202c; + color: #0c0c0c; } .text-gray-100 { @@ -149,7 +155,7 @@ body { } .text-gray-700 { - color: #4a5568; + color: #870303; } .text-gray-400 { @@ -173,7 +179,12 @@ body { /* Scrollbar track */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6); - background-image: linear-gradient(to top, rgb(246, 10, 10), rgb(248, 145, 49), rgb(236, 239, 56)); + background-image: linear-gradient( + to top, + rgb(246, 10, 10), + rgb(248, 145, 49), + rgb(236, 239, 56) + ); } /* Scrollbar */ diff --git a/Css-files/footer.css b/Css-files/footer.css index edd376dc..5ab929d5 100644 --- a/Css-files/footer.css +++ b/Css-files/footer.css @@ -7,22 +7,59 @@ footer { background-color: rgb(138, 37, 37); color: white; height: fit-content; + width: 100vw; } -.foot-panel1 .container-fluid { - width: 90%; +.container-fluid { + padding-left: 1rem; + width: 100%; +} + +.footer-content { + text-align: start; + display: flex; + flex-direction: column; + align-items: start; + padding-left: 1rem; } .foot-panel1 .nav-link { + /* font-size: 0.85rem; + color: #dddddd; + padding: 0; */ + + /* added */ font-size: 0.85rem; color: #dddddd; padding: 0; + position: relative; + display: inline-block; + transition: color 0.3s ease, text-decoration 0.3s ease; } .foot-panel1 .nav-link:hover { text-decoration: none; color: #dddddd; } +/* added */ +.foot-panel1 .nav-link::after { + content: ''; + position: absolute; + width: 0; + height: 2px; + display: block; + margin-top: 2px; + right: 0; + background: #ffffff; + transition: width 0.3s ease; +} + +.foot-panel1 .nav-link:hover::after { + width: 100%; + left: 0; + background: #ffffff; +} + #footer-email, #footer-message { @@ -31,6 +68,8 @@ footer { background-color: rgba(210, 167, 167, 0.5); color: white; border: none; + /* added */ + transition: background-color 0.3s ease, color 0.3s ease; } #footer-email:focus, @@ -46,11 +85,17 @@ footer { .foot-panel1 .btn { background-color: rgb(117, 21, 21); border: none; + /* added */ + transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } .foot-panel1 .btn:is(:hover, :focus) { background-color: rgb(196, 89, 89); border: none; + + /* added */ + transform: scale(1.05); + box-shadow: 0 0 10px rgba(196, 89, 89, 0.7); } .foot-panel2 { @@ -70,6 +115,13 @@ footer { background-color: white; border-radius: 50%; transition: 0.2s; + /* added */ + transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, rotate 0.3s ease; +} +/* added */ +.foot-panel2 .social-icons a:hover { + transform: scale(1.2) rotate(10deg); + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .foot-panel2 .fa-facebook:hover { @@ -123,6 +175,13 @@ footer { #author { padding: 3px; color: #dddddd; + /* added */ + transition: color 0.3s ease, text-shadow 0.3s ease; +} +/* added */ +#author:hover { + color: #ffffff; + text-shadow: 0 0 5px #ffffff; } .foot-panel2 .copyright { @@ -135,13 +194,24 @@ footer { .social-icons :hover{ transform:scale(1.3); + /* added */ + transform: scale(1.3) rotate(5deg); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); } .media-handles h4:hover{ - /* transform:scale(1.1); */ -color:#d24b29; + +/* added */ +color: #d24b29; +transition: color 0.3s ease, transform 0.3s ease; +transform: scale(1.1); } + .row h5:hover, .row h3:hover { color:#d24b29; + /* added */ + transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease; + transform: scale(1.1); + text-shadow: 0 0 5px #d24b29; } diff --git a/Css-files/login.css b/Css-files/login.css index 6b2e44c4..b8e90ac4 100644 --- a/Css-files/login.css +++ b/Css-files/login.css @@ -2,19 +2,27 @@ .main-content-login { background-color: brown; - padding: 4rem 0; + /* padding: 4rem 0; */ + /* added */ + padding: 4rem 1.5rem; + text-align: center; + font-family: 'Noto Sans', sans-serif; } .login-image { max-width: 100%; height: auto; - border-radius: 8px; /* Rounded corners for the image */ + border-radius: 12px; /* Rounded corners for the image */ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow effect */ - transition: transform 0.3s ease-in-out; /* Smooth transform animation */ + /* transition: transform 0.3s ease-in-out; */ + /* added */ + transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; } .login-image:hover { transform: scale(1.1); /* Scale up the image on hover */ + /* added */ + box-shadow: 0 0 25px rgba(0, 0, 0, 0.3); } /* Example animation for subtle background pattern */ @@ -46,7 +54,7 @@ background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */ border-radius: 50%; opacity: 0; - transition: opacity 0.3s ease-in-out; + transition: opacity 0.4s ease-in-out; } .login-image:hover::before { @@ -80,6 +88,9 @@ .card-body { padding: 7%; + /* added */ + padding: 5%; + border-radius: 12px; } .textfield { @@ -94,6 +105,8 @@ .textfield>label { font-weight: bold; + /* added */ + margin-bottom: 5px; } .textfield>input { @@ -106,6 +119,8 @@ font-size: 12pt; box-shadow: 0px 2px 5px #00000056; outline: none; + /* added */ + border: 1px solid #ddd; } .textfield>input::placeholder { @@ -118,6 +133,14 @@ .right-login .row a{ text-align: right; + /* added */ + color: rgb(208, 50, 50); + text-decoration: none; + transition: color 0.3s ease-in-out; +} +/* added */ +.right-login .row a:hover { + color: #a03030; } .btn-login { @@ -133,10 +156,15 @@ color: white; background: rgb(208, 50, 50); box-shadow: 0px 10px 40px -12px #b10f1f85; + + /* added */ + transition: 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } .btn-login:hover { background: rgba(208, 50, 50, 0.9); + /* added */ + box-shadow: 0 12px 50px -12px rgba(208, 50, 50, 0.6); } #login-hide { @@ -192,3 +220,5 @@ font-size:13px; font-weight: bold; } + + diff --git a/Css-files/navbar.css b/Css-files/navbar.css index be83c9cb..9282eb2c 100644 --- a/Css-files/navbar.css +++ b/Css-files/navbar.css @@ -1,264 +1,155 @@ -/* Variables */ +/* Define colors */ :root { - /* General Colors */ - --primary-bg-color: #ffffff; - --primary-text-color: #333335; - --secondary-bg-color: #f2f2f2; - --accent-color: #9e5c48; - - /* Navbar Colors */ - --navbar-bg-color: #f2f2f2; - --navbar-hover-color: #e5e5e5; - - /* Card Colors */ - --card-bg-color: #ffffff; - --card-hover-color: #f5f5f5; - - /* Footer Colors */ - --footer-bg-color: #f2f2f2; - --footer-hover-color: #e5e5e5; - - /* Additional Colors */ - --container-bg: black; - --drop-bg: #212123; - --a: white; - --nav: black; - --invert: invert(1); -} - -.dark-theme { - - --a: rgb(183, 175, 175); - --drop-bg: #ffffff; - --nav: white; - /* General Colors */ - --primary-bg-color: #212123; - --primary-text-color: #ffffff; - --secondary-bg-color: #333335; - --accent-color: #9e5c48; - - /* Navbar Colors */ - --navbar-bg-color: #333335; - --navbar-hover-color: #474749; - - /* Card Colors */ - --card-bg-color: #2c2c2e; - --card-hover-color: #373739; - - /* Footer Colors */ - --footer-bg-color: #28282a; - --footer-hover-color: #333335; - - /* Additional Colors */ - --container-bg: rgb(224, 224, 252); - --drop-bg: #ffffff; - --a: black; - --nav: white; - --invert: invert(0); + --primary-bg-color: #fff; + --primary-text-color: #000; + --secondary-bg-color: #f0f0f0; + --dark-red: #cc0000; + --light-red: #ff4c4c; } -/* Navbar */ +/* Navbar Styles */ .navbar { - --bs-navbar-color: var(--a); - background-color: var(--nav); - gap: 10px; + background-color: var(--primary-bg-color); + color: var(--primary-text-color); + padding: 0 20px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + display: flex; + align-items: center; + height: 70px; + font-size: 14px; } -.navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +.navbar-logo { + height: 50px; + margin-right: 20px; } .navbar-toggler { border: none; + padding: 0; } .navbar-toggler:focus { box-shadow: none; } -.navbar .navbar-collapse.enddiv { - flex-grow: 0; +.navbar-nav { + display: flex; + gap: 10px; + align-items: center; } - -/* Navbar Links */ .nav-link { - transition: color 0.3s, background-color 0.3s; + color: var(--primary-text-color); + padding: 4px 8px; + border-radius: 4px; + transition: background-color 0.3s, color 0.3s; } .nav-link:hover { + background-color: var(--light-red); color: #fff; - transform: scale(1.1); - border-radius: 5px; -} - -/* Center Links */ - -ul { - gap: 5px; -} - -.nav-item { - display: flex; - justify-content: center; - align-items: center; -} - - -.center-links .nav-item .nav-link:hover { - color: #f13800e4; -} - -.center-links .nav-item .dropdown-menu { - background-color: var(--drop-bg); - color: var(--a); - border-radius: 0; - border: none; - padding-top: 0; -} -/* cart-icon supersript */ -/* .cart-subscript -{ - display :flex; - width: 15px; - height: 25px; - background-color: rgb(76, 0, 255); - justify-content: center; - align-items: center; - color: white; - border-radius: 50%; - position: absolute; - top: 50%; - right: 45px; -} */ - - - -/* End Links */ -.end-links .nav-item .nav-link:hover { - color: rgba(255, 183, 0, 0.705); - -} - -.navbar-nav.center-links .active { - color: #dc3545; - border-bottom: 2px solid #dc3545; - gap:10px; -} - -.navbar-nav.end-links .active { - color: rgba(255, 183, 0, 0.705); - border-bottom: 2px solid rgba(255, 183, 0, 0.705); - gap:10px; -} - - - -/* Dropdown Items */ - -#theme-toggle-icon { - width: 30px; - cursor: pointer; -} - -.center-links .nav-item .dropdown-menu { - background-color: var(--drop-bg); - color: var(--a); - border-radius: 0; - border: none; - padding-top: 0; } .dropdown-item { padding: 4px 8px; - color: var(--a); - font-size: 15px; - - background-color: var(--background-color); - + color: var(--primary-text-color); + font-size: 14px; transition: background-color 0.3s, transform 0.3s; - } -.dropdown-item:active { - background-color: #dc3545; +.dropdown-item:hover { + background-color: var(--light-red); + color: #fff; + transform: scale(1.05); } -:root { - --background-color: #fff; - --text-color: #000; - --button-bg: #D0EEB0; - --button-hover-bg: #59a10c; - --card-bg: rgba(0, 0, 0, 0.8); - --carousel-caption-bg: rgba(0, 0, 0, 0.7); +.rate-us-btn { + background-color: var(--primary-bg-color); + border: 1px solid var(--dark-red); + color: var(--dark-red); + padding: 4px 8px; + border-radius: 4px; + transition: background-color 0.3s, color 0.3s; } -body { - background-color: var(--background-color); - color: var(--text-color); +.rate-us-btn:hover { + background-color: var(--light-red); + color: #fff; } -.section { - background-color: var(--background-color); - color: var(--text-color); +.card { + background-color: var(--primary-bg-color); + border: 1px solid var(--secondary-bg-color); + padding: 10px; + border-radius: 5px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + transition: background-color 0.3s, transform 0.3s; } -.btn-card { - background-color: var(--button-bg); - color: var(--text-color); +.card:hover { + background-color: var(--light-red); + transform: scale(1.02); } -.card-1::after { - background-color: var(--button-hover-bg); +.login, .signup { + background-color: var(--primary-bg-color); + border: 1px solid var(--secondary-bg-color); + padding: 20px; + border-radius: 5px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + transition: background-color 0.3s, transform 0.3s; } -.card-1 { - background-color: var(--carousel-caption-bg); +.login:hover, .signup:hover { + background-color: var(--light-red); + transform: scale(1.02); } -/* Dark mode styles */ -.about_us.dark-theme { - --background-color: #000; - --text-color: #fff; - --button-bg: #555; - --button-hover-bg: #333; - --card-bg: rgba(255, 255, 255, 0.8); - --carousel-caption-bg: rgba(255, 255, 255, 0.7); +.popup { + display: none; + position: absolute; + top: 50px; + right: 10px; + background-color: var(--primary-bg-color); + border: 1px solid var(--primary-text-color); + padding: 10px; + border-radius: 5px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } -.about_us.dark-theme { - background-color: var(--background-color); - color: var(--text-color); +.popup.show { + display: block; } -.about_us.dark-theme .section { - background-color: var(--background-color); - color: var(--text-color); +/* Icon Hover Effect */ +.navbar .nav-link img { + transition: opacity 0.3s; } -.about_us.dark-theme .btn-card { - background-color: var(--button-bg); - color: var(--text-color); +.navbar .nav-link:hover img { + opacity: 0.8; } -.about_us.dark-theme .btn-card:hover { - background-color: var(--button-hover-bg); +/* Theme Icon Styles */ +.theme-icon { + width: 36px !important; /* Increased size for medium */ + height: 36px !important; /* Increased size for medium */ } -.about_us.dark-theme .carousel-caption { - background-color: var(--carousel-caption-bg); +#theme-toggle-icon { + width: 36px; /* Increased size for medium */ + height: 36px; /* Increased size for medium */ } - -.dropdown-item:hover { - background-color: #007bff; - color: #fff; - transform: scale(1.1); +/* Apply size to theme icons within navbar */ +.navbar .nav-link .theme-icon { + width: 36px !important; /* Ensure size consistency with other icons */ + height: 36px !important; /* Ensure size consistency with other icons */ } -/* Theme Toggle Icon */ -#theme-toggle-icon { - width: 30px; - cursor: pointer; +/* Dark Theme Styles */ +.dark-theme .navbar, .dark-theme .login, .dark-theme .signup, .dark-theme .card { + background-color: var(--primary-bg-color); + color: var(--primary-text-color); } - diff --git a/Css-files/offers.css b/Css-files/offers.css index f95fa4d1..6f9f6186 100644 --- a/Css-files/offers.css +++ b/Css-files/offers.css @@ -395,6 +395,7 @@ nav { border-radius: 0.9375rem; } + .explore-food .card :hover { transform: scale(1.01); transition:all .4s ease-in; @@ -419,11 +420,25 @@ nav { .explore-food p{ /* color:var(--text-color); */ - color: white; + color: rgb(167, 166, 166); font-size: 14px; line-height: 22px; } +.card:hover { + transform: translateY(-5px); /* Move the card up slightly on hover */ + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */ +} +/* Example of adding a border on hover */ +.card:hover { + border: 2px solid #4CAF50; +} + +/* Example of adding a background color change on hover */ +.card:hover { + background-color: #f0f0f0; + +} /* ========================================== testimonial section Design @@ -787,4 +802,228 @@ textarea { margin-top: 20px; } } -} \ No newline at end of file +} + +/* added */ + +.main-btn:hover { + background-color: white; + color: black; + box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); + transform: translateY(-3px); +} +.star:hover, +.star.selected { + color: #ffcc00; + transform: scale(1.1); + text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); +} +.submit-button:hover { + background-color: #e6b800; + transform: translateY(-5px); + box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); +} +.feedback-textarea:focus { + outline: none; + border-color: #ffcc00; + box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); +} +.rateus-container:hover { + transform: scale(1.02); + box-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.5), 0 0 80px rgba(255, 255, 255, 0.3); + border-color: #ffcc00; + filter: brightness(1.0); +} +::-webkit-scrollbar-thumb { + background-color: #ff0707; + border-radius: 10px; + border: 0.3px solid white; + background-image: -webkit-linear-gradient(90deg, rgb(20, 21, 12) 0%, rgb(0, 0, 0) 25%, transparent 100%, rgb(247, 4, 4) 75%, transparent); + transition: background-color 0.3s, border-color 0.3s; +} + +::-webkit-scrollbar-thumb:hover { + background-color: #e60000; + border-color: #ffffff; +} +.explore-food .card:hover { + transform: scale(1.05); + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); + transition: all 0.4s ease-in; +} +.navigbar a:hover { + color: rgba(255, 183, 0, 0.705); + text-decoration: underline; +} +.explore-food .card { + background-color: transparent; + border-radius: 0.9375rem; + overflow: hidden; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + transition: transform 0.3s, box-shadow 0.3s; +} + +.explore-food .card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); +} + +.explore-food .card img { + border-radius: 0.9375rem 0.9375rem 0 0; + object-fit: cover; + width: 100%; + height: auto; + transition: transform 0.3s; +} + +.explore-food .card:hover img { + transform: scale(1.1); +} + +.explore-food .card span { + display: block; + font-size: 1.5rem; + font-weight: 700; + color: white; + padding: 1rem; + background-color: rgba(0, 0, 0, 0.7); + transition: background-color 0.3s; +} + +.explore-food .card:hover span { + background-color: rgba(0, 0, 0, 0.9); +} + +.explore-food p { + color: white; + font-size: 14px; + line-height: 22px; + padding: 1rem; + background-color: rgba(0, 0, 0, 0.5); + transition: background-color 0.3s; +} + +.explore-food .card:hover p { + background-color: rgba(0, 0, 0, 0.7); +} + + +/* Updated carousel section with hover effects */ +.testimonial-section { + background: lavender; +} + +.testimonial-section h2 { + color: red; +} + +.testimonial-section .carousel-item { + margin-top: 3rem; + padding: 10rem 3.125rem; + color: white; + background-color: rgb(251, 251, 251); + border-radius: 0.9375rem; + text-align: center; + border: 4px solid brown; + transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; +} + +.testimonial-section .carousel-item:hover { + transform: scale(1.05); + box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); +} + +.testimonial-section .carousel-caption img { + width: 20rem; + height: 160px; + padding: 0.3125rem; + transition: transform 0.3s ease-in-out; +} + +.testimonial-section .carousel-item:hover .carousel-caption img { + transform: scale(1.1); +} + +.testimonial-section .carousel-caption p { + font-size: 1.67rem; + font-weight: bold; + line-height: 1.5625rem; + color: var(--black-color); + padding: 0 11% 0.625rem; +} + +.testimonial-section .carousel-indicators { + bottom: -2.8125rem; +} + +.testimonial-section .carousel-indicators button { + width: 15px; + height: 15px; + outline: auto; + border-radius: 50%; + border: none; + margin-right: 1rem; + opacity: 0.2; +} + +.testimonial-section .carousel-indicators button.active { + opacity: 1; +} + +.testimonial-section .carousel-item:hover .carousel-caption p { + color: var(--secondry-color); +} + +/* Responsive adjustments */ +@media only screen and (max-width: 800px) { + .testimonial-section .carousel-caption img { + width: 50%; + height: 100px; + } + + .testimonial-section .carousel-caption p { + font-size: 1rem; + } +} + +@media only screen and (max-width: 1390px) { + .testimonial-section .carousel-caption img { + width: 40%; + height: 100px; + } +} + +@media (max-width: 991px) { + .text-content { + width: 100%; + } + + .testimonial-section .carousel-caption p { + padding: 0; + } + +} + +@media (max-width: 767px) { + h1 { + font-size: 2.8rem; + } + + h2 { + font-size: 1.3rem; + line-height: 28px; + } + + + .testimonial-section .carousel-item { + padding: 11rem 3.125rem; + } +} + +@media (max-width: 330px) { + .testimonial-section .carousel-item { + padding: 13rem 3.125rem; + } +} + + diff --git a/Css-files/services1.css b/Css-files/services1.css index e9a86f4d..37dc4f0b 100644 --- a/Css-files/services1.css +++ b/Css-files/services1.css @@ -27,10 +27,13 @@ border-radius: 20px; box-shadow: 0 35px 80px rgba(0,0,0,0.15); transition: 0.5s; + align-items: center; } .container .card:hover { height: 350px; + /* added */ + box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3); } .container .card .imgbx { @@ -42,6 +45,8 @@ border-radius: 12px; transition: 0.5s; overflow: hidden; + /* added */ + z-index: 1; } @media screen and (max-width:430px) { @@ -58,7 +63,8 @@ .container .card:hover .imgbx { top: -100px; - scale: 0.75; + /* added */ + transform: scale(0.75); box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); } @@ -80,6 +86,8 @@ overflow: hidden; text-align: center; transition: 0.5s; + /* added */ + z-index: 2; } .container .card:hover .content { @@ -107,6 +115,13 @@ font-weight: 500; text-decoration: 8px; border-radius: 8px; + /* added */ + transition: background-color 0.3s, transform 0.3s; +} +/* added */ +.container .card:hover .content a { + background-color: #dc3545; + transform: translateY(-5px); } ::-webkit-scrollbar-track { diff --git a/Css-files/signup.css b/Css-files/signup.css index 9e3bd464..1153c1f0 100644 --- a/Css-files/signup.css +++ b/Css-files/signup.css @@ -1,27 +1,45 @@ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap'); .main-content-login { - background-color: brown; + background: linear-gradient(135deg, #6a1b29, #d84315); padding: 4rem 0; font-family: 'Noto Sans', sans-serif; } .left-login img { width: 100%; - transition: transform 0.3s ease; + transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease; + opacity: 0.9; + filter: brightness(90%); } -.left-login img:hover{ +.left-login img:hover { transform: rotate(-5deg) scale(1.1); + opacity: 1; + filter: brightness(100%); } .right-login .title { color: rgb(208, 50, 50); font-weight: 700; + transition: color 0.3s ease, text-shadow 0.3s ease; +} + +.right-login .title:hover { + color: rgb(180, 30, 30); + text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); } .card-body { padding: 7%; + transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; + background: #fff; +} + +.card-body:hover { + transform: translateY(-5px); + box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); + background: #f9f9f9; } .textfield { @@ -36,6 +54,7 @@ .textfield>label { font-weight: bold; + transition: color 0.3s ease; } .textfield>input { @@ -48,6 +67,13 @@ font-size: 12pt; box-shadow: 0px 2px 5px #00000056; outline: none; + transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; +} + +.textfield>input:focus { + background: #f0f8ff; + box-shadow: 0px 4px 10px #00000056; + transform: scale(1.02); } .textfield>input::placeholder { @@ -67,34 +93,55 @@ color: white; background: rgb(208, 50, 50); box-shadow: 0px 10px 40px -12px #b10f1f85; + transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } .btn-login:hover { background: rgba(208, 50, 50, 0.9); + transform: scale(1.05); + box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.2); } #signup-hide { right: 20px; position: absolute; bottom: 10%; + transition: opacity 0.3s ease, transform 0.3s ease; +} + +#signup-hide:hover { + opacity: 0.8; + transform: scale(1.1); } .hide-icon { font-size: 27px; + transition: color 0.3s ease, transform 0.3s ease; +} + +.hide-icon:hover { + color: rgb(208, 50, 50); + transform: rotate(15deg); } .card { box-shadow: 0px 10px 50px #000000a4; width: 80%; + transition: transform 0.3s ease, box-shadow 0.3s ease; } -@media screen and (width <=600px) { +.card:hover { + transform: scale(1.02); + box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); +} + +@media screen and (max-width: 600px) { .card { width: 95%; } } -@media screen and (width < 992px) { +@media screen and (max-width: 992px) { .left-login img { width: 60%; } @@ -105,14 +152,20 @@ } } -@media screen and (width >= 2000px) -{ - .left-login img{ +@media screen and (min-width: 2000px) { + .left-login img { width: 70%; } } -.right-login h1.text-center{ - font-size:13px; +.right-login h1.text-center { + font-size: 13px; font-weight: bold; -} \ No newline at end of file + transition: font-size 0.3s ease; +} + +@media screen and (max-width: 768px) { + .right-login h1.text-center { + font-size: 12px; + } +} diff --git a/Css-files/style.css b/Css-files/style.css index 16188b80..70c1f9f7 100644 --- a/Css-files/style.css +++ b/Css-files/style.css @@ -860,4 +860,10 @@ textarea { ::-webkit-scrollbar-thumb { border-radius: 12px; background-color: yellow; +} + +@media (max-width:768px) { + .card-home img{ + width: -webkit-fill-available !important; + } } \ No newline at end of file diff --git a/Html-files/FeedbackPage.html b/Html-files/FeedbackPage.html index 93a7fc2b..96fe9f0f 100644 --- a/Html-files/FeedbackPage.html +++ b/Html-files/FeedbackPage.html @@ -52,9 +52,112 @@ background-color: #b80d0d; z-index: 9999; } + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + diff --git a/Html-files/add-address.html b/Html-files/add-address.html index 2883e3ae..d674ffd6 100644 --- a/Html-files/add-address.html +++ b/Html-files/add-address.html @@ -32,10 +32,113 @@ background-color: #b80d0d; z-index: 9999; } + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + diff --git a/Html-files/cart.html b/Html-files/cart.html index ccaa6061..8dfb54a6 100644 --- a/Html-files/cart.html +++ b/Html-files/cart.html @@ -167,6 +167,37 @@ color: rgb(0, 0, 0); } +.circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + @@ -175,6 +206,78 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + diff --git a/Html-files/contributor.html b/Html-files/contributor.html index 221be7a1..d124e676 100644 --- a/Html-files/contributor.html +++ b/Html-files/contributor.html @@ -1,48 +1,157 @@ + Contributors +

🤝 Contributors

+
-
- +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/Html-files/dish-detailes.html b/Html-files/dish-detailes.html index 9cf3dd1b..89182418 100644 --- a/Html-files/dish-detailes.html +++ b/Html-files/dish-detailes.html @@ -36,9 +36,112 @@ background-color: #b80d0d; z-index: 9999; } + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ diff --git a/Html-files/feedback.html b/Html-files/feedback.html index 53604e5e..f3d69aca 100644 --- a/Html-files/feedback.html +++ b/Html-files/feedback.html @@ -1,18 +1,33 @@ - - - + + + Feedback - Food Ordering Website - - + + - - - - + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ +
-
-

We appreciate your valuable feedback.

-
-
-
- - -
-
- - -
-
- - -
-
-

Food Quality

-
- - - - -
-
-
-

Speed of service

-
- - - - -
-
-
-

Value for Money

-
- - - - -
-
-
-

Any comments, questions or suggestions?

- -
-
-

How much would you like to rate us?

-
-
-
-
-
-
-
-
-
- -
-
-
Thank you for your feedback!
+
+

+ We appreciate your valuable feedback. +

+
+
+
+ + +
+
+ + +
+
+ + +
+
+

Food Quality

+
+ + + + +
+
+
+

Speed of service

+
+ + + + +
+
+
+

Value for Money

+
+ + + + +
+
+
+

Any comments, questions or suggestions?

+ +
+
+

How much would you like to rate us?

+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+
+ + + - + + + diff --git a/Html-files/foodcatering.html b/Html-files/foodcatering.html index a87531d4..6368f2f5 100644 --- a/Html-files/foodcatering.html +++ b/Html-files/foodcatering.html @@ -78,9 +78,113 @@ button:hover { background-color: #c51a1a; } + + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
diff --git a/Html-files/frosa.html b/Html-files/frosa.html index 5bff77bb..d3763a2d 100644 --- a/Html-files/frosa.html +++ b/Html-files/frosa.html @@ -98,10 +98,113 @@ border-radius: 5px; text-align: center; } + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + diff --git a/Html-files/menu.html b/Html-files/menu.html index decd259d..81d5c69b 100644 --- a/Html-files/menu.html +++ b/Html-files/menu.html @@ -97,11 +97,114 @@ } +.circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
- -
-
-
+ +
+
+
+
- Offer 1
50% Off on Burgers
@@ -261,7 +331,7 @@
50% Off on Burgers
- Offer 1
Free Delivery
@@ -276,7 +346,7 @@
Free Delivery
- Offer 1
Combo Deal
@@ -288,386 +358,307 @@
Combo Deal
-
-
-
- -
-
-
-
-
-
- -

- Discover a world of flavors with our diverse culinary - offerings. From savory dishes crafted with fresh, local - ingredients to indulgent desserts that delight the senses, - each bite tells a story. Savor the fusion of traditional - recipes and innovative twists, bringing global tastes to your - table. Taste the difference today! -

-
-
+
+
-
-
-
- -
-
- 🎉 Grab your savings now with our unbeatable new discounts - every week! 💸 -
-

- Don't miss out on our exclusive offers! 🎉 Enjoy massive - discounts 💸 on your favorite items and save big on every - purchase! 🛍ī¸ -

- + +
+
+
+
+
+
+ +

+ Discover a world of flavors with our diverse culinary offerings. From savory dishes crafted with fresh, local ingredients to indulgent desserts that delight the senses, each bite tells a story. Savor the fusion of traditional recipes and innovative twists, + bringing global tastes to your table. Taste the difference today! +

+
+
-
-
-
-
- -
-
- 🤝 Exciting new collaborations just launched! Discover the - latest partnerships today! 🌟 -
-

- Experience the thrill of our new collaborations! 🤩 Discover - innovative partnerships and enjoy exclusive benefits now! - 🌍✨ -

- -
-
-
- -
-
- -
-
- 🎮 New games alert! Level up your fun with our latest - releases! 🚀 -
-

- Dive into the excitement with our new game releases! 🎉 - Challenge yourself and explore thrilling adventures today! - 🕹ī¸đŸŒŸ -

- +
+
+
+ +
+
+ 🎉 Grab your savings now with our unbeatable new discounts every week! 💸 +
+

+ Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍ī¸ +

+ +
+
+
+ +
+
+ +
+
+ 🤝 Exciting new collaborations just launched! Discover the latest partnerships today! 🌟 +
+

+ Experience the thrill of our new collaborations! 🤩 Discover innovative partnerships and enjoy exclusive benefits now! 🌍✨ +

+ +
+
+
+ +
+
+ +
+
+ 🎮 New games alert! Level up your fun with our latest releases! 🚀 +
+

+ Dive into the excitement with our new game releases! 🎉 Challenge yourself and explore thrilling adventures today! 🕹ī¸đŸŒŸ +

+ +
+
+
-
-
-
-
-
-
-

Have A Great Taste !!

-
-
-
-
+ +
+ - + + + + +

Follow Us

@@ -394,24 +430,42 @@

Follow Us

+ +
-

- Stay connected with us on social media for the latest updates, recipes, and foodie adventures. -

+

Stay connected with us on social media for the latest updates, recipes, and foodie adventures.

+
+ Give your valuable + + feedback! + +
@@ -494,6 +548,78 @@

Follow Us

}); +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/Html-files/shray.html b/Html-files/shray.html index 48b40682..3202c86a 100644 --- a/Html-files/shray.html +++ b/Html-files/shray.html @@ -35,6 +35,37 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/Images/chinesefood/download (3).jpeg b/Images/chinesefood/download (3).jpeg new file mode 100644 index 00000000..5f292cfc Binary files /dev/null and b/Images/chinesefood/download (3).jpeg differ diff --git a/Images/chinesefood/download (4).jpeg b/Images/chinesefood/download (4).jpeg new file mode 100644 index 00000000..c8ed2a05 Binary files /dev/null and b/Images/chinesefood/download (4).jpeg differ diff --git a/Images/chinesefood/download (5).jpeg b/Images/chinesefood/download (5).jpeg new file mode 100644 index 00000000..b9a6d5f6 Binary files /dev/null and b/Images/chinesefood/download (5).jpeg differ diff --git a/Images/chinesefood/download (6).jpeg b/Images/chinesefood/download (6).jpeg new file mode 100644 index 00000000..17d3a9f3 Binary files /dev/null and b/Images/chinesefood/download (6).jpeg differ diff --git a/Images/chinesefood/download (7).jpeg b/Images/chinesefood/download (7).jpeg new file mode 100644 index 00000000..573ca728 Binary files /dev/null and b/Images/chinesefood/download (7).jpeg differ diff --git a/Images/chinesefood/image.png b/Images/chinesefood/image.png new file mode 100644 index 00000000..53cd1da7 Binary files /dev/null and b/Images/chinesefood/image.png differ diff --git a/contact_GSSoC_contributed.html b/contact_GSSoC_contributed.html index 618d89ad..7a21e109 100644 --- a/contact_GSSoC_contributed.html +++ b/contact_GSSoC_contributed.html @@ -29,6 +29,37 @@ background-color: #e21f1f; z-index: 9999; } + + .circle { + position: absolute; + width: 20px; + height: 20px; + border-radius: 50%; + pointer-events: none; + background: radial-gradient(circle, rgba(255, 0, 0, 0.466), rgba(255, 52, 52, 0.5)); + transition: transform 0.1s, left 0.1s, top 0.1s; + box-shadow: 0 0 20px #faff64, + 0 0 60px #f52323, + 0 0 100px #ff0000; + animation: colors 1s infinite; + transform: translate(-50%, -50%); + } + + .circle-container { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 9999; + } + + @media (max-width: 724px) { + .circle-container{ + display: none; + } + } @@ -139,6 +170,76 @@

Follow Us

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ \ No newline at end of file diff --git a/index.html b/index.html index 66ee29f3..477f4eb7 100644 --- a/index.html +++ b/index.html @@ -15,6 +15,7 @@ + +
Visitors
@@ -135,15 +251,17 @@ --> - + +
+
@@ -176,7 +295,7 @@
- + @@ -473,12 +592,18 @@

.content>p { margin-bottom: .7rem; } - + .card-text{ + color:black; + } + .card-1:hover>.content { top: 260px; backdrop-filter: blur(4px); } + .card-title{ + color:#f0f0f0; + } .btn { border: none; padding: .7em 1.8em; @@ -496,37 +621,55 @@

-

Authentic Indian Flavors

+

Authentic Indian Flavors

From aromatic curries to flavorful biryanis, our menu showcases the diversity and deliciousness of Indian cuisine.

- +
-

Tech-Infused Dining Experience

+

Tech-Infused Dining Experience

Customers can use apps to place orders, customize their dishes, and even provide feedback, making their visit more convenient and interactive.

- +
-

Innovative Fusion Dishes

+

Innovative Fusion Dishes

The combinations of Indian and international cuisines not only tantalize taste buds but also provide unique experience.

- +
@@ -890,97 +1033,106 @@

How do I book a table for dining in?

-

For Free Delivery!

+

For Free Delivery!

Download This Amazing App Now!


-

For best discounts and free delivery download the app now from your Google Play Store or App Store.

- Get it on Google Play Store - Download on the Apple App Store +

For best discounts and free delivery download the app now from your Google Play Store or App Store.

+ Get it on Google Play Store + Download on the Apple App Store
+

- \ No newline at end of file + diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 03a8e5ba..dd1b626a 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "Food-ordering-website", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "node_modules/aos": { diff --git a/style.css b/style.css index 3579e7ac..b18bf9e4 100644 --- a/style.css +++ b/style.css @@ -52,24 +52,30 @@ body { /*Scrollbar Style*/ -::-webkit-scrollbar-track { - -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6); - /* background-image: linear-gradient(to top, rgb(246, 10, 10) , rgb(248, 145, 49), rgb(236, 239, 56)); */ - background-color: white; +::-webkit-scrollbar-track +{ + + background-color: white; } -::-webkit-scrollbar { - width: 12px; + + + +::-webkit-scrollbar +{ + width: 10px; + + background-color: light red; } -::-webkit-scrollbar-thumb { - background-color: #ff0707; - border-radius: 10px; - border: 0.3px solid white; - background-image: -webkit-linear-gradient( 90deg, rgb(20, 21, 12) 0%, rgb(0, 0, 0) 25%, transparent 100%, rgb(247, 4, 4) 75%, transparent); +::-webkit-scrollbar-thumb +{ + height: 175px; + background: radial-gradient(circle at 10% 20%, rgb(205, 33, 42) 0%, rgb(236, 95, 5) 90%); } + /* Home carousel/slider */ #homeSlider .homeimg { @@ -412,6 +418,8 @@ body { background-color: var(--btn-hover-background-color); } + + .menu_items .items { text-align: center; max-height: 370px; @@ -741,6 +749,7 @@ body { .faq-section { + background-color: rgb(173, 204, 255); /* background: linear-gradient(345deg, #f7adad, #f01d1d); */ padding: 50px 20px; @@ -1177,8 +1186,8 @@ font-size: 24px; font-size: 18px; } - .faq-container - padding: 20px; + .faq-container { + padding:20px; } .faq-container h1 { font-size: 2rem;