Jump to content

MediaWiki:Common.css: Difference between revisions

From Hackerpedia
No edit summary
Tag: Reverted
Undo revision 24013 by Wikiadmin (talk)
Tag: Undo
Line 1: Line 1:
/* GLOBAL BACKGROUND - Targets the entire window */
/* Hackerpedia Professional Tech Theme */
html, body, #content, #mw-page-base, #mw-head-base {
body {
     background-color: #0d0d0d !important;
     background-color: #0b0e14 !important; /* Near black */
     color: #e0e0e0 !important;
     color: #ffffff !important;          /* Pure white text - easiest to read */
    font-family: 'Segoe UI', Arial, sans-serif;
}
}


/* SIDEBAR & NAVIGATION */
/* Headings in high-contrast yellow */
#mw-panel, #p-logo, .mw-sidebar, #mw-navigation {
h1, h2, h3 {
     background-color: #0d0d0d !important;
     color: #ffcc00 !important;
    border-bottom: 1px solid #333;
    font-family: 'Courier New', monospace;
}
}


/* LINKS - Hacker Green */
/* The Definition Container */
a { color: #00ff41 !important; }
.cyber-term-box {
a:visited { color: #008f11 !important; }
    background-color: #1a1f26; /* Dark slate box */
 
     border: 1px solid #3d444d;
/* SEARCH BAR */
     border-left: 6px solid #ffcc00; /* Thick yellow bar */
#searchInput {
    padding: 25px;
     background-color: #1a1a1a !important;
     margin: 20px 0;
    color: #ffd700 !important;
     color: #ffffff; /* Explicitly white text */
     border: 1px solid #333 !important;
    border-radius: 4px;
}
 
/* THE CENTRAL CONTENT BOX */
#content {
     border: 1px solid #333 !important;
     margin-left: 11em; /* Adjust based on your skin */
}
}


/* TABS (Read, Edit, View History) */
/* Force links to be a clear, bright blue */
.vector-menu-tabs li {
a {
     background-image: none !important;
     color: #58a6ff !important;
     background-color: #1a1a1a !important;
     font-weight: bold;
}
}


.vector-menu-tabs .selected {
a:visited {
     background-color: #333 !important;
     color: #a371f7 !important;
}
}

Revision as of 02:03, 16 January 2026

/* Hackerpedia Professional Tech Theme */
body {
    background-color: #0b0e14 !important; /* Near black */
    color: #ffffff !important;           /* Pure white text - easiest to read */
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Headings in high-contrast yellow */
h1, h2, h3 {
    color: #ffcc00 !important; 
    border-bottom: 1px solid #333;
    font-family: 'Courier New', monospace;
}

/* The Definition Container */
.cyber-term-box {
    background-color: #1a1f26; /* Dark slate box */
    border: 1px solid #3d444d;
    border-left: 6px solid #ffcc00; /* Thick yellow bar */
    padding: 25px;
    margin: 20px 0;
    color: #ffffff; /* Explicitly white text */
    border-radius: 4px;
}

/* Force links to be a clear, bright blue */
a {
    color: #58a6ff !important;
    font-weight: bold;
}

a:visited {
    color: #a371f7 !important;
}