|
|
| (13 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* Hackerpedia Modern Tech Theme */
| | <div class="cyber-term-box"> |
| body {
| |
| background-color: #0f172a; /* Deep Navy/Slate background */
| |
| color: #e2e8f0; /* Soft white/gray text for readability */
| |
| font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
| |
| }
| |
|
| |
|
| /* Technical Monospace Headers */
| | <h1 style="color:#ffd700; margin-top:0; font-family:monospace; border:none;"> |
| h1, h2, h3, h4 { | | {{#if:{{{Title|{{{title|}}}}}} | {{{Title|{{{title}}}}}} | {{PAGENAME}} }} |
| color: #38bdf8; /* Soft blue for headings */
| | </h1> |
| font-family: 'Courier New', monospace;
| |
| border-bottom: 1px solid #334155;
| |
| text-transform: uppercase;
| |
| letter-spacing: 1px;
| |
| }
| |
|
| |
|
| /* The Definition Box (The Template we created earlier) */
| | <div style="font-size:1.1em; color:#000000; line-height:1.6; margin-bottom:15px;"> |
| .cyber-term-box { | | {{{Definition|{{{definition|{{{text|No definition provided.}}}}}}}}} |
| background-color: #1e293b; /* Slightly lighter slate */
| | </div> |
| border-left: 4px solid #10b981; /* Emerald accent */
| |
| padding: 20px;
| |
| margin: 20px 0;
| |
| border-radius: 4px;
| |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
| |
| }
| |
|
| |
|
| /* Links - High visibility but not neon */
| | <hr style="border:0; border-top:1px solid #444; margin:15px 0;"/> |
| a {
| |
| color: #10b981 !important;
| |
| text-decoration: none;
| |
| }
| |
|
| |
|
| a:hover {
| | <div style="color:#000000; font-size:0.9em;"> |
| text-decoration: underline;
| | '''Source:''' {{{Source|{{{source|NIST}}}}}} | |
| color: #34d399 !important;
| | '''Category:''' [[Category:{{{Category|{{{category|Cybersecurity}}}}}}]] |
| } | | </div> |
|
| |
|
| /* Sidebar and Navigation */ | | </div> |
| #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;
| |
| }
| |