review/web_media/style.css @ 590fb7bae0a8 webui

Add a simple review page in the web UI.  Just show diffs for now.
author Steve Losh <steve@stevelosh.com>
date Tue, 13 Oct 2009 20:55:01 -0400
parents 7b4e78679c9d
children 87c14b34e264
/* Basic layout and typography. */
div#main-wrap {
    width: 50em;
    margin: 3em auto;
}

/* Tables. */
table {
    width: 100%;
}
table tr.odd {
    background: #eee;
}

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