Jump to content

MediaWiki:Common.css

From Madness Descent (Roblox) Wiki
Revision as of 13:33, 14 May 2025 by Editingthingsforlife (talk | contribs) (Created page with "Background and general colors: body { background-color: #1c0f0a; color: #fefefe; font-family: 'Courier New', monospace; } Header title: #firstHeading { color: #ff2c2c; font-size: 3em; font-weight: bold; text-shadow: 0 0 8px #ff0000; text-align: center; margin-bottom: 20px; } Navigation styles: #mw-panel { background-color: #120a07; color: #fff; padding: 1em; border-right: 2px solid #ff4444; } #p-naviga...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* Background and general colors */
body {
    background-color: #1c0f0a;
    color: #fefefe;
    font-family: 'Courier New', monospace;
}

/* Header title */
#firstHeading {
    color: #ff2c2c;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 0 0 8px #ff0000;
    text-align: center;
    margin-bottom: 20px;
}

/* Navigation styles */
#mw-panel {
    background-color: #120a07;
    color: #fff;
    padding: 1em;
    border-right: 2px solid #ff4444;
}

#p-navigation h3,
#p-Community h3 {
    font-family: 'Impact', sans-serif;
    font-size: 1.2em;
    color: #ff3b3b;
    border-bottom: 2px solid #ff4444;
}

#p-navigation ul,
#p-Community ul {
    list-style: none;
    padding-left: 0;
}

#p-navigation li a,
#p-Community li a {
    color: #ffd966;
    background-color: #1a120e;
    padding: 8px;
    display: block;
    text-decoration: none;
    margin-bottom: 5px;
    border-radius: 5px;
}

#p-navigation li a:hover,
#p-Community li a:hover {
    background-color: #333;
    color: #fff;
}

/* Content box styling */
#bodyContent {
    background: #2a1b14;
    border: 2px solid #ff3b3b;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 12px #ff0000;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"] {
    background-color: #ff4646;
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #d13939;
}

/* Links */
a {
    color: #ffd966;
}
a:hover {
    color: #ffffff;
    text-decoration: underline;
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.