Add table css for html template

This commit is contained in:
Matthias Beyer 2016-01-11 18:01:19 +01:00
parent 4eabdc19aa
commit 4cd01bbec7
1 changed files with 27 additions and 0 deletions

27
doc/templates/css/table.css vendored Normal file
View File

@ -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;
}