Skip to content

Commit 09e0e89

Browse files
author
TechStack Global
committed
fix(styles): Add visible accent styling for inline body links in post articles
1 parent 89f7c53 commit 09e0e89

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

style.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,22 @@ h1.post-title,
939939
margin-bottom: 1.5rem;
940940
}
941941

942+
/* Inline body links — visually distinct cross-links and contextual anchors */
943+
.post-body p a,
944+
.post-body li a {
945+
color: var(--accent);
946+
text-decoration: underline;
947+
text-underline-offset: 3px;
948+
font-weight: 500;
949+
transition: opacity 0.2s ease;
950+
}
951+
952+
.post-body p a:hover,
953+
.post-body li a:hover {
954+
opacity: 0.8;
955+
text-decoration: underline;
956+
}
957+
942958
.affiliate-disclaimer,
943959
.affiliate-disclosure {
944960
font-size: 0.85rem;

0 commit comments

Comments
 (0)