/* Stylish CSS for lighttpd's dirlisting */
/* Aaron Griffin <aaronmgriffin@gmail.com> */

body { 
    background-color: #2b2b2b;
    color: #ffffff;
    margin: 0; 
    padding: 0;
    min-height: 100%;
    font-size: 10pt;
    line-height: 1.3em;
    font-family: Lucida Sans, Verdana, Arial, Helvetica, sans-serif;
}

h2 {
    padding: 1em;
}

a {
    color: #3399ff;
}

a:hover {
    color: #3399ff;
}

table {
	margin-left: 2em;
}

/* th and td classes:
 * n : file name
 * m : modified time
 * s : size
 * t : type
 */

th, td {
	text-align: left;
}

td.s, th.s {
	text-align: right;
}

th {
    font-size: 1.2em;
	font-weight: bold;
	padding-right: 5em;
	padding-bottom: 0.2em;
	border-bottom: 1px solid white;
}

td {
	padding-right: 5em;
}

td.m, td.s {
	font-family: monospace;
}

div.list {
	background-color: #444444;
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding-top: 3em;
	padding-bottom: 5em;
}

div.foot {
	font-size: 0.8em;
	color: #666666;
	padding-top: 0.5em;
    padding-left: 1em;
	padding-bottom: 0.5em;
}
