Skip to content

Commit bb3a4ae

Browse files
Fix: Improved footer removed underline on hover for copyright link (#1378)
1 parent f0d19b4 commit bb3a4ae

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

index.html

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -244,17 +244,10 @@ <h5>We focus on quality content for the right people at the right time⏱. What
244244
</div>
245245

246246
<div class="footer-bottom">
247-
<div class="footer-container">
248-
249-
<p>
250-
<a href="https://github.com/recodehive/awesome-github-profiles" target="_blank" rel="noopener noreferrer">
251-
<p class="footer-copyright">
252-
© <span id="dynamic-year">2024</span> Recode-Hive. Made with 🖤 by the community. All rights reserved.
253-
</p>
254-
</a>
255-
</p>
256-
</div>
257-
</div>
247+
<p>© <span id="dynamic-year">2025</span> Recode-Hive. Made with 🖤 by the
248+
<a href="https://github.com/recodehive/awesome-github-profiles" target="_blank" rel="noopener noreferrer" class="no-underline">community</a>. All rights reserved.
249+
</p>
250+
</div>
258251
</footer>
259252

260253
<style>

styles/styles.css

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -754,23 +754,28 @@ body.dark-mode .navbar-link:hover {
754754
}
755755

756756
.footer-bottom {
757-
border-top: 1px solid #ccc;
757+
border-top: 1px solid #75727298;
758758
padding: 10px 0;
759759
text-align: center;
760760
}
761761

762-
.footer-copyright {
763-
color: #000;
764-
font-size: 0.875rem;
762+
763+
.footer-bottom p {
765764
margin: 0;
765+
padding: 10px 0;
766+
max-width: 100%;
767+
font-weight: 400;
766768
}
767-
.footer-copyright a{
768-
color: #000;
769+
770+
.footer-bottom a.no-underline {
771+
text-decoration: none;
772+
word-break: break-word;
773+
color: #1992d3;
769774
}
770775

771-
.footer-copyright a:hover {
772-
color: #007bff;
773-
text-decoration: underline;
776+
.footer-bottom a.no-underline:hover {
777+
text-decoration: none;
778+
color: #026499;
774779
}
775780

776781

0 commit comments

Comments
 (0)