Add new template-assets to the project.

This commit is contained in:
Karsten Heiken
2011-07-22 16:09:56 +02:00
parent a6b0eaab5e
commit fffbe4a153
10 changed files with 381 additions and 0 deletions

34
assets/css/table.css Normal file
View File

@@ -0,0 +1,34 @@
/* Table Style */
table {
width: 99%;
height: 100%;
margin: 0 0 15px;
text-align: left;
border-collapse: collapse;
}
table thead,
table tfoot {
background: url(../images/background-table.gif) repeat-x;
}
table th {
font-weight: bold;
padding: 5px 8px;
color: #444;
}
table td {
padding: 8px;
color: #444;
border-bottom: 1px solid #d2d2d2;
}
table td span.active { color: #55a34a;}
table td span.pending { color: #c5a059;}
table td span.closed { color: #a02b2b;}
table .odd {
background: #f6f6f6;
}