Difference between revisions of "MediaWiki:Monobook.css"

From AetoliaWiki
Jump to navigation Jump to search
m
m
Line 8: Line 8:
/* Link colors and behaviour. */
/* Link colors and behaviour. */
a:link, a:visited {
a:link, a:visited {
     color: blue;
     color: rgb(40, 120, 255);
    background: transparent;


     transition: all 2s;
     transition: all 2s;
Line 16: Line 15:


a:hover {
a:hover {
     color: #ff0000;
     color: rgb(60, 180, 255);
    background: #252525;
}
}

Revision as of 01:43, 30 September 2011

/* Override the site's font. */
body {
    font-family: Verdana;
}



/* Link colors and behaviour. */
a:link, a:visited {
    color: rgb(40, 120, 255);

    transition: all 2s;
    -webkit-transition: all 2s;
}

a:hover {
    color: rgb(60, 180, 255);
}