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
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Add your Github username below if you are contributing to this project.

1. zetabug
1. jjakk
1. jjakk
2. JamesVillanueva-Dev
12 changes: 10 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ section {
border: none;
color: #fff;
background-color: transparent;

/* Add smooth transition for hover effect */
transition: transform 0.2s ease;
}

.options button label{
Expand All @@ -148,14 +151,19 @@ section {
display: none;
}

.options button:hover img {
transform: scale(1.2); /* grow image 20% on hover */
}

.options button:hover > label{
margin-top: 25px;
display: inline-block;
opacity: 1;
}

.options button img{
height: 50px;
.options button img {
height: 50px; /* keep initial size */
transition: transform 0.2s ease; /* smooth scaling */
}

.options .paper img{
Expand Down