review/web_media/style.css @ f8adc5c231f3 webui

Add a footer.
author Steve Losh <steve@stevelosh.com>
date Wed, 14 Oct 2009 19:39:07 -0400
parents 43d109fde61e
children 5c62a1333e54
/* 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 :last-child {
    text-align: right;
}
table tr :first-child {
    text-align: left !important;
}

/* Diffs. */
div.diff {
    overflow: auto;
}
div.diff table tr {
    white-space: pre;
}
table tr.add {
    background: #DBF3D1;
}
table tr.rem {
    background: #FBDBDA;
}