Difference between revisions of "MediaWiki:Monobook.css"
Jump to navigation
Jump to search
m |
m |
||
Line 7: | Line 7: | ||
/* Link colors and behaviour. */ | /* Link colors and behaviour. */ | ||
a:hover { | a:hover { | ||
color: #ff0000; | color: #ff0000; | ||
-webkit-transition: color .25s linear; | -webkit-transition: color .25s linear; | ||
transition: color .25s linear; | transition: color .25s linear; | ||
} | |||
<br /> | |||
a:link, a:visited { | |||
color: blue; | |||
-webkit-transition: color .25s linear .1s; | |||
transition: color .25s linear .1s; | |||
} | } |
Revision as of 01:09, 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; } <br /> a:link, a:visited { color: blue; -webkit-transition: color .25s linear .1s; transition: color .25s linear .1s; }