From 21d73680ec2b2df9a1bccc84980312fe85fab9ba Mon Sep 17 00:00:00 2001 From: Varsha Dewangan <140236223+Varsha-1605@users.noreply.github.com> Date: Thu, 17 Oct 2024 11:42:12 +0530 Subject: [PATCH 01/14] Added Search functionality --- blog.html | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 141 insertions(+) diff --git a/blog.html b/blog.html index 7f8c7636..e6a4dc65 100644 --- a/blog.html +++ b/blog.html @@ -334,6 +334,10 @@

Forgot Password

+
+ + +
@@ -917,6 +921,32 @@
${comment.name}
animation: gradient 15s ease infinite; background-size: 400% 400%; } + +.search-container { + display: flex; + align-items: center; + margin-right: 20px; + margin-top: 50px; + margin-left: 230px; + +} + +#searchInput { + padding: 8px; + border: 1px solid #ddd; + border-radius: 4px 0 0 4px; + font-size: 16px; + width: 200px; +} + +.search-container button { + padding: 8px 12px; + background: #F88379; + color: white; + border: 1px solid #F88379; + border-radius: 0 4px 4px 0; + cursor: pointer; +} @@ -1324,6 +1354,44 @@

Can I contribute to WordWise?

modal.style.display = "none"; } } + + + function performSearch() { + const searchQuery = document.getElementById('searchInput').value.toLowerCase(); + const blogPosts = document.querySelectorAll('.grid-item'); + + blogPosts.forEach(post => { + const title = post.querySelector('.text-title').textContent.toLowerCase(); + const date = post.querySelector('.secondary-title').textContent.toLowerCase(); + + if (title.includes(searchQuery) || date.includes(searchQuery)) { + post.style.display = 'block'; + } else { + post.style.display = 'none'; + } + }); +} + +// Event listener for real-time search +document.getElementById('searchInput').addEventListener('input', performSearch); + +// Function to reset the search +function resetSearch() { + document.getElementById('searchInput').value = ''; + const blogPosts = document.querySelectorAll('.grid-item'); + blogPosts.forEach(post => { + post.style.display = 'block'; + }); +} + +// Add reset button next to search bar +const searchContainer = document.querySelector('.search-container'); +const resetButton = document.createElement('button'); +resetButton.innerHTML = ''; +resetButton.onclick = resetSearch; +resetButton.style.marginLeft = '5px'; +searchContainer.appendChild(resetButton); + + +
+
+ + +
+ @@ -1371,6 +1405,45 @@ ScrollReveal().reveal('.revel1',{ delay:5,origin:'left'}); ScrollReveal().reveal('.revel2',{ delay:5,origin:'bottom'}); ScrollReveal().reveal('.revel3',{ delay:5,origin:'right'}); + + + +// Function to perform the search +function performSearch() { + const searchQuery = document.getElementById('searchInput').value.toLowerCase(); + const blogPosts = document.querySelectorAll('.grid-item'); + + blogPosts.forEach(post => { + const title = post.querySelector('.text-title').textContent.toLowerCase(); + const date = post.querySelector('.secondary-title').textContent.toLowerCase(); + + if (title.includes(searchQuery) || date.includes(searchQuery)) { + post.style.display = 'block'; + } else { + post.style.display = 'none'; + } + }); +} + +// Event listener for real-time search +document.getElementById('searchInput').addEventListener('input', performSearch); + +// Function to reset the search +function resetSearch() { + document.getElementById('searchInput').value = ''; + const blogPosts = document.querySelectorAll('.grid-item'); + blogPosts.forEach(post => { + post.style.display = 'block'; + }); +} + +// Add reset button next to search bar +const searchContainer = document.querySelector('.search-container'); +const resetButton = document.createElement('button'); +resetButton.innerHTML = ''; +resetButton.onclick = resetSearch; +resetButton.style.marginLeft = '5px'; +searchContainer.appendChild(resetButton); From e54b033c41c4fa42021957858d98e29819b3a5fc Mon Sep 17 00:00:00 2001 From: Akash Das <76689571+akash70629@users.noreply.github.com> Date: Thu, 17 Oct 2024 23:37:14 +0530 Subject: [PATCH 02/14] fix name field --- blog.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blog.html b/blog.html index fce19094..a9e7a378 100644 --- a/blog.html +++ b/blog.html @@ -490,7 +490,9 @@

