MediaWiki:Common.css: Difference between revisions

From VR Wiki
(Created page with "→‎CSS placed here will be applied to all skins: div.inline-infobox { margin: 0.5em; padding: 0.5em; border-radius:0.25em; } div.inline-infobox.note { background: #...")
 
No edit summary
Line 8: Line 8:
div.inline-infobox.note {
div.inline-infobox.note {
   background: #eee;
   background: #eee;
}
/* MW uses .warning, so extra w. */
div.inline-infobox.wwarning {
  background: #fc5;
}
}

Revision as of 22:08, 29 June 2020

/* CSS placed here will be applied to all skins */
div.inline-infobox {
  margin: 0.5em;
  padding: 0.5em;
  border-radius:0.25em;
}

div.inline-infobox.note {
  background: #eee;
}

/* MW uses .warning, so extra w. */
div.inline-infobox.wwarning {
  background: #fc5;
}