From: CMDR furrycat Date: Tue, 19 Jan 2016 10:13:26 +0000 (-0500) Subject: Make checkboxes easier to identify. X-Git-Url: http://git.furryclan.net/?a=commitdiff_plain;h=1035273d4887c57b492b74c87f4579ac124a40ee;p=furrycat%2Frace-o-matic.git Make checkboxes easier to identify. --- 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; }