From 4c903b5a6274aa7e13b57683d538a2b71ef7ac07 Mon Sep 17 00:00:00 2001 From: rahulbamnuya Date: Wed, 16 Oct 2024 10:05:16 +0530 Subject: [PATCH 1/2] Improve css of copyright section --- index.html | 3 ++- popup/popup.css | 2 +- style.css | 36 ++++++++++++++++++++++++++++++++---- 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 283afaab..bbcd4f41 100644 --- a/index.html +++ b/index.html @@ -659,7 +659,8 @@

Feedback Form

diff --git a/popup/popup.css b/popup/popup.css index cb231c2a..d1412f36 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -84,7 +84,7 @@ p { margin-bottom: 26px; - color: #555; + color: #d7d7d7; font-size: 13px; } diff --git a/style.css b/style.css index 7cbd387d..e7afb409 100644 --- a/style.css +++ b/style.css @@ -815,11 +815,38 @@ button { } .footer-bottom { - background: #343a40; - color: #686868; + background-color: #111; + color: #fff; text-align: center; - padding: 15px 0; - margin-top: 40px; + padding: 20px 0; + + /* Add a subtle brand color */ + box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2); + /* Shadow for depth */ +} + +.footer-bottom p { + font-size: 1rem; + margin: 5px 0; + color: white; + letter-spacing: 1.02 + px; +} + +.footer-bottom p span { + color: #f0c040; + /* Highlight designer name */ + font-weight: bold; +} + +.footer-bottom p:hover { + color: #f0c040; + /* Hover effect for the footer text */ + transition: color 0.3s ease-in-out; +} + +.footer-bottom span:hover { + color: white; } @media screen and (max-width: 768px) { @@ -885,6 +912,7 @@ button { border: none; transition: background-color 0.3s ease, transform 0.3s ease; z-index: 1; + border: 1px solid rgb(147, 143, 143); } .social-sidebar ul{ From d69fff14b70765ec154349271e3c5c04b5334abf Mon Sep 17 00:00:00 2001 From: rahulbamnuya Date: Wed, 16 Oct 2024 10:48:33 +0530 Subject: [PATCH 2/2] i have imrpve css of customer support page ,add custome message and also add good icons for each field --- index.html | 151 ++++++++++++++++++++++++++--------------------------- style.css | 53 ++++++++++++++++++- 2 files changed, 126 insertions(+), 78 deletions(-) diff --git a/index.html b/index.html index bbcd4f41..9c034847 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,9 @@ + + @@ -528,86 +531,82 @@

Emily Davismore

-
- -
-
-

Contact Us

+
+
+
+

Contact Our Customer Support Team

+

+ We're here to assist you with any questions or concerns you may have. +

+ + +
+
+
+ Contact Image
-
-
- Contact Image -
-
-
-
- - -
-
- - -
-
- - -
- -
- - - -
- + } + + // Function to save form data to local storage + function saveFormData() { + const name = document.getElementById('name').value; + const email = document.getElementById('email').value; + const message = document.getElementById('message').value; + + const newEntry = { name, email, message }; + const existingData = JSON.parse(localStorage.getItem('formData')) || []; + existingData.push(newEntry); + localStorage.setItem('formData', JSON.stringify(existingData)); + } + + // Event listener for form submission + document.getElementById('contactForm').addEventListener('submit', function (event) { + event.preventDefault(); + saveFormData(); + clearForm(); + alert('Message sent!'); + }); + + // Function to clear input fields + function clearForm() { + document.getElementById('name').value = ''; + document.getElementById('email').value = ''; + document.getElementById('message').value = ''; + } + + // Load the form data when the page is loaded + window.onload = loadFormData; +
-
+
+
+