Share Your Thoughts

- +
From 73f86bd1f1e26ca403d3da6c77ed33fc0995caf8 Mon Sep 17 00:00:00 2001 From: Kiran Fatima <152872068+Kiran-F@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:52:46 +0500 Subject: [PATCH 03/14] Update style.css --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index 9866c753..267b28b1 100644 --- a/style.css +++ b/style.css @@ -2242,6 +2242,7 @@ a { .overflow-img img { width: 100%; height: auto; + object-fit: cover; } .overflow-img:hover { From 8b14165af1f8c92350563a6e688045e6d4fdb24e Mon Sep 17 00:00:00 2001 From: Varsha Dewangan <140236223+Varsha-1605@users.noreply.github.com> Date: Fri, 18 Oct 2024 12:16:37 +0530 Subject: [PATCH 04/14] updated! --- index.html | 65 +----------------------------------------------------- 1 file changed, 1 insertion(+), 64 deletions(-) diff --git a/index.html b/index.html index d38ed360..6d6f6aaa 100644 --- a/index.html +++ b/index.html @@ -485,31 +485,7 @@

Forgot Password

font-size: 12px; } -.search-container { - display: flex; - align-items: center; - margin-right: 20px; - margin-top: 50px; - margin-left: 230px; - -} -#searchInput { - padding: 8px; - border: 1px solid #ddd; - border-radius: 4px 0 0 4px; - font-size: 16px; - width: 200px; -} - -.search-container button { - padding: 8px 12px; - background: #F88379; - color: white; - border: 1px solid #F88379; - border-radius: 0 4px 4px 0; - cursor: pointer; -} @@ -530,10 +506,7 @@

Forgot Password

    
-
- - -
+ @@ -1408,42 +1381,6 @@ -// Function to perform the search -function performSearch() { - const searchQuery = document.getElementById('searchInput').value.toLowerCase(); - const blogPosts = document.querySelectorAll('.grid-item'); - - blogPosts.forEach(post => { - const title = post.querySelector('.text-title').textContent.toLowerCase(); - const date = post.querySelector('.secondary-title').textContent.toLowerCase(); - - if (title.includes(searchQuery) || date.includes(searchQuery)) { - post.style.display = 'block'; - } else { - post.style.display = 'none'; - } - }); -} - -// Event listener for real-time search -document.getElementById('searchInput').addEventListener('input', performSearch); - -// Function to reset the search -function resetSearch() { - document.getElementById('searchInput').value = ''; - const blogPosts = document.querySelectorAll('.grid-item'); - blogPosts.forEach(post => { - post.style.display = 'block'; - }); -} - -// Add reset button next to search bar -const searchContainer = document.querySelector('.search-container'); -const resetButton = document.createElement('button'); -resetButton.innerHTML = ''; -resetButton.onclick = resetSearch; -resetButton.style.marginLeft = '5px'; -searchContainer.appendChild(resetButton); From a27be5bd8bf458f4b17691611203d47f30899877 Mon Sep 17 00:00:00 2001 From: Hiteash Mahajan <104294992+hiteashgupta1@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:09:11 +0530 Subject: [PATCH 05/14] Delete index.html --- index.html | 1341 ---------------------------------------------------- 1 file changed, 1341 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index d0bf48b0..00000000 --- a/index.html +++ /dev/null @@ -1,1341 +0,0 @@ - - - - - - - WordWise - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
- -
- -
- - - - - -
- - - -
- - - - - - - - - -
- - × -

Login

-
- - -
-
- - - -
- - - - - -
- - -
-
- × -

Signup

-
- - -
-
- - -
-
- - - -
-
- -
- - - -
- - - -
-
- - - - -
- - - - - - - - - - - - - - - - - - -
- - -    
- - - - - - - -
- -
-
-
- -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
-
- -
-
- - - -
- -
-
- - - - - - - - - -
- Slide 1 -
-
- Slide 2 -
-
- Slide 3 -
-
- Slide 4 -
-
- Slide 5 -
-
- Slide 6 -
- - - -
- - - -
- -
- - -
-
-

Frequently Asked Questions

-
-
-
-

How do I switch between dark and light themes?

- - - -
-
- -

You can easily switch between dark and light themes by clicking the theme toggle button located in the website header. This allows you to customize your viewing experience according to your preference.

-
-
- -
-
-

How do I use the 'Start Writing' page?

- - - -
-
- -

The 'Start Writing' page provides a simple interface for quickly creating and publishing blog posts. Just click "Start Writing" from the navigation bar, fill in your title, content, and tags, and publish your blog with a single click.

-
-
- -
-
-

How does the sliding bar with latest blogs work?

- - - -
-
- -

The sliding bar on the home page features the latest blogs published on the platform. It updates automatically and allows users to easily scroll through and click on any blog that catches their attention.

-
-
- -
-
-

How are top picks chosen for the leading blog page?

- - - -
-
- -

Top picks are curated by a combination of editor recommendations and user engagement metrics, such as views, likes, and comments, to highlight the best content available on Word Wise.

-
-
- -
-
-

How can I stay updated with new blog posts?

- - - -
-
- -

You can stay updated by following your favorite authors or topics, and by checking the sliding bar for the latest blog posts. You can also subscribe to newsletters or enable notifications for real-time updates.

-
-
-
-
-
- - -
-
-

Subscribe to Our Newsletter

-

Stay updated with the latest articles and insights from WordWise.

-
- - -
-
-
- - - -
- - - - - - - -
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 4ccc40551fbb6a2c4598469c792cf70080fe0ee3 Mon Sep 17 00:00:00 2001 From: Hiteash Mahajan <104294992+hiteashgupta1@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:15:44 +0530 Subject: [PATCH 06/14] Revert "Added Search functionality" --- blog.html | 68 --- index.html | 1286 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1286 insertions(+), 68 deletions(-) create mode 100644 index.html diff --git a/blog.html b/blog.html index 0143cc79..fce19094 100644 --- a/blog.html +++ b/blog.html @@ -334,10 +334,6 @@

Forgot Password

-
- - -
@@ -921,32 +917,6 @@
${comment.name}
animation: gradient 15s ease infinite; background-size: 400% 400%; } - -.search-container { - display: flex; - align-items: center; - margin-right: 20px; - margin-top: 50px; - margin-left: 230px; - -} - -#searchInput { - padding: 8px; - border: 1px solid #ddd; - border-radius: 4px 0 0 4px; - font-size: 16px; - width: 200px; -} - -.search-container button { - padding: 8px 12px; - background: #F88379; - color: white; - border: 1px solid #F88379; - border-radius: 0 4px 4px 0; - cursor: pointer; -} @@ -1329,44 +1299,6 @@ modal.style.display = "none"; } } - - - function performSearch() { - const searchQuery = document.getElementById('searchInput').value.toLowerCase(); - const blogPosts = document.querySelectorAll('.grid-item'); - - blogPosts.forEach(post => { - const title = post.querySelector('.text-title').textContent.toLowerCase(); - const date = post.querySelector('.secondary-title').textContent.toLowerCase(); - - if (title.includes(searchQuery) || date.includes(searchQuery)) { - post.style.display = 'block'; - } else { - post.style.display = 'none'; - } - }); -} - -// Event listener for real-time search -document.getElementById('searchInput').addEventListener('input', performSearch); - -// Function to reset the search -function resetSearch() { - document.getElementById('searchInput').value = ''; - const blogPosts = document.querySelectorAll('.grid-item'); - blogPosts.forEach(post => { - post.style.display = 'block'; - }); -} - -// Add reset button next to search bar -const searchContainer = document.querySelector('.search-container'); -const resetButton = document.createElement('button'); -resetButton.innerHTML = ''; -resetButton.onclick = resetSearch; -resetButton.style.marginLeft = '5px'; -searchContainer.appendChild(resetButton); - + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+ + + + + +
+ + + +
+ + + + + + + + + +
+
+ × +

