MediaWiki:Monobook.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| 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; | ||
} | } | ||
| 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; | ||
} | } | ||
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;
}