@charset "utf-8";

/* fancy directory listings */

html {
	margin: 1em 2%;
	color: rgb(10,10,10);
	background: rgb(250,250,250);
	font: 1em/1.4 sans-serif;
	}
body {
	margin: 0;
	}

h1 {
	margin: 0 0 1.25em;
	font-size: 1.5em;
	color: rgb(30,30,30);
	background: transparent;
	}
address {
	font-style: italic;
	color: rgb(100,100,100);
	background: transparent;
	}
table {
	margin: 1em 0;
	border-collapse: separate;
	border-spacing: 2px 1px;
	}

tr:nth-child(even) {
	background: rgb(240,240,240);
	}
tr:nth-child(2), tr:last-child {
	background: transparent; /* hr */
	}

th {
	padding: .1em;
	}

td {
	padding: .15em .6em .15em .15em;
	text-align: left;
	font: .85em 'menlo', 'dejavu sans mono', monospace;
	}
	td:first-child { padding: .15em 0; } /* icons */
	td:first-child + td + td + td,
	td:first-child + td + td + td + td {
		padding: .15em .6em .15em 1.1em;
		}
	td:nth-child(4),
	td:nth-child(5) {
		padding: .15em .6em .15em 1.1em;
		} /* size - description columns */

hr {
	border: none;
	border-top: 1px dotted rgb(100,100,100);
	color: inherit;
	background: transparent;
	}

