Jump to content

MediaWiki:Common.css: Difference between revisions

From Hackerpedia
No edit summary
No edit summary
Line 1: Line 1:
/* Hackerpedia Modern Tech Theme */
/* Hackerpedia High-Contrast Lab Theme */
body {
body {
     background-color: #0f172a; /* Deep Navy/Slate background */
     background-color: #0d1117; /* Deepest Obsidian */
     color: #e2e8f0; /* Soft white/gray text for readability */
     color: #ffffff;           /* Pure white text for maximum readability */
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}
}


/* Technical Monospace Headers */
/* Bright Yellow for Technical Headers - High Visibility */
h1, h2, h3, h4 {
h1, h2, h3 {
     color: #38bdf8; /* Soft blue for headings */
     color: #f2ca27;  
     font-family: 'Courier New', monospace;
     font-family: 'monospace';
     border-bottom: 1px solid #334155;
     border-bottom: 2px solid #30363d;
    text-transform: uppercase;
    letter-spacing: 1px;
}
}


/* The Definition Box (The Template we created earlier) */
/* The Definition Box */
.cyber-term-box {
.cyber-term-box {
     background-color: #1e293b; /* Slightly lighter slate */
     background-color: #161b22;
     border-left: 4px solid #10b981; /* Emerald accent */
    border: 1px solid #30363d;
     padding: 20px;
     border-left: 5px solid #f2ca27; /* Yellow accent */
     padding: 25px;
     margin: 20px 0;
     margin: 20px 0;
     border-radius: 4px;
     border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
}


/* Links - High visibility but not neon */
/* Links */
a {
a {
     color: #10b981 !important;
     color: #58a6ff !important; /* Standard "Dev" Blue */
     text-decoration: none;
     font-weight: bold;
}
}


a:hover {
a:hover {
     text-decoration: underline;
     text-decoration: underline;
    color: #34d399 !important;
}
/* Sidebar and Navigation */
#mw-panel, #p-navigation, #p-tb {
    background-color: #0f172a;
}
.mw-wiki-logo {
    filter: hue-rotate(180deg) brightness(1.5); /* Adjusts logo to match blue/green theme */
}
/* Code and technical terms */
code {
    background-color: #334155;
    color: #f472b6; /* Pinkish-red for code snippets */
    padding: 2px 4px;
    border-radius: 3px;
}
}

Revision as of 01:11, 15 January 2026

/* Hackerpedia High-Contrast Lab Theme */
body {
    background-color: #0d1117; /* Deepest Obsidian */
    color: #ffffff;           /* Pure white text for maximum readability */
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}

/* Bright Yellow for Technical Headers - High Visibility */
h1, h2, h3 {
    color: #f2ca27; 
    font-family: 'monospace';
    border-bottom: 2px solid #30363d;
}

/* The Definition Box */
.cyber-term-box {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-left: 5px solid #f2ca27; /* Yellow accent */
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
}

/* Links */
a {
    color: #58a6ff !important; /* Standard "Dev" Blue */
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}