review/web_media/style.css @ 5c62a1333e54 webui

Add comments (with avatars) to diffs (not skipped lines yet).
author Steve Losh <steve@stevelosh.com>
date Wed, 14 Oct 2009 20:10:37 -0400
parents f8adc5c231f3
children 93baa16777e9
/* Basic layout and typography. */
body {
    background: #f5f5f5;
}
div#main-wrap {
    width: 65em;
    margin: 0em auto;
    padding: 3em;
}
div#head-wrap {
    text-align: center;
    padding: 1.5em 0em .5em;
    background-color: #105E0F;
    color: #fff;
    border-bottom: 1px solid #114700;
}
div#footer {
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Links. */
a {
    text-decoration: none;
    font-weight: bold;
    color: #297E00;
}
a:hover {
    color: #EA0076;
}

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

/* Diffs. */
div.diff {
    overflow: auto;
}
div.diff table tr {
    white-space: pre;
}
table tr.add {
    background: #DBF3D1;
}
table tr.rem {
    background: #FBDBDA;
}
table tr td.comment {
    white-space: normal;
    background: #F4FF68;
    border-top: 1px dashed #666;
    border-bottom: 1px dashed #666;
    font-family: Consolas, Monaco, "Courier New", Courier, monospace;
}
table tr td.comment div.author {
    
}
table tr td.comment div.message {
    margin-top: 1.5em;
    white-space: pre;
}
table tr td.comment div.avatar {
    border: 1px solid black;
    float: right;
}