MediaWiki:Common.css

From retromux
Revision as of 21:32, 7 March 2025 by Dread (talk | contribs)
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 */
/* Change tab background color */
.tabs-label {
    background-color: #3e2a67 !important; /* Dark purple */
    color: #ffca85 !important; /* Amber text */
    border: 1px solid #7157a3 !important; /* Mystic violet border */
    padding: 1px 6px;
    border-radius: 5px;
}

/* Change active tab color */
.tabs-label.current {
    background-color: #f28f38 !important; /* Warm gold for active tab */
    color: #1a0f2b !important; /* Dark blue text */
    font-weight: bold;
}

/* Change hover effect */
.tabs-label:hover {
    background-color: #7157a3 !important; /* Mystic violet on hover */
    color: #ffffff !important; /* White text */
}