Jump to content

MediaWiki:Common.css: Difference between revisions

From Hackerpedia
No edit summary
No edit summary
Line 1: Line 1:
/* Hackerpedia High-Contrast Lab Theme */
/* Hackerpedia Professional Tech Theme */
body {
body {
     background-color: #0d1117; /* Deepest Obsidian */
     background-color: #0b0e14 !important; /* Near black */
     color: #ffffff;          /* Pure white text for maximum readability */
     color: #ffffff !important;          /* Pure white text - easiest to read */
     font-family: 'Inter', -apple-system, sans-serif;
     font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}
}


/* Bright Yellow for Technical Headers - High Visibility */
/* Headings in high-contrast yellow */
h1, h2, h3 {
h1, h2, h3 {
     color: #f2ca27;  
     color: #ffcc00 !important;  
     font-family: 'monospace';
     border-bottom: 1px solid #333;
     border-bottom: 2px solid #30363d;
     font-family: 'Courier New', monospace;
}
}


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


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


a:hover {
a:visited {
     text-decoration: underline;
     color: #a371f7 !important;
}
}

Revision as of 01:15, 15 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;
}