Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Use a name like `fix/navbar`, `feat/responsive-footer`, `docs/update-readme`, et

---

### 4. 💻 Make Your Changes
### 4. 💻 Make Your Changes

Now you can:

Expand Down
6 changes: 4 additions & 2 deletions public/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@
background-color: var(--secondary-color);
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
transition: all 0.3s ease;
}

.btn:hover {
background-color: var(--secondary-color-dark);
background-color: #468849; /* darker green */
transform: scale(1.05); /* slightly bigger */
box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* shadow */
}


Expand Down