MediaWiki:Common.css: Difference between revisions

From HuNu Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 11: Line 11:
}
}


a.external !important {
a.external {
     color: blue;
     color: blue !important;
}
}
a.external:visited !important {
a.external:visited {
     color: blue;
     color: blue !important;
}
}

Revision as of 10:46, 17 January 2024

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

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

/* visited link */
a:visited {
  color: blue;
}

a.external {
    color: blue !important;
}
a.external:visited {
    color: blue !important;
}