From 1035273d4887c57b492b74c87f4579ac124a40ee Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Tue, 19 Jan 2016 05:13:26 -0500 Subject: [PATCH] Make checkboxes easier to identify. --- lib/entry.php | 4 ++-- style.css | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/entry.php b/lib/entry.php index 1acf305..0dd4207 100644 --- a/lib/entry.php +++ b/lib/entry.php @@ -224,9 +224,9 @@ if ($e == 'c') continue; $name = "endorsement_$e"; $description = ucfirst(endorsement_description($e)); - echo " $description\n"; + echo "> $description\n"; } echo "

\n"; end_form(); diff --git a/style.css b/style.css index 72d7fac..22a3052 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,7 @@ #laps { overflow-x: auto; } #laps table { background-color: rgba(20, 50, 100, 0.2); } #laps th, #laps td { padding-left: 1em; } +#laps label:nth-child(even) { padding-top: 0.5em; padding-bottom: 0.5em; background-color: rgba(128, 128, 128, 0.1); } th { text-align: left; } th:nth-child(n+2),td:nth-child(n+2) { text-align: center; } #stats td:nth-child(n+1) { text-align: left; } -- 2.7.4