Skip to content

Commit

Permalink
Merge pull request #1056 from ANKeshri/feat/social-icon-hover-in-host…
Browse files Browse the repository at this point in the history
…el-management

feat: add hover on social icon of hostel management
  • Loading branch information
apu52 authored Jul 24, 2024
2 parents c753882 + 3ee4180 commit 3a503f8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Projects/HOSTEL_MANAGEMENT/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,19 @@ <h2>SUPPORT STAFF</h2>

<div class="icon_container">
<div class="icon">
<a href="https://www.facebook.com/">
<i class="fa-brands fa-facebook"></i>
</a>
</div>
<div class="icon">
<a href="https://www.instagram.com/">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
<div class="icon">
<a href="https://www.linkedin.com">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
<div class="icon">
<i class="fa-brands fa-twitter"></i>
Expand Down
17 changes: 17 additions & 0 deletions Projects/HOSTEL_MANAGEMENT/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -389,4 +389,21 @@ footer h2{



}
/* social icon hover */
.icon_container .icon .fa-facebook:hover{
color:#1877F2;
}
.icon_container .icon .fa-instagram:hover{
color: rgb(219 39 119);
}
.icon_container .icon .fa-linkedin:hover{
color:#0a66c2;
}
.icon_container .icon .fa-twitter:hover{
color:#1DA1F2;
}
.icon a{
text-decoration: none;
color: white;
}
2 changes: 1 addition & 1 deletion Projects/Tindog_website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ h1 {
.display-4{
color: black;
font-weight: 400 !important;

}
/* Contact Us Section */
.contact-section {
padding: 50px 0;
Expand Down

0 comments on commit 3a503f8

Please sign in to comment.