fixed: home link strong css, added more markdown examples

This commit is contained in:
Wayne Sutton
2025-12-21 18:47:17 -08:00
parent f598c3e903
commit 5a7824b2b8
6 changed files with 484 additions and 14 deletions

View File

@@ -402,6 +402,20 @@ body {
line-height: 1.7;
}
/* Links inside home intro and bio sections */
.home-intro a,
.home-bio a {
color: var(--link-color);
text-decoration: underline;
text-underline-offset: 3px;
transition: color 0.2s ease;
}
.home-intro a:hover,
.home-bio a:hover {
color: var(--link-hover);
}
.home-featured {
margin: 24px 0;
}