Login

+
+ + +
+
+ + + +
+ + + + +
+
+ + +
+
+ × +

Signup

+
+ + +
+
+ + +
+
+ + + +
+
+ +
+ + + +
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + +
+ + Light Mode +      +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ +
+
+ + + +
+ +
+
+ + + + + + + + + +
+ Slide 1 +
+
+ Slide 2 +
+
+ Slide 3 +
+
+ Slide 4 +
+
+ Slide 5 +
+
+ Slide 6 +
+ + + +
+ + + +
+ +
+ + +
+
+

Frequently Asked Questions

+
+
+
+

How do I switch between dark and light themes?

+ + + +
+
+ +

You can easily switch between dark and light themes by clicking the theme toggle button located in the website header. This allows you to customize your viewing experience according to your preference.

+
+
+ +
+
+

How do I use the 'Start Writing' page?

+ + + +
+
+ +

The 'Start Writing' page provides a simple interface for quickly creating and publishing blog posts. Just click "Start Writing" from the navigation bar, fill in your title, content, and tags, and publish your blog with a single click.

+
+
+ +
+
+

How does the sliding bar with latest blogs work?

+ + + +
+
+ +

The sliding bar on the home page features the latest blogs published on the platform. It updates automatically and allows users to easily scroll through and click on any blog that catches their attention.

