thecuriousteam / Curious-Community-Website

An open-source project initiated by Curious Business Solutions Private Limited, called Curious Community, aims to bring together technology enthusiasts. The platform is designed to foster a space where people can share knowledge, learn, and grow within a supportive community by helping one another.
https://curiousdevelopers.in
5 stars 10 forks source link

Add Hover Effect on "Explore" Buttons #9

Open jenyyy4 opened 1 week ago

jenyyy4 commented 1 week ago

Feature Request: Add Hover Effect on "Explore" Buttons

Summary

Request to add a hover effect to the "Explore" buttons. This feature would enhance the user experience by providing visual feedback when users hover over the button, making the interface more interactive and engaging.

Motivation

Adding a hover effect on the "Explore" button would:

Use Cases

  1. User Interaction: When users hover over the "Explore" button, the button's color or style should change to indicate that it is clickable.
  2. Responsive Design: The hover effect should work across all screen sizes and devices, enhancing both desktop and mobile web experiences.

Proposed Solution

The hover effect can be implemented using CSS. The following enhancements are proposed:

Example CSS for Hover Effect:


/* Default Button Style */
.explore-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.explore-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: #fff;
}

<img width="1440" alt="Screenshot 2024-10-01 at 11 59 16 PM" src="https://github.com/user-attachments/assets/41f8c0a0-1823-41a1-a425-a835fd9e1937">
jenyyy4 commented 1 week ago

@thecuriousteam I would like to work on this issue, please assign it to me.