Colorize tags (span children) in blue

This commit is contained in:
2023-11-27 18:07:48 -06:00
parent edb3770635
commit 480a723d20

View File

@@ -125,8 +125,12 @@ hr {
color: white;
}
article a {
color: #90bcff;
// Link colors within articles generally, or direct children of span
article,
span > {
a {
color: #90bcff;
}
}
hr {