/* site.css */

body {
    color: #aaa;
    background: #000;
    font-family: monospace;
}

a {
    text-decoration: none;
}

a:link {
    color: #55f;
}

a:visited {
    color: #f5f;
}

a:hover {
    color: #fff;
}

a:link:hover {
    background: #00a;
}

a:visited:hover {
    background: #a0a;
}

a:active:hover, a:visited:active:hover {
    background: #a00;
}

h1, b {
    color: #fff;
}

li {
    list-style-position: inside;
}

.entry {
    padding-top: 1ex;
    padding-bottom: 1ex;
}

.entry + .entry {
    border-top: 1px dotted #555;
}

.entry h2 {
    margin: 0;
    color: #ff5;
}

.entry .date {
    margin: 0;
    font-size: x-small;
    color: #a50;
}

.dir {
    color: #555;
}

#navigation {
    border-bottom: 1px dotted #555;
}

#pages {
    border-top: 1px dotted #555;
}

#listing {
    background: #000;
    float: left;
    clear: both;
    border: 1px dotted #555;
    border-left: none;
    padding: 1ex 1em 1ex 0;
    margin: 1ex 1em 1ex 0;
}

#footer {
    clear: both;
    font-size: x-small;
    border-top: 1px dotted #555;
    display: block;
}

.left {
    float: left;
}

.right {
    float: right;
}

/* vim: set ts=4 sts=4 sw=4 tw=80 et ft=css: */
