/* Directory listing CSS for lighttpd
 * This uses CSS selectors to add icons (this won't work on Internet Explorer)
 *
 * To use, put this CSS file somewhere lighttpd will serve it and set
 * dir-listing.external-css to the URL.
 * server.dir-listing          = "enable"
 * dir-listing.external-css = "/dir.css"
 * 
 * The icon files are the ones from Apache, you can use mod_alias to make them
 * available to all vhosts:
 * alias.url = ( "/icons/" => "/var/www/icons/")
 */

body {
	background-color: #F5F5F5;
}
a, a:active {
	text-decoration: none;
	color: blue;
	padding-left: 22px; 
	margin-left:1px;
   background: url(/icons/small/generic.gif) left center no-repeat;
}
a:visited {
	color: #48468F;
}
a:hover, a:focus {
	text-decoration: underline;
	color: red;
}
a[href$="/"] {  
    background: url(/icons/small/dir.gif) left center no-repeat; 
}
a[href$="gz"], a[href$="zip"], a[href$="bz2"] {  
    background: url(/icons/small/compressed.gif) left center no-repeat; 
}
a[href$="html"], a[href$="css"], a[href$="js"], a[href$="txt"] {
    background: url(/icons/small/text.gif) left center no-repeat; 
}
a[href$="gif"], a[href$="png"], a[href$="jpeg"], a[href$="jpg"] {
    background: url(/icons/small/image2.gif) left center no-repeat; 
}

h2 {
	margin-bottom: 12px;
}
table {
	margin-left: 12px;
}
th, td {
	font-family: "Courier New", Courier, monospace;
	font-size: 10pt;
	text-align: left;
}
th {
	font-weight: bold;
	padding-right: 14px;
	padding-bottom: 3px;
}
td {
	padding-right: 14px;
}
td.s, th.s {
	text-align: right;
}
div.list {
	background-color: white;
	border-top: 1px solid #646464;
	border-bottom: 1px solid #646464;
	padding-top: 10px;
	padding-bottom: 14px;
}
div.foot {
	font-family: "Courier New", Courier, monospace;
	font-size: 10pt;
	color: #787878;
	padding-top: 4px;
}
