MediaWiki:Common.css: Difference between revisions

From IUO Tome of Knowledge
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Dark mode styles for entire Timeless skin */
/* ==========================
body.dark-mode {
  Default Dark Theme for Timeless Skin
  ========================== */
 
/* Global background and text */
body {
     background-color: #111 !important;
     background-color: #111 !important;
     color: #eee !important;
     color: #eee !important;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
}


/* Header */
/* Header */
body.dark-mode #mw-head,
#mw-head,
body.dark-mode #mw-head .mw-shell {
#mw-head .mw-shell {
     background-color: #1a1a1a !important;
     background-color: #1a1a1a !important;
     color: #eee !important;
     color: #eee !important;
    border-bottom: 1px solid #222;
}
}


/* Sidebar / panels */
/* Sidebar / navigation panels */
body.dark-mode #mw-panel {
#mw-panel {
     background-color: #1c1c1c !important;
     background-color: #1c1c1c !important;
     color: #eee !important;
     color: #eee !important;
Line 19: Line 25:


/* Main content */
/* Main content */
body.dark-mode #content,
#content,
body.dark-mode .mw-body-content,
.mw-body-content,
body.dark-mode .mw-parser-output {
.mw-parser-output {
     background-color: #1b1b1b !important;
     background-color: #1b1b1b !important;
     color: #eee !important;
     color: #eee !important;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
}


/* Footer */
/* Footer */
body.dark-mode #footer {
#footer {
     background-color: #111 !important;
     background-color: #111 !important;
     color: #ccc !important;
     color: #ccc !important;
    border-top: 1px solid #222;
}
}


/* Links */
/* Links */
body.dark-mode a {
a {
     color: #80c0ff !important;
     color: #5cc989 !important; /* InsaneUO green acce*
}
body.dark-mode a:visited {
    color: #a0aaff !important;
}
 
/* Buttons / CTAs */
body.dark-mode .button,
body.dark-mode .mw-button {
    background-color: #28a745 !important;
    color: #fff !important;
}

Revision as of 05:18, 6 October 2025

/* ==========================
   Default Dark Theme for Timeless Skin
   ========================== */

/* Global background and text */
body {
    background-color: #111 !important;
    color: #eee !important;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Header */
#mw-head,
#mw-head .mw-shell {
    background-color: #1a1a1a !important;
    color: #eee !important;
    border-bottom: 1px solid #222;
}

/* Sidebar / navigation panels */
#mw-panel {
    background-color: #1c1c1c !important;
    color: #eee !important;
}

/* Main content */
#content,
.mw-body-content,
.mw-parser-output {
    background-color: #1b1b1b !important;
    color: #eee !important;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Footer */
#footer {
    background-color: #111 !important;
    color: #ccc !important;
    border-top: 1px solid #222;
}

/* Links */
a {
    color: #5cc989 !important;  /* InsaneUO green acce*