MediaWiki:Monobook.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 7: | Line 7: | ||
/* Link colors and behaviour. */ | /* Link colors and behaviour. */ | ||
a:link, a:visited { | |||
color: blue; | |||
background: transparent; | |||
transition: all 2s; | |||
-webkit-transition: all 2s; | |||
} | |||
a:hover { | a:hover { | ||
color: #ff0000; | color: #ff0000; | ||
background | background: #252525; | ||
} | } | ||
Revision as of 01:42, 30 September 2011
/* Override the site's font. */
body {
font-family: Verdana;
}
/* Link colors and behaviour. */
a:link, a:visited {
color: blue;
background: transparent;
transition: all 2s;
-webkit-transition: all 2s;
}
a:hover {
color: #ff0000;
background: #252525;
}