Toggle menu
1
1
104
ConquestPS Wiki
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 06:12, 12 November 2025 by AdminKursed (talk | contribs)

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.
/* Header styling */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 214, 90, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo img {
  vertical-align: middle;
  margin-right: 15px;
}
.site-nav a {
  color: #ffd65a;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: 0.2s ease;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 214, 90, 0.05);
  border: 1px solid rgba(255, 214, 90, 0.15);
}
.site-nav a:hover {
  background: rgba(255, 214, 90, 0.15);
  text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
}