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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
body {
background: url("/images/wiki_background.png") no-repeat center center fixed;
background-size: cover;
}
/* Ensure the personal tools container has a defined display */
#p-personal {
display: flex;
justify-content: flex-end;
padding: 5px 10px;
}
/* Style the list within the personal tools */
#p-personal ul {
background-color: #2c2f33; /* Dark background */
padding: 6px 12px;
border-radius: 8px;
display: flex;
gap: 10px;
}
/* Style individual links */
#p-personal li a {
text-decoration: none;
padding: 4px 6px;
border-radius: 4px;
transition: background-color 0.2s ease;
}
/* Hover effect for links */
#p-personal li a:hover {
background-color: #7289da; /* Highlight color */
color: #ffffff !important;
}