MediaWiki:Monobook.css: Difference between revisions

From Chemical Culture
Jump to navigationJump to search
Content added Content deleted
No edit summary
(Undo revision 1278 by Enkatanso (talk))
Tag: Undo
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
body {
body {
background-image: url("https://static.miraheze.org/drycleaninglobbywiki/8/84/Nalpakra.png");
background-image: url("https://static.miraheze.org/drycleaninglobbywiki/8/84/Nalpakra.png");
}
/* unvisited link */
a:link {
color: DarkSlateBlue;
}
}
/* visited link */
/* visited link */

Latest revision as of 13:05, 2 May 2024

@font-face {
  font-family: 'centurygothic';
  src: url('https://static.miraheze.org/drycleaninglobbywiki/4/4a/Centurygothic.woff') format('woff');
}
/* target all elements */
* {
	font-family: centurygothic;
}
body {
 background-image: url("https://static.miraheze.org/drycleaninglobbywiki/8/84/Nalpakra.png");
}
/* unvisited link */
a:link {
  color: DarkSlateBlue;
}
/* visited link */
a:visited {
  color: CadetBlue;
}

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

/* selected link */
a:active {
  color: CornflowerBlue;
}