MediaWiki:Common.css

From Ages of Conflict
Revision as of 23:18, 14 February 2024 by CrimzonConflict (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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Body background color */
body {
    background-color: #333c47;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
#mw-head {
    background-color: #5e6732;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo */
#p-logo a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
}

/* Main content area */
#content {
    background-color: #575f46;
    padding: 20px;
    margin-top: 20px;
}

/* Links */
a {
    color: #c7b78b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sidebar */
#mw-panel {
    background-color: #333c47;
    color: #ffffff;
    padding: 20px;
}

/* Footer */
#footer {
    background-color: #333c47;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}