From 867f016e20bcc8588c68407e2c8c94881d71aa84 Mon Sep 17 00:00:00 2001 From: NehaKumari Date: Sat, 9 Nov 2024 15:03:55 +0530 Subject: [PATCH] duplicate link removal --- index.html | 1723 ++++++++++++++++++++++++++++------------------------ 1 file changed, 923 insertions(+), 800 deletions(-) diff --git a/index.html b/index.html index e272dfa..6cdcfd5 100644 --- a/index.html +++ b/index.html @@ -1,38 +1,38 @@ - + - + Retro - - + + - + - - + + + + - - --> - - - - - - - - - + .card-image { + width: auto; + /* Set width to auto to allow centering */ + height: auto; + /* Maintain aspect ratio */ + max-width: 100%; + /* Ensure image does not exceed card width */ + max-height: 200px; + /* Limit the max height to prevent overflow */ + object-fit: cover; + /* Ensure the image covers the card area without distorting */ + border-radius: 10px; + /* Match border radius of the box */ + margin: 0 auto; + /* Center the image horizontally */ + } + + .box h2 { + margin-top: 10px; + text-align: center; + } + + p { + text-align: center; + margin: 10px 0; + /* Add some margin for spacing */ + } + + /* Additional responsive adjustments */ + @media (max-width: 600px) { + .box { + max-width: 100%; + /* Allow full width on small screens */ + min-height: auto; + /* Allow height to adjust for smaller screens */ + } + + .card-image { + max-height: 150px; + /* Adjust max height for smaller screens */ + } + + .foot-panel2 { + display: flex; + flex-direction: column; + } + } + +
@@ -429,15 +471,16 @@
- + - - + if (document.body.classList.contains('dark-mode')) { + toggleIcon.classList.remove('fa-sun'); + toggleIcon.classList.add('fa-moon'); + toggleText.textContent = ' Dark Mode'; + } else { + toggleIcon.classList.remove('fa-moon'); + toggleIcon.classList.add('fa-sun'); + toggleText.textContent = 'Light Mode'; + } + }); + + + document.body.classList.add('light-mode'); + + + @@ -604,7 +649,8 @@ - + @@ -622,7 +669,7 @@

Discover the Past!

- - - + - +
-

Welcome to Retro!

-

Step back in time and experience the nostalgic charm of days gone by. - Immerse yourself in the world of vintage tech, classic designs, and timeless memories. - Get ready to embark on a journey through the ages, where innovation meets tradition, and the past inspires the future.

+

Welcome to Retro! +

+

Step back in time and experience + the nostalgic charm of days gone by. + Immerse yourself in the world of vintage tech, classic designs, and timeless memories. + Get ready to embark on a journey through the ages, where innovation meets tradition, and the past inspires + the future.

@@ -677,21 +727,32 @@

-

"Step into the past and discover our latest additions!
Explore our new arrivals and uncover the charm of a bygone era!"

+

+ "Step into the past and discover our latest additions!
Explore our new arrivals and uncover the charm of + a bygone era!"

@@ -699,7 +760,8 @@

Biryani

60s-style florals

-

From aromatic curries to flavorful biryanis, our menu showcases the diversity and +

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

@@ -707,94 +769,112 @@

60s-st Plate

60's Dinning Items

- Elegant porcelain plates with delicate floral patterns. Each plate tells a story of family gatherings and special occasions. + Elegant porcelain plates with delicate floral patterns. Each plate tells a story of family + gatherings and special occasions.

Candy -

Whimsical Nostalgia: The Stardust Bonbon

-

The Stardust Bonbon, a sweet relic from an era when the universe was our playground.

+

Whimsical Nostalgia: The + Stardust Bonbon

+

The Stardust Bonbon, a sweet relic from an era + when the universe was our playground.

- +
-
-
- -

-

Bringing happiness to you

-

Order your favourite vintage collections!

-
+
+
+ +

+

Bringing happiness to you

+

Order your favourite vintage collections!

+
- + -
-
-
-

Online Delivery


- Order Online -
-
-

Click & Collect


- Take out Order +
+
+
+

Online Delivery


