MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: →Hintergrund: body { background-color: #f5f5f5; } →Links: a { color: #0066cc; }“) |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* ========================= | |||
Hytale-inspiriertes Theme | |||
========================= */ | |||
/* Hintergrund */ | /* Hintergrund */ | ||
body { | body { | ||
background-color: # | background-color: #e6d8b8; | ||
color: #1a1a1a; | |||
font-family: "Segoe UI", "Roboto", sans-serif; | |||
} | } | ||
/* Links */ | /* Links */ | ||
a { | a { | ||
color: # | color: #4caf50; | ||
} | |||
a:visited { | |||
color: #3e8e41; | |||
} | |||
a:hover { | |||
color: #d4af37; | |||
} | |||
/* Überschriften */ | |||
h1, h2, h3, h4, h5, h6 { | |||
color: #2b1f14; | |||
} | |||
/* Seiteninhalt */ | |||
.mw-body { | |||
background-color: #f2ead4; | |||
border-radius: 6px; | |||
padding: 1em; | |||
} | |||
/* Tabellen */ | |||
table { | |||
background-color: #f7f1df; | |||
border: 1px solid #4a3524; | |||
} | |||
th { | |||
background-color: #4a3524; | |||
color: #ffffff; | |||
} | |||
/* Code-Blöcke */ | |||
pre, code { | |||
background-color: #ede4cc; | |||
border: 1px solid #cbb890; | |||
} | |||
/* Auswahl */ | |||
::selection { | |||
background: #4caf50; | |||
color: #ffffff; | |||
} | } | ||
Version vom 17. Januar 2026, 17:19 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* =========================
Hytale-inspiriertes Theme
========================= */
/* Hintergrund */
body {
background-color: #e6d8b8;
color: #1a1a1a;
font-family: "Segoe UI", "Roboto", sans-serif;
}
/* Links */
a {
color: #4caf50;
}
a:visited {
color: #3e8e41;
}
a:hover {
color: #d4af37;
}
/* Überschriften */
h1, h2, h3, h4, h5, h6 {
color: #2b1f14;
}
/* Seiteninhalt */
.mw-body {
background-color: #f2ead4;
border-radius: 6px;
padding: 1em;
}
/* Tabellen */
table {
background-color: #f7f1df;
border: 1px solid #4a3524;
}
th {
background-color: #4a3524;
color: #ffffff;
}
/* Code-Blöcke */
pre, code {
background-color: #ede4cc;
border: 1px solid #cbb890;
}
/* Auswahl */
::selection {
background: #4caf50;
color: #ffffff;
}