MediaWiki:Common.css

From Dave-Wiki
Revision as of 20:56, 11 February 2024 by Dave (talk | contribs) (Created page with "→‎CSS placed here will be applied to all skins: body { background-color: #ceb888; } table.buttons td { border: 1px solid black; border-radius: 10px; width: 100px; height: 50px; text-align: center; padding: 5px 10px; background: #782F40; font-family: "Times New Roman", Times, serif; font-size: 1.5em; color: white; } table.buttons td a:link { color: white !IMPORTANT; background-color: transparent; text-decoration: none; } table.buttons td a:v...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, 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: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

body { background-color: #ceb888; }

table.buttons td {
  border: 1px solid black;
  border-radius: 10px;
  width: 100px;
  height: 50px;
  text-align: center;
  padding: 5px 10px;
  background: #782F40;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5em;
  color: white;
}
table.buttons td a:link {
  color: white !IMPORTANT;
  background-color: transparent;
  text-decoration: none;
}
table.buttons td a:visited {
  color: white !IMPORTANT;
  background-color: transparent;
  text-decoration: none;
}
table.buttons td a:hover {
  color: white !IMPORTANT;
  background-color: transparent;
  text-decoration: none;
}
table.buttons td a:active {
  color: white !IMPORTANT;
  background-color: transparent;
  text-decoration: none;
}