Toggle menu
20
62
5
836
Irontide Fantasy Roleplay
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 23:23, 14 November 2025 by Admin (talk | contribs) (Created page with "CSS placed here will be applied to all skins: Category buttons container: .category-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; justify-content: center; center align: } Button styling: .category-buttons a { display: inline-block; padding: 10px 20px; background-color: #2a1a0f; color: #d4a017; font-weight: bold; text-decoration: none; border-radius: 5px; border: 2px solid #d4a017; transition: al...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* Category buttons container */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center; /* center align */
}

/* Button styling */
.category-buttons a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2a1a0f;
  color: #d4a017;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #d4a017;
  transition: all 0.2s;
}

.category-buttons a:hover {
  background-color: #d4a017;
  color: #2a1a0f;
  cursor: pointer;
  transform: translateY(-2px);
}