From 8a15519b0e2a7dd53ab7e346c7de0d621c6af23b Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Sat, 18 Jan 2025 22:29:10 -0600 Subject: [PATCH] Hide honeyhot link from older browsers --- www/css/core.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/css/core.css b/www/css/core.css index 6cb075e1..03af0c37 100644 --- a/www/css/core.css +++ b/www/css/core.css @@ -608,6 +608,13 @@ main.front-page > section > section > h3{ hyphens: none; } +header a[href="/honeypot"]{ + /* Hide from clients who don't support the `@hidden` attribute, like older Kindle browsers. */ + display: none; + position: absolute; + left: -9999rem; +} + main.center h1{ margin-top: 4rem; border: none;