diff options
-rwxr-xr-x | local.css | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -5,13 +5,17 @@ /* Tables */ table { + color:#000000; padding:0px; - border: 1px; } th { - text-align:left; + color:#000000; + background:#E6E6E6; + font-weight:bold; + padding:5px 10px; + text-align:center; vertical-align:top; } @@ -20,9 +24,16 @@ tr font-weight:normal; } +tr:nth-child(odd) td +{ +background:#E6E6E6; +} + td { - padding:0px; + background:#ffffff; + padding:2px 10px; text-align:left; vertical-align:top; } + |