From 4ea9c1a025e8a2ae640b4d6657730d1607c491b7 Mon Sep 17 00:00:00 2001 From: smog-root Date: Mon, 14 Oct 2024 18:46:04 +0530 Subject: [PATCH 01/16] Using_Trusted_Mail_Services_For_Signup --- signup/signup.html | 61 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/signup/signup.html b/signup/signup.html index 503bba2..4af1743 100644 --- a/signup/signup.html +++ b/signup/signup.html @@ -9,23 +9,23 @@ - -
-
-
-
-
-
-
-
-
+ +
+
+
+
+
+
+
+
+
+
-
- - + // Handle form submission + document.getElementById('emailForm').addEventListener('submit', function(event) { + event.preventDefault(); + + const email = document.getElementById('email').value; + if (email) { + showToast(`Thank you! A 20% discount code has been sent to ${email}`); + document.getElementById('popup').style.display = 'none'; + } + }); + + // Handle "No thanks" link + document.querySelector('.no-thanks').addEventListener('click', function(event) { + event.preventDefault(); + document.getElementById('popup').style.display = 'none'; + }); + + @@ -440,7 +497,7 @@

What Ma At Arctic Delights, we believe that every scoop of ice cream should be a masterpiece. We handpick the finest, sustainably sourced ingredients to craft flavors that not only cool you down but also take your taste buds on an unforgettable journey. Whether you crave something classic or adventurous, we offer a wide range of flavors designed to surprise and delight.

- Customize your perfect treat with our signature toppings, sauces, and add-ons to create a unique dessert experience tailored just for you. At Arctic Delights, we’re not just about ice cream—we’re about crafting moments of joy in every bite! + Customize your perfect treat with our signature toppings, sauces, and add-ons to create a unique dessert experience tailored just for you. At Arctic Delights, we're not just about ice cream—we're about crafting moments of joy in every bite!

@@ -626,7 +683,7 @@

Rainbow Classic Cone

Orange Pops

-
Refreshing frozen delights bursting with zesty orange flavor, offering a sunny, sweet, and tangy treat that’s perfect for cooling off on a hot day!
+
Refreshing frozen delights bursting with zesty orange flavor, offering a sunny, sweet, and tangy treat that's perfect for cooling off on a hot day!
@@ -698,7 +755,7 @@

Very Very Peachy

Orange Pops

-
Refreshing frozen delights bursting with zesty orange flavor, offering a sunny, sweet, and tangy treat that’s perfect for cooling off on a hot day!
+
Refreshing frozen delights bursting with zesty orange flavor, offering a sunny, sweet, and tangy treat that's perfect for cooling off on a hot day!
$12.99 20.99

@@ -821,6 +878,7 @@

Behind the Scenes at Artic Delights

