-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from thevijayshankersharma/hovering
Replace Twitter Icon with X Icon and Add Hover Effect
- Loading branch information
Showing
3 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.footer nav a { | ||
transition: transform 0.3s ease, color 0.3s ease; | ||
} | ||
|
||
.footer nav a:hover { | ||
transform: scale(1.2); | ||
} | ||
|
||
.footer nav .icon-x { | ||
fill: #ffffff; /* White for X (Twitter) */ | ||
} | ||
|
||
.footer nav .icon-x:hover svg path { | ||
fill: black; /* White for X (Twitter) */ | ||
} | ||
|
||
.footer nav .icon-youtube:hover svg path { | ||
fill: #FF0000; /* Red for YouTube */ | ||
} | ||
|
||
.footer nav .icon-facebook:hover svg path { | ||
fill: #4267B2; /* Blue for Facebook */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters