review/web_media/style.css @ 87c14b34e264 webui

Lots of small style changes.
author Steve Losh <steve@stevelosh.com>
date Tue, 13 Oct 2009 21:06:14 -0400
parents 590fb7bae0a8
children 78cd41b87ea2
/* Basic layout and typography. */
body {
    background: #666;
}
div#main-wrap {
    background: #f5f5f5;
    width: 65em;
    margin: 3em auto;
    padding: 3em;
    border: 1px solid #333;
}

/* Tables. */
table {
    width: 100%;
    border: 1px solid #666;
    background: #f2f2f2;
}
table td {
    border: none;
}
table tr.odd {
    background: #eee;
}

/* Diffs. */
div.diff {
    overflow: auto;
}
table tr {
    white-space: pre;
}
table tr.add {
    background: #beb;
}
table tr.remove {
    background: #fcc;
}