Skip to content

Commit

Permalink
Merge pull request #1275 from zalabhavy/social
Browse files Browse the repository at this point in the history
Hover effects added on Social icons
  • Loading branch information
arghadipmanna101 authored Jul 4, 2024
2 parents e28f9e3 + d2f92c3 commit 1987c8a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions css/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,15 @@ footer .social li{
margin: 5px;
opacity: 0.75;
}
footer .social a:hover img{
transform: scale(1.5);
transition: .3s;
footer .social a img
{
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;
border-radius: 50%;
}
footer .social a:hover img {
transform: scale(1.5) translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
filter: brightness(1.2) drop-shadow(2px 4px 6px black);
}
footer .footerEnd{
border-top: 1px solid #454d5e;
Expand Down

0 comments on commit 1987c8a

Please sign in to comment.