implemented a functional template system, and a simple WORKING template, and other smaller things and fixes...

git-svn-id: file:///Users/jimeh/Desktop/dlist/trunk@10 a5845835-ea0f-0410-a762-dd0bfe9bfde8
This commit is contained in:
jim
2006-03-31 22:53:26 +00:00
parent f3a2a9e5b9
commit 05fc88b1d9
11 changed files with 178 additions and 89 deletions

View File

@@ -0,0 +1,74 @@
BODY {
background-color: #FFF;
color: #000;
font: 11px "Lucida Grande", Tahoma, Verdana, sans-serif;
margin: 0xp;
padding: 18px;
}
#header {
font: 20px "Myriad Pro", "Trebuchet MS", Verdana, sans-serif;
padding: 15px 15px 20px 35px;
}
#list {
background-color: #777;
width: 100%;
}
/* List Headers */
#list TH {
background-color: #CCC;
padding: 2px 5px 2px 5px;
}
#list TH.name {
text-align: left;
}
#list TH.icon {
padding: 2px;
height: 16px;
width: 16px;
}
#list TH.size {
width: 75px;
}
#list TH.mtime {
width: 175px;
}
#list TH.perms {
width: 100px;
}
#list TH.owner {
width: 85px;
}
/* List Cells */
#list TD {
background-color: #FFF;
padding: 2px 5px 2px 5px;
}
#list TD.icon {
padding: 2px;
}
#list TD.size {
text-align: right;
}
#list TD.mtime {
text-align: right;
}
#list TD.perms {
}
#list TD.owner {
}
#list TD.name A {
width: 100%;
display: block;
}
#stats {
text-align: center;
padding: 10px;
}