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

Twitter logo Update #114

Merged
merged 9 commits into from
Oct 7, 2024
Binary file added images/X[Twitter Logo].png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,11 @@ <h2 class="logo-text">Collect your GamingTools</h2>
<span><i class="fas fa-envelope"></i> &nbsp; [email protected]</span>
</div>
<div class="socials">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#" ><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<!-- Added classes to the <a> tags to add the Hover animations -->
<a class="facebook" href="#"><i class="fab fa-facebook"></i></a>
<a class="instagram" href="#"><i class="fab fa-instagram"></i></a>
<a class="twitter" href="#" ><i class="fa-brands fa-x-twitter"></i></a>
<a class="youtube" href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-section links">
Expand Down
26 changes: 23 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,32 @@ button:hover img {
border-radius: 50%;
color: #d3d3d3;
transition: all .3s;
transition: transform 0.3s ease, background 0.3s ease; /* Added transform property */
}

.socials a:hover {
background: #4CAF50;
color: white;
.socials a:hover{
transform: scale(1.2); /* Zoom effect on hover */
}
/* Hover zoom effect for facebook icon */
.socials .facebook:hover {
background: blue;
color: white;
}
/* Hover zoom effect for instagram icon */
.socials .instagram:hover {
background: orangered;
color: white;
}
/* Hover zoom effect for twitter[X] icon */
.socials .twitter:hover {
background: black;
color: white;
}
/* Hover zoom effect for youtube icon */
.socials .youtube:hover {
background: red;
color: white;
}

.links ul {
list-style-type: none;
Expand Down