From e3d1ee6d91a2f9b05d1be1546163d0382829ed02 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 1 Sep 2022 10:58:39 +0000 Subject: style.css: highlight targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On pages like participating.html, it was unclear what was happening when somebody clicked on a link that went to a section near the bottom of the page — the page would jump down, but it wasn't obvious what part in particular they were supposed to be looking at. So let's highlight them to make it really obvious. Signed-off-by: Alyssa Ross --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index e9fd751..f4d4c4e 100644 --- a/style.css +++ b/style.css @@ -1,4 +1,5 @@ /* SPDX-FileCopyrightText: 2019 Alyssa Ross */ +/* SPDX-FileCopyrightText: 2022 Unikie */ /* SPDX-License-Identifier: GPL-3.0-or-later */ /* @@ -20,3 +21,7 @@ h1, h2, h3, h4 { var { font-family: serif; } + +:target { + background: yellow; +} -- cgit 1.4.1