summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2008-05-26 11:08:51 -0700
committerArun Persaud <arun@nubati.net>2008-05-26 11:08:51 -0700
commite8b56a58ef9b5dabf77273f540d1ec678e604615 (patch)
treec6ef2a571b167d838b095f4e42c21a1b2b4b8d9b /css
parent1132ca2ccda76df5ed2b1bea6b64015d4dc86880 (diff)
downloade-DoKo-e8b56a58ef9b5dabf77273f540d1ec678e604615.tar.gz
e-DoKo-e8b56a58ef9b5dabf77273f540d1ec678e604615.tar.bz2
e-DoKo-e8b56a58ef9b5dabf77273f540d1ec678e604615.zip
LAYOUT: added a unified table layout for statistics, etc
a table that can be styled via CSS is created from an array. Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'css')
-rw-r--r--css/standard004.css (renamed from css/standard003.css)19
1 files changed, 18 insertions, 1 deletions
diff --git a/css/standard003.css b/css/standard004.css
index 7ad7cd1..e3692af 100644
--- a/css/standard003.css
+++ b/css/standard004.css
@@ -458,4 +458,21 @@ table.score {
.bigger {
font-size:larger;
-} \ No newline at end of file
+}
+
+table { margin: 0.5em 1em;
+ border: solid 0.2em #aeaeae;
+ -moz-border-radius: 0.5em ;
+}
+tr.odd { background-color:#aeaeae; }
+tr.even { background-color:#eaeaea; }
+td,th {
+ margin-left: 0.2em;
+ margin-right: 0.2em;
+ padding-left: 0.2em;
+ padding-right: 0.2em;
+ border-right: solid 0.1em black;
+}
+tr td:last-child, tr th:last-child { border-right: solid 0 black; }
+
+th { border-bottom: solid 0.2em black } \ No newline at end of file