MediaWiki:Common.css
From Twisted
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.
/* ========================= TWISTED WIKI DARK THEME ========================= */ /* 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 */ .skin-timeless #mw-content { background-color: #12181d !important; border: 1px solid #1f2a33 !important; border-radius: 8px; padding: 1rem; } /* Links */ .skin-timeless a { color: #4cc9f0 !important; /* Lightning blue */ } .skin-timeless a:visited { color: #9a8cff !important; /* Muted violet */ } .skin-timeless a:hover { color: #ffcc00 !important; /* Severe weather yellow */ } /* Sidebar & nav panel */ .skin-timeless #mw-navigation { 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 */ .skin-timeless #mw-header { background: linear-gradient(90deg, #10181d 0%, #0b0f12 100%) !important; border-bottom: 3px solid #00ff88 !important; /* Storm green accent */ } /* Footer */ .skin-timeless #mw-footer { background-color: #0b0f12 !important; border-top: 1px solid #222 !important; color: #888 !important; } /* Search bar */ .skin-timeless #searchInput { background-color: #1a232b !important; color: #e0e0e0 !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); }