From b0fa7b745bb896f015e184ddad53b3bc3fc76c59 Mon Sep 17 00:00:00 2001 From: Stewart Lord Date: Fri, 15 Jul 2011 06:49:58 +0000 Subject: [PATCH] Added styles for 'standard' tables (e.g. the table of mailing lists). --- styles/theme.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/styles/theme.css b/styles/theme.css index 74fbf042a..e946b48f5 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -601,3 +601,31 @@ div.elephpants img:hover { -moz-opacity: 1; -webkit-opacity: 1; } + + +/* Standard Tables */ + +table.standard { + border-collapse: collapse; + border-style: hidden; +} + +table.standard td, table.standard th { + border: 1px solid #c3add9; +} + +table.standard tr:nth-child(even) td { + background-color: #fcfcfc; +} + +table.standard th { + font-size: 1.1em; + padding: 20px 10px 5px 10px; + color: #777; + font-weight: normal; +} + +table.standard td { + padding: 5px 10px; + vertical-align: middle; +} \ No newline at end of file