File:  [Local Repository] / comics / comics.css
Revision 1.1: download - view: text, annotated - select for diffs
Tue Mar 12 13:09:34 2013 UTC (11 years, 7 months ago) by nick
Branches: MAIN
CVS tags: HEAD
Added some CSS to it for a gradient background and fiddled with fonts and colors.

html {
        margin: 0px;
        padding: 0px;
}

body { 
        /* Safari 4-5, Chrome 1-9 */
        /* Can't specify a percentage size? Laaaaaame. */
        background: -webkit-gradient(radial, center center, 0, center center, 460, from(#4351B0), to(#1576D6));

        /* Safari 5.1+, Chrome 10+ */
        background: -webkit-radial-gradient(circle, #4351B0, #a2a2a2);

        /* Firefox 3.6+ */
        background: -moz-radial-gradient(circle, #4351B0, #a2a2a2);

        /* IE 10 */
        background: -ms-radial-gradient(circle, #4351B0, #a2a2a2);

        /* Opera cannot do radial gradients yet */

	font-family: Tahoma, Geneva, sans-serif;
}

a:link {color:#082e58;  text-decoration: none; font-weight:normal;}
a:visited {color:#082e58; font-weight:normal; text-decoration:none;}
a:hover {color:#0004c8;}


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>