From 7c4f2302c03a77301e990dd7a961c8765071773e Mon Sep 17 00:00:00 2001 From: "Zack M. Davis" Date: Sat, 3 Feb 2024 18:20:18 -0800 Subject: [PATCH] remove underlines for TOC, blog/post title, page links --- theme/static/css/main.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/theme/static/css/main.css b/theme/static/css/main.css index db4740d..c8fdbf8 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -417,11 +417,23 @@ p.flower-break { text-indent: 0; right: calc(100% + 0.5em); text-align: right; - color: #bbb; + color: #bbb; } + +/* remove link underlines for navigational links */ .toc a { - border: none; + text-decoration: none; +} +.title { + text-decoration: none; +} +.pages a { + text-decoration: none; } +.content h1 a { + text-decoration: none; +} + /* And thanks again to Said Achmiz for making superscripts not mess up line spacing. */ sup, sub { -- 2.17.1