+
+
+ +
+
+

How are top picks chosen for the leading blog page?

+ + + +
+
+ +

Top picks are curated by a combination of editor recommendations and user engagement metrics, such as views, likes, and comments, to highlight the best content available on Word Wise.

+
+
+ +
+
+

How can I stay updated with new blog posts?

+ + + +
+
+ +

You can stay updated by following your favorite authors or topics, and by checking the sliding bar for the latest blog posts. You can also subscribe to newsletters or enable notifications for real-time updates.

+
+
+
+
+
+ + +
+
+

Subscribe to Our Newsletter

+

Stay updated with the latest articles and insights from WordWise.

+
+ + +
+
+
+ + + +
+ + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 0f578f14e71980cc57431b5a82fed2b024064d91 Mon Sep 17 00:00:00 2001 From: Subhajit-2023-44 Date: Fri, 18 Oct 2024 13:44:44 +0530 Subject: [PATCH 07/14] done --- blog.html | 81 ++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 51 insertions(+), 30 deletions(-) diff --git a/blog.html b/blog.html index fce19094..a3d2c975 100644 --- a/blog.html +++ b/blog.html @@ -684,41 +684,48 @@
${comment.name}
max-width: 48rem; margin: 0 auto; } - + .section-title { - font-size: 2.25rem; - font-weight: 800; - text-align: center; - color: #111827; - margin-bottom: 48px; -} + font-size: 2.25rem; + font-weight: 800; + text-align: center; + color: #111827; + margin-bottom: 48px; + +} + .title-text { background-clip: text; -webkit-background-clip: text; color: #f4978e; /* background-image: linear-gradient(to right, #f4978e); */ } - + .comment-form { - margin-bottom: 64px; - background-color: white; - padding: 24px; - border-radius: 0.75rem; - box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - transition: all 0.3s; -} + margin: 64px auto; + background-color: transparent; + padding: 24px; + border-radius: 0.75rem; + box-shadow: 0 10px 20px var(--text-color); + transition: all 0.3s; + +} + .comment-form:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); } - + .form-title { - font-size: 1.5rem; - font-weight: 700; - color: #1f2937; - margin-bottom: 24px; + + font-size: 1.5rem; + font-weight: 700; + color: #3498db; + margin-bottom: 24px; + } + .form-content { display: flex; @@ -730,6 +737,17 @@
${comment.name}
position: relative; } +.input-field { + + width: 100%; + padding: 12px 16px; + border: 2px solid #d1d5db; + border-radius: 0.5rem; + transition: border-color 0.3s; + margin-top: 7px; + +} + .input-field { width: 100%; padding: 12px 16px; @@ -758,18 +776,21 @@
${comment.name}
top: -10px; color: #f4978e; } - + .submit-button { - width: 100%; - color: #f4978e; - font-weight: 600; - padding: 12px 24px; - border-radius: 0.5rem; - border: none; - cursor: pointer; - transition: all 0.3s; -} + width: 100%; + color: #ffffff; + font-weight: 600; + padding: 12px 24px; + border-radius: 0.5rem; + border: none; + cursor: pointer; + transition: all 0.3s; + background-color: #3498db; + +} + .submit-button:hover { color: #f4978e; transform: scale(1.05); From ab392cca106e81ef8fab2fb951f2a60c352d71a9 Mon Sep 17 00:00:00 2001 From: Hiteash Mahajan <104294992+hiteashgupta1@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:22:31 +0530 Subject: [PATCH 08/14] Update PRValidator.yml --- .github/workflows/PRValidator.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PRValidator.yml b/.github/workflows/PRValidator.yml index cd771f5f..7764525f 100644 --- a/.github/workflows/PRValidator.yml +++ b/.github/workflows/PRValidator.yml @@ -20,7 +20,7 @@ jobs: id: check_issue_number run: | description="${{ github.event.pull_request.body }}" - if [[ ! "$description" =~ (Fixes #[0-9]+|Fixes #NEW) ]]; then + if [[ ! "$description" =~ (Fixes #[0-9])]]; then echo "::error::PR description must contain an issue number or 'Fixes #NEW'" exit 1 - fi \ No newline at end of file + fi From 056c7456bdb3c41d68e1119d00c82cb146703a9a Mon Sep 17 00:00:00 2001 From: shivam8112005 Date: Fri, 18 Oct 2024 15:23:41 +0530 Subject: [PATCH 09/14] Created navbar sticky and Set correct redirection links of navbar --- Scroll_and_progressbar.css | 2 +- about.html | 8 +- blog.html | 6 +- category.html | 6 +- contact_us.html | 603 +++++++++++++++++++------------------ give_feedback.html | 587 ++++++++++++++++++------------------ index.html | 602 ++++++++++++++++++------------------ start_writing.html | 594 ++++++++++++++++++------------------ style.css | 14 +- 9 files changed, 1224 insertions(+), 1198 deletions(-) diff --git a/Scroll_and_progressbar.css b/Scroll_and_progressbar.css index 7d41f244..771f3cf1 100644 --- a/Scroll_and_progressbar.css +++ b/Scroll_and_progressbar.css @@ -45,7 +45,7 @@ background-color: #f8b5b5; /* Background color matching scrollbar track */ border-radius: 10px; /* Rounded corners */ box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for container */ - position: fixed; + /* position: fixed; */ overflow: hidden; } diff --git a/about.html b/about.html index 0427574d..8f10bf86 100644 --- a/about.html +++ b/about.html @@ -79,6 +79,7 @@ + - + -
+

About Us

WordWise is a responsive, user-friendly blogging platform designed to enrich vocabulary and engage diff --git a/blog.html b/blog.html index fce19094..4b7939e7 100644 --- a/blog.html +++ b/blog.html @@ -25,6 +25,7 @@ +

@@ -333,11 +334,12 @@

Forgot Password

+ -
+
diff --git a/category.html b/category.html index 4f2809c6..992b4888 100644 --- a/category.html +++ b/category.html @@ -38,6 +38,7 @@ +
+ -
+
diff --git a/contact_us.html b/contact_us.html index 81a2d369..ac1788d4 100644 --- a/contact_us.html +++ b/contact_us.html @@ -84,314 +84,317 @@ -
-
-
-
- -
- - - - -
- - - -
- - - - - - - - -
-
- × -

Login

-
- - -
-
- - - -
- - - - -
-
- - - -
-
- × -

Signup

-
- - -
-
- - -
-
- - - -
-
- -
- - - +
+
+
-
-
-
- -
- - - - - - - - - -
-
- × -

Login

-
- - -
-
- - - -
- - - - -
-
- - - -
-
- × -

Signup

-
- - -
-
- - -
-
- - - -
-
- -
- - - +
+
+
--> - + + - - + + + + + + + + + + + - - - - - -
-
+ + +
+ + -
+
diff --git a/start_writing.html b/start_writing.html index 3db0e531..23fd278b 100644 --- a/start_writing.html +++ b/start_writing.html @@ -56,314 +56,316 @@ -
-
-
- -
- -
- - - - -
- - - -
-
-
+ } + + .forgot { + text-align: right; + margin-left: 50px; + font-size: 10px; + margin-top: -40px; + + } + + .btn { + margin-top: 10px; + border-radius: 5px; + } + + .eye-icon { + position: absolute; + right: 15px; + top: 38px; + cursor: pointer; + color: #007bff; + } + + .close-icon { + font-size: 24px; + cursor: pointer; + float: right; + } + + .position-relative { + position: relative; + } + + /* Login button jumping issue fix */ + .btn-primary { + transition: all 0.3s ease; /* Smooth transition */ + } + + .btn-primary:hover { + background-color: #0056b3; + } + + .google-btn { + display: flex; + align-items: center; + justify-content: center; + } + + .google-logo { + width: 20px; + height: 20px; + margin-right: 10px; + } + + .btn-primary:hover { + background-color: #0056b3; + } + + /* Styles for collaborative writing feature */ + #collaborators { + margin-bottom: 15px; + } + + #collaboratorsList { + list-style-type: none; + padding: 0; + } + + #collaboratorsList li { + display: inline-block; + margin-right: 10px; + padding: 5px 10px; + background-color: #f0f0f0; + border-radius: 15px; + } + + #addCollaborator { + margin-top: 10px; + } + + #collaborativeSection { + border: 1px solid #ccc; + padding: 15px; + margin-bottom: 15px; + border-radius: 5px; + } + + #collaborativeContent { + width: 100%; + min-height: 200px; + margin-bottom: 10px; + } + + + + + + + + +
+ + +      +
+ +
+ -
+

Start Writing

diff --git a/style.css b/style.css index 267b28b1..a42167a7 100644 --- a/style.css +++ b/style.css @@ -1021,9 +1021,9 @@ button { justify-content: center; align-items: center; background-color: #f8b5b5; - top: 0; - position: sticky; - z-index: 899; + top: 0 !important; + position: sticky !important; + z-index: 899 !important; } @@ -3322,3 +3322,11 @@ text-align: center; .star-rating label:hover ~ label { color: #ffca28; } +nav{ + width: 100%; + position: fixed; + top:0; + margin-bottom: 4rem; + z-index: 999; + +} \ No newline at end of file From dbe6a63dc6f38f1613d4fe57aa5df8cfd1a17d63 Mon Sep 17 00:00:00 2001 From: shivam8112005 Date: Fri, 18 Oct 2024 15:25:25 +0530 Subject: [PATCH 10/14] Created navbar sticky and set correct redirection links of navbar --- style.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/style.css b/style.css index a42167a7..6dd55ea3 100644 --- a/style.css +++ b/style.css @@ -2839,14 +2839,7 @@ for facebook transform:scale(1.1); } */ -/* for dribble -.flex-wrap .fa-dribbble { - transition: color 0.3s ease, transform 0.3s ease; -} -.flex-wrap .fa-dribbble:hover{ - color:#ea4c89; - transform:scale(1.1); -} */ + .flex-wrap a{ margin-right: 10px; transition: all .38s ease-in-out; From 917fddfe66a038268f73c9aecee8343e39dfef98 Mon Sep 17 00:00:00 2001 From: Sumalatha Salapu Date: Fri, 18 Oct 2024 15:57:27 +0530 Subject: [PATCH 11/14] seo improvements and accessibility fixes --- give_feedback.html | 4 ++-- index.html | 28 ++++++++++++++-------------- login.html | 3 ++- signup.html | 5 ++++- 4 files changed, 22 insertions(+), 18 deletions(-) diff --git a/give_feedback.html b/give_feedback.html index 98c7b1c2..54ee5b79 100644 --- a/give_feedback.html +++ b/give_feedback.html @@ -132,7 +132,7 @@

Login

- @@ -140,7 +140,7 @@

Login

- +
- + +
+ +
+
diff --git a/category.html b/category.html index 992b4888..fc4093ee 100644 --- a/category.html +++ b/category.html @@ -550,7 +550,10 @@

Fashion Trends

- + +
+ +
+ +
+ +
+