Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
/* =====================================================
🔧 KILLES DARK / MIKE KLUBNIKA STYLE MEDIAWIKI THEME
(funktioniert mit Vector 2022 / Legacy)
===================================================== */
/* Grundfarben */
:root{
--bg-main: #0e0e0e;
--panel: #121212;
--panel2: #0d0d0d;
--border: #1b1b1b;
--text: #e6e6e6;
--muted: #9b9b9b;
--accent: #9fd2ff;
--accent2: #76b2ff;
--radius: 6px;
--shadow: rgba(0,0,0,.55);
--mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
--sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Seitenhintergrund (schräge Streifen wie mikeklubnika.com) */
html, body {
background: repeating-linear-gradient(135deg,#0b0b0b 0 18px,#101010 18px 36px);
color: var(--text);
font-family: var(--sans);
line-height: 1.5;
}
/* Hauptinhaltsbereich mittig, leicht schmaler */
#content, .mw-body, .vector-body {
background: var(--bg-main);
border: 1px solid #111;
border-radius: var(--radius);
box-shadow: 0 0 15px rgba(0,0,0,.6);
max-width: 960px;
margin: 30px auto;
padding: 24px 28px 60px;
}
/* Titel */
h1, h2, h3, h4 {
font-family: var(--mono);
color: #fff;
}
h1.firstHeading {
font-size: 1.6em;
border-bottom: 1px solid #222;
padding-bottom: .3em;
}
/* Text und Links */
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
color: var(--accent2);
text-decoration: underline;
}
a:active { color: #fff; }
p, li { color: var(--text); }
/* Tabellen, Infoboxen */
table.wikitable, .infobox {
background: var(--panel);
color: var(--text);
border: 1px solid var(--border);
border-radius: var(--radius);
}
table.wikitable th, table.wikitable td,
.infobox th, .infobox td {
border: 1px solid #222;
padding: 6px 8px;
}
/* Inhaltsverzeichnis */
#toc, .toc {
background: var(--panel2);
color: var(--text);
border: 1px solid #222;
border-radius: var(--radius);
padding: 10px 12px;
}
#toc a { color: var(--accent); }
/* Panels (wie einzelne Boxen) */
.klub-panel {
background: linear-gradient(#121212,#0d0d0d);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0 1px 0 #000 inset, 0 0 0 1px #000, 0 8px 24px var(--shadow);
padding: 14px 16px;
margin-bottom: 22px;
}
.klub-panel h2 {
font: 600 14px var(--mono);
text-transform: uppercase;
letter-spacing: .4px;
color: #cfcfcf;
margin-top: 0;
margin-bottom: 10px;
}
.klub-muted { color: var(--muted); }
/* Topbar mit „Pills“ */
.mw-klub-topbar {
display: flex;
gap: 8px;
align-items: center;
background: linear-gradient(#151515,#0e0e0e);
border: 1px solid #1c1c1c;
box-shadow: 0 1px 0 #000 inset, 0 1px 10px var(--shadow);
padding: 10px;
border-radius: var(--radius);
margin-bottom: 20px;
}
.mw-klub-pill {
font: 12px/1 var(--mono);
border: 1px solid #262626;
background: #0b0b0b;
padding: 6px 10px;
border-radius: 4px;
box-shadow: inset 0 1px 0 #000;
}
.mw-klub-pill:hover { border-color: #333; color: #fff; }
/* Registry & Updates Spalten */
.klub-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width:900px){ .klub-columns { grid-template-columns:1fr; } }
.klub-list {
list-style: none;
padding: 0;
margin: 0;
}
.klub-list li {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 6px 0;
border-bottom: 1px dashed #222;
}
.klub-date {
color: var(--muted);
font-size: 12px;
white-space: nowrap;
}
/* Catalogue Raster */
.klub-catalog {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px,1fr));
gap: 12px;
}
.klub-catalog .item {
background: #0b0b0b;
border: 1px solid #252525;
border-radius: 6px;
box-shadow: inset 0 1px 0 #000, 0 0 0 1px #000;
display: grid;
place-items: center;
height: 120px;
transition: transform .08s;
}
.klub-catalog .item:hover {
transform: translateY(-2px);
border-color: #2f2f2f;
}
/* Bilder in Items */
.klub-catalog .item img {
width: 100px;
height: 100px;
object-fit: cover;
opacity: .9;
}
/* Kleine Texte */
.small { font-size: 12px; color: var(--muted); }
/* Code */
code, pre {
background: #0b0b0b;
border: 1px solid #242424;
border-radius: 4px;
padding: 2px 4px;
}
/* Navigation & Footer leicht abdunkeln, aber nicht transparent */
#mw-panel, #p-logo, #footer {
background: #080808;
border-right: 1px solid #111;
}
#footer {
border-top: 1px solid #111;
color: var(--muted);
}
