Difference between revisions of "MediaWiki:Monobook.css"

From AetoliaWiki
Jump to navigation Jump to search
m
m
Line 11: Line 11:
     -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 16: Line 20:
a:link, a:visited {
a:link, a:visited {
     color: blue;
     color: blue;
     -webkit-transition: color .25s linear .1s;
     -webkit-transition: color .25s linear .15s;
     transition: color .25s linear .1s;
     transition: color .25s linear .15s;
 
    text-shadow: none;
    -webkit-transition: shadow .15s linear;
    transition: shadow .15s linear;
}
}

Revision as of 01:14, 30 September 2011

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



/* Link colors and behaviour. */
a:hover {
    color: #ff0000;
    -webkit-transition: color .25s linear;
    transition: color .25s linear;

    text-shadow: 1px 1px 1px #222;
    -webkit-transition: shadow .25s linear;
    transition: shadow .25s linear;
}

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

    text-shadow: none;
    -webkit-transition: shadow .15s linear;
    transition: shadow .15s linear;
}