Difference between revisions of "MediaWiki:Monobook.css"

From AetoliaWiki
Jump to navigation Jump to search
m
m
Line 10: Line 10:
     color: #ff0000;
     color: #ff0000;
     background-color: #252525;
     background-color: #252525;
    -webkit-transition: color .25s linear;
    transition: color .25s linear;
}
}


Line 19: Line 16:
     color: blue;
     color: blue;
     background-color: transparent;
     background-color: transparent;
     -webkit-transition: color .25s linear .15s;
     -webkit-transition: all .75s;
     transition: color .25s linear .15s;
     transition: all .75s;
}
}

Revision as of 01:41, 30 September 2011

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



/* Link colors and behaviour. */
a:hover {
    color: #ff0000;
    background-color: #252525;
}

<br />
a:link, a:visited {
    color: blue;
    background-color: transparent;
    -webkit-transition: all .75s;
    transition: all .75s;
}