MediaWiki:Common.css: Difference between revisions

From Twisted
No edit summary
No edit summary
Line 1: Line 1:
/* =========================
body {
  TWISTED WIKI DARK THEME
     background-color: #0a0a0a !important;
  ========================= */
     color: #e4e4e4 !important;
 
/* Base background & text */
.skin-timeless body {
     background-color: #0b0f12 !important; /* Deep stormy gray-blue */
     color: #e0e0e0 !important;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
}


/* Main content area */
a {
.skin-timeless #mw-content {
     color: #4fb8ff !important;
     background-color: #12181d !important;
    border: 1px solid #1f2a33 !important;
    border-radius: 8px;
    padding: 1rem;
}
}
 
a:visited {
/* Links */
     color: #a0d8ff !important;
.skin-timeless a {
     color: #4cc9f0 !important; /* Lightning blue */
}
}
.skin-timeless a:visited {
a:hover {
     color: #9a8cff !important; /* Muted violet */
     color: #80d8ff !important;
}
}
.skin-timeless a:hover {
 
     color: #ffcc00 !important; /* Severe weather yellow */
.navbar,
.navbar-default {
     background-color: #111 !important;
    border-bottom: 2px solid #4fb8ff !important;
}
}


/* Sidebar & nav panel */
.navbar a {
.skin-timeless #mw-navigation {
     color: #e4e4e4 !important;
    background-color: #0e1418 !important;
    border-right: 1px solid #222 !important;
}
.skin-timeless .sidebar-chunk {
     background-color: #10181d !important;
    border-radius: 5px;
    padding: 5px;
}
}


/* Header bar */
.content {
.skin-timeless #mw-header {
     background-color: #121212 !important;
     background: linear-gradient(90deg, #10181d 0%, #0b0f12 100%) !important;
    padding: 20px;
     border-bottom: 3px solid #00ff88 !important; /* Storm green accent */
     border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}
}


/* Footer */
footer {
.skin-timeless #mw-footer {
     background-color: #0d0d0d !important;
     background-color: #0b0f12 !important;
    border-top: 1px solid #222 !important;
     color: #888 !important;
     color: #888 !important;
}
}
 
.infobox,
/* Search bar */
.wikitable {
.skin-timeless #searchInput {
     background-color: #1a1a1a !important;
     background-color: #1a232b !important;
     color: #ddd !important;
     color: #e0e0e0 !important;
     border: 1px solid #333 !important;
     border: 1px solid #333 !important;
}
/* Buttons */
.skin-timeless .mw-ui-button {
    background-color: #00ff88 !important;
    color: #000 !important;
    border: none !important;
    transition: background 0.2s ease;
}
.skin-timeless .mw-ui-button:hover {
    background-color: #00cc6e !important;
}
/* Headings */
.skin-timeless h1, .skin-timeless h2, .skin-timeless h3 {
    color: #4cc9f0 !important;
    border-bottom: 1px solid #1f2a33 !important;
}
/* Tables */
.skin-timeless table {
    background-color: #12181d !important;
    border: 1px solid #2a3540 !important;
}
.skin-timeless th {
    background-color: #1a232b !important;
    color: #00ff88 !important;
}
.skin-timeless td {
    border: 1px solid #2a3540 !important;
}
/* Remove ugly white borders around images */
.skin-timeless img {
    border: none !important;
}
/* "Powered by MediaWiki" logo dim */
#footer-poweredbyico img {
    filter: brightness(0.7);
}
}

Revision as of 22:36, 13 August 2025

body {
    background-color: #0a0a0a !important;
    color: #e4e4e4 !important;
}

a {
    color: #4fb8ff !important;
}
a:visited {
    color: #a0d8ff !important;
}
a:hover {
    color: #80d8ff !important;
}

.navbar,
.navbar-default {
    background-color: #111 !important;
    border-bottom: 2px solid #4fb8ff !important;
}

.navbar a {
    color: #e4e4e4 !important;
}

.content {
    background-color: #121212 !important;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

footer {
    background-color: #0d0d0d !important;
    color: #888 !important;
}
.infobox,
.wikitable {
    background-color: #1a1a1a !important;
    color: #ddd !important;
    border: 1px solid #333 !important;
}