review/web_media/style.css @ efc3c9173ce1 webui

Add template inheritance.  Not liking Templetor so far...
author Steve Losh <steve@stevelosh.com>
date Wed, 14 Oct 2009 19:06:00 -0400
parents 78cd41b87ea2
children 43d109fde61e
/* 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;
}

/* 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;
}

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