Skip to content

Commit

Permalink
Merge pull request #817 from sanchitc05/patch-3
Browse files Browse the repository at this point in the history
Add scale-up hover effect for images in the about section
  • Loading branch information
Tejashri-Taral authored Nov 10, 2024
2 parents 6b1cbf9 + e7ba144 commit 10d792e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@
padding: 0 40px; /* Increased padding for a more spacious layout */
}

.about-images img {
transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.about-images:hover img {
transform: scale(1.1); /* Scale the image up on hover */
}

/* Footer Section */
/* .footer {
background-color: #bec1c55c;
Expand Down

0 comments on commit 10d792e

Please sign in to comment.