Skip to content

Commit

Permalink
Merge pull request #89 from kamalesh-og/hoverall
Browse files Browse the repository at this point in the history
Fixed Hover effects for the site Issue
  • Loading branch information
sunny0625 authored May 25, 2024
2 parents de3d383 + 830205d commit 9fcc250
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -978,3 +978,20 @@ padding-left:2px;
}


.about_us .box:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about_us .box {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.box:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.items:hover {
transform: translateY(-5px) scale(1.05);
}

0 comments on commit 9fcc250

Please sign in to comment.