Jump to navigation Jump to search

Difference between revisions of "MediaWiki:Common.css"

Line 18: Line 18:
/* selected link */
/* selected link */
a:active {
a:active {
   color: yellow;
   color: #cc0000;
}
}

Revision as of 18:12, 14 December 2019

/* CSS placed here will be applied to all skins */

 /* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: #d9832e;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: #cc0000;
}