+ + diff --git a/style.css b/style.css index e79eac6..5b0dcd0 100644 --- a/style.css +++ b/style.css @@ -1383,63 +1383,82 @@ button:hover { } /* Footer Styles */ +/* Footer styles */ + .footer { - background-color: var(--background-color); - text-align: center; + padding: 20px; + background-color: #FF6F61; /* Ice cream color */ + color: white; + width: 100%; } -.footer .share { - padding: 1rem 0; +.footer hr { + border: 0; + border-top: 1px solid white; + margin: 20px 0; } -.footer .share a { - height: 5rem; - width: 5rem; - line-height: 5rem; - font-size: 2rem; - color: var(--text-color); - border: var(--border); - margin: 0.3rem; - border-radius: 50%; +/* Parent div styling */ +.footer-row { + display: flex; + justify-content: space-between; /* Ensures space between child divs */ + flex-wrap: nowrap; /* Prevent wrapping */ + align-items: flex-start; /* Aligns child divs at the top */ } -.footer .share a:hover { - background-color: var(--background-color); +/* Child div styling */ +.footer-column { + flex: 1; + min-width: 200px; /* Ensures child divs do not shrink too much */ + margin: 0 15px; } -.footer .links { - display: flex; - justify-content: center; - flex-wrap: wrap; - padding: 10px 0; - gap: 10px; +.footer h3 { + margin-bottom: 10px; + font-size: 1.5vw; + color: white; } -.footer .links a { - padding: 0.7rem 2rem; - color: var(--text-color); - border: var(--border); - font-size: 2rem; +.footer a { + display: block; + color: white; + transition: color 0.3s; + margin-bottom: 5px; + size: 1vw; } -.footer .links a:hover { - background-color: var(--background-color); +.footer a:hover { + color: #ddd; /* Subtle hover effect */ } -footer .credit { - font-size: 2rem; - font-weight: lighter; - padding: 1.5rem; +/* Social icons container */ +.footer .social-icons { + display: flex; + justify-content: center; /* Center align icons */ +} +a{ + font-size: 1vw; } -.footer .credit p { - color: var(--text-color); +.footer .social-icons a { + margin: 0 10px; + color: white; + transition: color 0.3s; + margin-top: 2vw; } -.footer .credit span { - color: var(--text-color); +.footer .social-icons a:hover { + color: #ddd; /* Subtle hover effect */ +} + +/* Footer credit */ +.footer .credit { + margin-top: 20px; + width: 100%; + text-align: center; } +/* Footer Styles */ /* Media Queries */ @media (max-width: 991px) { From 2ddfff76e0445ec1c2cfd6b344eeacea5def67fd Mon Sep 17 00:00:00 2001 From: Priyank Jain Date: Mon, 21 Oct 2024 14:56:37 +0530 Subject: [PATCH 10/16] privacy page created --- privacy.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/privacy.html b/privacy.html index 781be54..e74f20d 100644 --- a/privacy.html +++ b/privacy.html @@ -113,7 +113,7 @@

How We Use Your Information

-

Cookies and Tracking Technologies

+

Cookies and Tracking

We use cookies and similar technologies to enhance your experience on our website. Cookies are small files stored on your device that help us remember your preferences and improve site functionality. You can manage your cookie preferences through your browser settings.

From 60953069c2af93bd11f5d3fc3de0d12019c192e0 Mon Sep 17 00:00:00 2001 From: abhivyakti2 <143368698+abhivyakti2@users.noreply.github.com> Date: Wed, 23 Oct 2024 10:54:20 +0000 Subject: [PATCH 11/16] navbar buttons overlap solved --- script.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/script.js b/script.js index 7ed6097..89f20ec 100644 --- a/script.js +++ b/script.js @@ -14,6 +14,8 @@ document.addEventListener('DOMContentLoaded', () => { searchForm.classList.toggle('active'); navbar.classList.remove('active'); cartItem.classList.remove('active'); + wishlistContainer.classList.remove('active'); + }; document.querySelector('#cart-btn').onclick = () => { @@ -21,6 +23,8 @@ document.addEventListener('DOMContentLoaded', () => { myOrderContainer.classList.remove('active'); navbar.classList.remove('active'); searchForm.classList.remove('active'); + wishlistContainer.classList.remove('active'); + }; document.querySelector('#my-order-btn').onclick = () => { @@ -49,6 +53,8 @@ document.addEventListener('DOMContentLoaded', () => { navbar.classList.remove('active'); searchForm.classList.remove('active'); cartItem.classList.remove('active'); + wishlistContainer.classList.remove('active'); + }; function filterItems() { const selectedPrice = priceFilter.value; From 5751563310add655d9a82c97cfddf45dbe88bda9 Mon Sep 17 00:00:00 2001 From: Samiksha <143505220+Sam94GIT@users.noreply.github.com> Date: Sat, 26 Oct 2024 23:32:14 +0530 Subject: [PATCH 12/16] addition of allergy specification --- index.html | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 70 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 4399007..04261ac 100644 --- a/index.html +++ b/index.html @@ -595,12 +595,22 @@

Sign Up

Filter Ice Creams

- + + + + + + +
+ + +
+
@@ -892,6 +902,60 @@

Very Very Peachy

+ + +