From 963a00b37af20b81610ec1f31cab11d4a2281515 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Tue, 30 Aug 2022 14:35:44 -0500 Subject: [PATCH] Improve print formatting Underline links, use grayscale, outline lists, and turn off as much text shadow as we can. --- nullboard.html | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/nullboard.html b/nullboard.html index b8c2af2..a0aab2b 100644 --- a/nullboard.html +++ b/nullboard.html @@ -1307,11 +1307,23 @@ .board .note { box-shadow: none; - outline: 1px solid #ccc; + text-shadow: none !important; + outline: 1px solid #888; + } + .list { + outline: 1px solid #555; + + } + .board .note .raw { + outline: none; + text-shadow: none; } - .board .note.raw { - outline: none; + .board .head .text a, + .board .note .text a { + color: #333; + text-shadow: none; + text-decoration: underline; } }