summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-01-11 18:01:19 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-01-11 18:04:29 +0100
commit4cd01bbec773bfd0e2ba21b781c020c0bfe76083 (patch)
tree78ce04c5d5b97975a733f188b03cba31bea287f3 /doc
parent4eabdc19aa6abe9207007f6e400ba90beb0838ce (diff)
Add table css for html template
Diffstat (limited to 'doc')
-rw-r--r--doc/templates/css/table.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/templates/css/table.css b/doc/templates/css/table.css
new file mode 100644
index 00000000..492744b3
--- /dev/null
+++ b/doc/templates/css/table.css
@@ -0,0 +1,27 @@
+table {
+ margin-left: auto;
+ margin-right: auto;
+ font-family: verdana,arial,sans-serif;
+ font-size:11px;
+ color:#333333;
+ border-width: 1px;
+ border-color: #666666;
+ border-collapse: collapse;
+}
+
+table th {
+ border-width: 1px;
+ padding: 8px;
+ border-style: solid;
+ border-color: #666666;
+ background-color: #dedede;
+}
+
+table td {
+ border-width: 1px;
+ padding: 8px;
+ border-style: solid;
+ border-color: #666666;
+ background-color: #ffffff;
+}
+