MediaWiki:Common.css: Difference between revisions
From Twisted
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* ===== | /* ========================= | ||
body { | 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 */ | |||
color: # | |||
} | } | ||
/* | /* Sidebar & nav panel */ | ||
#mw- | .skin-timeless #mw-navigation { | ||
background: # | background-color: #0e1418 !important; | ||
border-right: 1px solid #222 !important; | |||
} | } | ||
.skin-timeless .sidebar-chunk { | |||
color: # | background-color: #10181d !important; | ||
border-radius: 5px; | |||
padding: 5px; | |||
} | } | ||
/* | /* Header bar */ | ||
.mw- | .skin-timeless #mw-header { | ||
background: # | background: linear-gradient(90deg, #10181d 0%, #0b0f12 100%) !important; | ||
border- | border-bottom: 3px solid #00ff88 !important; /* Storm green accent */ | ||
} | } | ||
/* | /* Footer */ | ||
.skin-timeless #mw-footer { | |||
color: # | background-color: #0b0f12 !important; | ||
border-top: 1px solid #222 !important; | |||
color: #888 !important; | |||
color: # | |||
} | } | ||
/* | /* Search bar */ | ||
.skin-timeless #searchInput { | |||
background: # | background-color: #1a232b !important; | ||
color: #e0e0e0 !important; | |||
border: 1px solid #333 !important; | border: 1px solid #333 !important; | ||
} | } | ||
/* | /* Buttons */ | ||
.skin-timeless .mw-ui-button { | |||
background: # | background-color: #00ff88 !important; | ||
color: # | 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; | |||
.skin-timeless | |||
} | } | ||
/* | /* Tables */ | ||
.skin-timeless | .skin-timeless table { | ||
background-color: # | background-color: #12181d !important; | ||
border | border: 1px solid #2a3540 !important; | ||
} | } | ||
.skin-timeless | .skin-timeless th { | ||
color: # | background-color: #1a232b !important; | ||
color: #00ff88 !important; | |||
} | } | ||
.skin-timeless td { | |||
border: 1px solid #2a3540 !important; | |||
.skin-timeless | |||
} | } | ||
/* | /* Remove ugly white borders around images */ | ||
.skin-timeless | .skin-timeless img { | ||
border: none !important; | |||
border | |||
} | } | ||
/* | /* "Powered by MediaWiki" logo dim */ | ||
#footer-poweredbyico img { | |||
filter: brightness(0.7); | |||
. | |||
} | } |
Revision as of 22:23, 13 August 2025
/* ========================= 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); }