Difference between revisions of "MediaWiki:Monobook.css"

From AetoliaWiki
Jump to navigation Jump to search
m
m
Line 9: Line 9:
a:hover {
a:hover {
     color: #ff0000;
     color: #ff0000;
    background-color: #252525;
     -webkit-transition: color .25s linear;
     -webkit-transition: color .25s linear;
     transition: color .25s linear;
     transition: color .25s linear;
    text-shadow: 1px 1px 1px #222;
    -webkit-transition: shadow .25s linear;
    transition: shadow .25s linear;
}
}


Line 20: Line 18:
a:link, a:visited {
a:link, a:visited {
     color: blue;
     color: blue;
    background-color: transparent;
     -webkit-transition: color .25s linear .15s;
     -webkit-transition: color .25s linear .15s;
     transition: color .25s linear .15s;
     transition: color .25s linear .15s;
    text-shadow: none;
    -webkit-transition: shadow .15s linear;
    transition: shadow .15s linear;
}
}

Revision as of 01:15, 30 September 2011

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



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

    -webkit-transition: color .25s linear;
    transition: color .25s linear;
}

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