Jump to content

MediaWiki:Common.css: Difference between revisions

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


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


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


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


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

Revision as of 02:01, 16 January 2026

/* GLOBAL BACKGROUND - Targets the entire window */
html, body, #content, #mw-page-base, #mw-head-base {
    background-color: #0d0d0d !important;
    color: #e0e0e0 !important;
}

/* SIDEBAR & NAVIGATION */
#mw-panel, #p-logo, .mw-sidebar, #mw-navigation {
    background-color: #0d0d0d !important;
}

/* LINKS - Hacker Green */
a { color: #00ff41 !important; }
a:visited { color: #008f11 !important; }

/* SEARCH BAR */
#searchInput {
    background-color: #1a1a1a !important;
    color: #ffd700 !important;
    border: 1px solid #333 !important;
}

/* THE CENTRAL CONTENT BOX */
#content {
    border: 1px solid #333 !important;
    margin-left: 11em; /* Adjust based on your skin */
}

/* TABS (Read, Edit, View History) */
.vector-menu-tabs li {
    background-image: none !important;
    background-color: #1a1a1a !important;
}

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