From f4f493cf6eb9f1475feeebedfba08c1ddf3212ad Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 6 Sep 2010 16:23:52 -0400 Subject: [PATCH] More styling: * Alternate row colors * Adjust font size --- web_frontend/screen.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/web_frontend/screen.css b/web_frontend/screen.css index 6c921b3..f1b7517 100644 --- a/web_frontend/screen.css +++ b/web_frontend/screen.css @@ -11,14 +11,28 @@ body { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; padding: 1.5em; font-size: 1em; + background-color: rgb(245, 245, 245); } h1 { - font-size: 3em; + font-size: 2em; } #ls { - margin-left: 1.5em; + list-style: none; +} + +#ls li { + padding: .3em; + height: 1.5em; + line-height: 1.5em; +} + +#ls li:nth-child(odd) { + background-color: rgb(223, 235, 246); +} +#ls li:nth-child(even) { + background-color: rgb(255, 255, 255); } #error { -- 2.22.5