review/static/extra.css @ c4db1e4882dd

web: yet more styling. index is done for now.
author Steve Losh <steve@stevelosh.com>
date Sat, 12 Jun 2010 20:51:20 -0400
parents eaa63ba9a24e
children fcbf8d764330
a.button span, a.button {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.00, rgba(0, 0, 0, 0.15)),
        color-stop(1, rgba(255, 255, 255, 0.0))
    );
    background: -moz-linear-gradient(
        center bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(255, 255, 255, 0.0) 100%
    );
}

#index .content table tr:nth-child(even) td.node {
    background: -webkit-gradient(
        linear,
        left 50%,
        right 50%,
        color-stop(0.0, rgba(250, 250, 250, 1)),
        color-stop(0.35, rgba(250, 250, 250, 0.0))
    );
    background: -moz-linear-gradient(
        center left,
        rgba(250, 250, 250, 1) 0%,
        rgba(250, 250, 250, 0) 35%
    );
}


#index .content table tr:nth-child(even) td.stats {
    background: -webkit-gradient(
        linear,
        right 50%,
        left 50%,
        color-stop(0.0, rgba(250, 250, 250, 1)),
        color-stop(0.9, rgba(250, 250, 250, 0.0))
    );
    background: -moz-linear-gradient(
        center right,
        rgba(250, 250, 250, 1) 0%,
        rgba(250, 250, 250, 0) 35%
    );
}