From 480a723d20ee5e596530b96157f8636ccc1054b7 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 27 Nov 2023 18:07:48 -0600 Subject: [PATCH] Colorize tags (span children) in blue --- src/styles/global.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/styles/global.scss b/src/styles/global.scss index 667b6c1..37d52b9 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -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 {