Jump to content

Template:CyberTerm: Difference between revisions

From Hackerpedia
Created page with "<div style="border: 1px solid #2a75bb; padding: 15px; background-color: #f0f7ff; border-radius: 5px;"> '''Definition:''' {{{definition}}} <hr /> <div style="font-size: 0.8em; color: #555;"> '''Source:''' {{{source}}} | Category:Cybersecurity Dictionary </div> </div>"
 
No edit summary
Line 1: Line 1:
<div style="border: 1px solid #2a75bb; padding: 15px; background-color: #f0f7ff; border-radius: 5px;">
/* Hackerpedia Modern Tech Theme */
'''Definition:''' {{{definition}}}
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;
}


<hr />
/* Technical Monospace Headers */
<div style="font-size: 0.8em; color: #555;">
h1, h2, h3, h4 {
'''Source:''' {{{source}}} | [[Category:Cybersecurity Dictionary]]
    color: #38bdf8; /* Soft blue for headings */
</div>
    font-family: 'Courier New', monospace;
</div>
    border-bottom: 1px solid #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
/* The Definition Box (The Template we created earlier) */
.cyber-term-box {
    background-color: #1e293b; /* Slightly lighter slate */
    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 */
a {
    color: #10b981 !important;
    text-decoration: none;
}
 
a:hover {
    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 00:59, 15 January 2026

/* Hackerpedia Modern Tech Theme */ 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, h2, h3, h4 {

   color: #38bdf8; /* Soft blue for headings */
   font-family: 'Courier New', monospace;
   border-bottom: 1px solid #334155;
   text-transform: uppercase;
   letter-spacing: 1px;

}

/* The Definition Box (The Template we created earlier) */ .cyber-term-box {

   background-color: #1e293b; /* Slightly lighter slate */
   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 */ a {

   color: #10b981 !important;
   text-decoration: none;

}

a:hover {

   text-decoration: underline;
   color: #34d399 !important;

}

/* Sidebar and Navigation */

  1. 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;

}