MediaWiki:Common.css

From CWRE
Revision as of 14:49, 20 October 2021 by Woozle (talk | contribs)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */
table.listing {
	border: 1px solid black;
	background: radial-gradient(yellow, green);
	box-shadow: 5px 5px 3px 1px #999;
}
table.listing tr th {
	background: #aaf;
}
table.listing tr td {
	background: white;
}
table.listing .odd td {
	background: #eef;
}
table.listing .even td {
	background: #fff;
}
table.listing .void td {
	color: #888;
	text-decoration:line-through;
}

/* spoilers and triggery content */
.secret {
  color: black;
  background: black;
}
.secret:hover {
  background: blue;
}

/* make blockquotes stand out a little more */
blockquote {
    font-family: serif;
    border: 1px solid grey;
    padding: 1em;
}