MediaWiki:Common.css

From Ages of Conflict
Revision as of 23:21, 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: #f0f4f8;
    color: #333333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
#mw-head {
    background-color: #2c88d9;
    color: #ffffff;
    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: #ffffff;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

a:hover {
    text-decoration: underline;
}

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

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