review/web_media/style.css @ 78cd41b87ea2 webui

More small style changes.
author Steve Losh <steve@stevelosh.com>
date Tue, 13 Oct 2009 21:12:15 -0400
parents 87c14b34e264
children efc3c9173ce1
/* 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;
}
div.diff table tr {
    white-space: pre;
}
table tr.add {
    background: #beb;
}
table tr.rem {
    background: #fcc;
}