MediaWiki:Common.css
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 */ /* Default tab appearance */ .tabContainerTabs ul li { background-color: #3e2a67; /* Dark purple */ color: #ffca85; /* Amber text */ border-radius: 5px; padding: 5px 10px; margin-right: 5px; } /* Active tab (selected) */ .tabContainerTabs ul li.current { background-color: #f28f38; /* Warm gold */ color: #1a0f2b; /* Dark blue */ font-weight: bold; } /* Hover effect */ .tabContainerTabs ul li:hover { background-color: #7157a3; /* Mystic violet */ color: #ffffff; /* White text */ }