Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hover effect on social media icons #124

Merged
Merged
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
32 changes: 25 additions & 7 deletions footercss.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,37 @@
gap: 20px;
margin-top: 1rem;
}

.social-links a {
color: #333;
font-size: 1.5rem;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.social-links a:hover {
color: #E5A186;
}
.social-links a[aria-label="Facebook"]:hover {
color: #3b5998; /* Facebook blue */
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

}

.social-links a[aria-label="Twitter"]:hover {
color: #1da1f2; /* Twitter blue */
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.social-links a[aria-label="Instagram"]:hover {
color: #e4405f; /* Instagram gradient */
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.social-links a[aria-label="YouTube"]:hover {
color: #ff0000; /* YouTube red */
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.social-links a[aria-label="Linkedin"]:hover {
color: #0077b5; /* LinkedIn blue */
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.contact-info li {
display: flex;
align-items: center;
Expand Down
Loading