Skip to content

Commit

Permalink
Merge pull request #114 from rajdeepchakraborty-rc/Twitterlogo
Browse files Browse the repository at this point in the history
Twitter logo Update
  • Loading branch information
AnitSarkar123 authored Oct 7, 2024
2 parents b0e155d + 204c7f0 commit a87b301
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
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

0 comments on commit a87b301

Please sign in to comment.