-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11c52f4
commit 4f77402
Showing
78 changed files
with
77,323 additions
and
0 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 @@ | ||
/* Style the container */ | ||
.social-media-links { | ||
display: flex; /* Flexbox for alignment */ | ||
justify-content: center; /* Centers the links horizontally */ | ||
align-items: center; /* Centers the links vertically */ | ||
gap: 10px; /* Adds space between the icons */ | ||
height: 40px; /* Full viewport height */ | ||
text-align: center; /* Centers the text */ | ||
margin-top: 10px; | ||
} | ||
|
||
/* Style each social icon */ | ||
.social-icon { | ||
font-size: 30px; /* Adjust the icon size */ | ||
color: #333; /* Set the color of the icons */ | ||
text-decoration: none; /* Remove the underline from the links */ | ||
transition: color 0.3s ease; /* Smooth color transition on hover */ | ||
} | ||
|
||
/* Hover effect for the icons */ | ||
.social-icon:hover { | ||
color: #007bff; /* Change icon color on hover (you can customize) */ | ||
} |
Oops, something went wrong.