+ Order Online +
+
+

Click & Collect


+ Take out Order +
-
- -
+ +
@@ -803,22 +883,26 @@

Bevera
  • - food-image + food-image
  • - food-image + food-image
  • - food-image + food-image
  • - food-image + food-image
  • @@ -826,31 +910,35 @@

    Bevera
    • - food-image + food-image
    • - food-image + food-image
    • - food-image + food-image
    • - food-image + food-image
    - - - + + - - - - -

    Frequently Asked Questions

    -
    -
    -
    - What is your return policy? - - - - - -
    -
    Our return policy lasts 30 days...
    + .retro-heading:hover { + color: #5d095c; + text-shadow: 0 0 15px rgba(214, 30, 171, 0.9), 0 0 30px rgba(138, 38, 88, 0.7); + transform: scale(1.3); + } + + .faq-container { + margin-top: 15px; + margin-left: auto; + margin-right: auto; + background: #f9f9f9; + /* Container background */ + border-radius: 8px; + /* Rounded corners */ + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + /* Subtle shadow */ + padding: 20px; + /* Padding inside the container */ + max-width: 76vw; + /* Increased max width for the container */ + } + + .faq-item { + margin-bottom: 20px; + border: 1px solid #ddd; + /* Border for each FAQ item */ + border-radius: 5px; + /* Rounded corners for each FAQ item */ + padding: 15px; + /* Padding inside each FAQ item */ + background: #fff; + /* Background for each FAQ item */ + transition: background 0.3s ease; + /* Smooth background transition */ + position: relative; + /* Position relative for arrow */ + } + + .faq-item:hover { + background: #f1f1f1; + /* Background color on hover */ + } + + .faq-question { + font-family: var(--ff-poppins); + font-size: 18px; + font-weight: bold; + cursor: pointer; + /* Pointer cursor on hover */ + display: flex; + justify-content: space-between; + /* Space between text and arrow */ + align-items: center; + /* Center vertically */ + } + + .faq-answer { + display: none; + margin-top: 10px; + font-family: var(--ff-poppins); + font-size: 16px; + color: #333; + } + + .faq-item:hover .faq-answer { + display: block; + } + + .faq-arrow { + transition: transform 0.3s ease; + /* Smooth rotation transition */ + } + + .faq-item .faq-arrow { + transform: rotate(0deg); + /* Arrow pointing down by default */ + } + + .faq-item:hover .faq-arrow { + transform: rotate(180deg); + /* Arrow pointing up when hovered */ + } + + + + +

    + Frequently Asked Questions

    +
    +
    +
    + What is your return policy? + + + + +
    -
    -
    - How do I track my order? - - - - - -
    -
    You can track your order using the tracking number...
    +
    Our return policy lasts 30 days...
    +
    +
    +
    + How do I track my order? + + + + +
    -
    -
    - How long does shipping take? - - - - - -
    -
    Shipping typically takes 5-7 business days, depending on your location.
    +
    You can track your order using the tracking number...
    +
    +
    +
    + How long does shipping take? + + + + +
    -
    -
    - Can I change my order after it's been placed? - - - - - -
    -
    If your order hasn't been processed yet, you can contact us to make changes.
    +
    Shipping typically takes 5-7 business days, depending on your location.
    +
    +
    +
    + Can I change my order after it's been placed? + + + + +
    -
    -
    - Do you ship internationally? - - - - - -
    -
    Yes, we offer international shipping to select countries.
    +
    If your order hasn't been processed yet, you can contact us to make changes.
    -
    -
    - Do you offer discounts for bulk orders? - - - - - -
    -
    Yes, we provide discounts on bulk orders. Please contact our sales team for more details.
    +
    +
    +
    + Do you ship internationally? + + + + +
    - +
    Yes, we offer international shipping to select countries.
    - -

    - - - -

    +
    +
    + Do you offer discounts for bulk orders? + + + + + +
    +
    Yes, we provide discounts on bulk orders. Please contact our sales team for more + details.
    +
    + +
    + +

    + -

    +

    - + +

    + + @@ -1104,70 +1212,77 @@

    Free Delivery!

    Download the 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