MediaWiki:Common.css

From Ragnafied Wiki
Revision as of 17:15, 29 September 2025 by Putotine (RID-12) (talk | contribs) (Created page with "→‎===== MEDIAWIKI COMMON.CSS ENHANCEMENTS =====: →‎Last updated: 2024: →‎=== Improved Tables ===: .wikitable { border-collapse: collapse; border-spacing: 0; width: 100%; margin: 1em 0; background: white; border: 1px solid #a2a9b1; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .wikitable th { background: linear-gradient(135deg, #2c5e9e 0%, #1e3a5f 100%); color: white; font-weight:...")
(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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* ===== MEDIAWIKI COMMON.CSS ENHANCEMENTS ===== */
/* Last updated: 2024 */

/* === Improved Tables === */
.wikitable {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 1em 0;
    background: white;
    border: 1px solid #a2a9b1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wikitable th {
    background: linear-gradient(135deg, #2c5e9e 0%, #1e3a5f 100%);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 12px 8px;
    border-bottom: 2px solid #1e3a5f;
    font-size: 14px;
}

.wikitable td {
    padding: 10px 8px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.wikitable tr:nth-child(even) {
    background-color: #f8f9fa;
}

.wikitable tr:nth-child(odd) {
    background-color: #ffffff;
}

.wikitable tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.2s ease;
}

/* === Enhanced Navigation === */
#toc {
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 6px;
    padding: 15px;
    margin: 1em 0;
}

.tocnumber {
    color: #2c5e9e;
    font-weight: bold;
}

/* === Better Links === */
a {
    color: #0645ad;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0b0080;
    text-decoration: underline;
}

a:visited {
    color: #0b0080;
}

a.new {
    color: #c20;
}

/* === Content Improvements === */
#content {
    line-height: 1.6;
    color: #202122;
}

#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
    color: #2c5e9e;
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 0.3em;
    margin-top: 1.5em;
}

#content h1 {
    border-bottom: 2px solid #2c5e9e;
}

/* === Code Blocks === */
pre, code {
    background: #f8f9fa;
    border: 1px solid #eaecf0;
    border-radius: 4px;
    padding: 2px 4px;
    font-family: monospace;
}

pre {
    padding: 12px;
    overflow-x: auto;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .wikitable {
        font-size: 14px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    #content {
        padding: 10px;
    }
    
    .wikitable th,
    .wikitable td {
        padding: 8px 6px;
    }
}

/* === Infoboxes and Special Elements === */
.infobox {
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 6px;
    padding: 15px;
    margin: 1em 0;
}

.navbox {
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 4px;
    padding: 5px;
}

/* === Custom Header Colors === */
.mw-headline {
    color: #2c5e9e;
}

/* === Button Improvements === */
.mw-ui-button {
    background: #2c5e9e;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mw-ui-button:hover {
    background: #1e3a5f;
}

/* === Form Elements === */
.mw-input, 
textarea {
    border: 1px solid #a2a9b1;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
}

.mw-input:focus, 
textarea:focus {
    border-color: #2c5e9e;
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 94, 158, 0.2);
}

/* === Print Styles === */
@media print {
    .wikitable {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}