Skip to content

Commit

Permalink
Merge branch 'main' into Add/Day-Night-Toggle-button
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshsaini001 authored Jul 12, 2024
2 parents 9b15200 + 5509d7a commit b10ee38
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2145,7 +2145,7 @@ <h4>RAPIDOC Newsletter</h4><br>
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
<i class="bi bi-twitter-x"></i>
</a>
<a href="https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-" target="_blank">
<i class="fab fa-github"></i>
Expand Down
17 changes: 17 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1777,6 +1777,7 @@ footer {
/* Add the underline effect */

.links a::after {

content: '';
position: absolute;
width: 0;
Expand All @@ -1795,6 +1796,22 @@ footer {
.links a:hover {
color: #000;
/* Change text color to black */

content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #55a5ea;
transition: width 0.3s ease;
transition-delay: 0.1s;
}

.links a:hover {
color: #55a5ea;
/* Change text color to black */

}


Expand Down

0 comments on commit b10ee38

Please sign in to comment.