MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→Hintergrundfarbe: body { background-color: #140c0c !important; color: #ffffff !important; } →Links: a, a:visited { color: #962402 !important; } a:hover { color: #fc997c !important; } →Header und Navigation: #p-personal, #p-navigation { background-color: #962402 !important; }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Header-Hintergrund */ | ||
#mw-head { | |||
background: linear-gradient(90deg, #140c0c, #962402); | |||
color: #fc997c; | |||
} | |||
/* Hauptnavigation */ | |||
#p-navigation, #p-personal { | |||
background-color: #962402; | |||
border-bottom: 3px solid #fc997c; | |||
} | |||
/* Links im Header */ | |||
#p-navigation a, #p-personal a { | |||
color: #fc997c !important; | |||
} | |||
#p-navigation a:hover, #p-personal a:hover { | |||
color: #ffffff !important; | |||
} | |||
/* Seitenhintergrund */ | |||
body { | body { | ||
background-color: # | background-color: #1e1e1e; | ||
color: # | color: #f4f4f4; | ||
} | |||
/* Infoboxen & Kategorien */ | |||
.table-infobox, .mw-portlet { | |||
background-color: #2a1e1e; | |||
border: 2px solid #962402; | |||
color: #fc997c; | |||
border-radius: 5px; | |||
padding: 8px; | |||
} | } | ||
/* Links */ | /* Standard-Links */ | ||
a, a:visited { | a, a:visited { | ||
color: # | color: #ffb84d; | ||
} | } | ||
a:hover { | a:hover { | ||
color: #fc997c | color: #ffecb3; | ||
} | |||
/* Buttons */ | |||
button, .mw-ui-button { | |||
background-color: #962402; | |||
color: #fc997c; | |||
border: 1px solid #ffb84d; | |||
} | |||
button:hover, .mw-ui-button:hover { | |||
background-color: #ffb84d; | |||
color: #140c0c; | |||
} | |||
/* Überschriften */ | |||
h1, h2, h3, h4, h5, h6 { | |||
color: #ffb84d; | |||
text-shadow: 1px 1px 2px #140c0c; | |||
} | } | ||
/* | /* Tabellen */ | ||
table { | |||
border-collapse: collapse; | |||
} | |||
th, td { | |||
border: 1px solid #962402; | |||
padding: 4px 8px; | |||
} | } | ||
Revision as of 09:47, 18 September 2025
/* Header-Hintergrund */
#mw-head {
background: linear-gradient(90deg, #140c0c, #962402);
color: #fc997c;
}
/* Hauptnavigation */
#p-navigation, #p-personal {
background-color: #962402;
border-bottom: 3px solid #fc997c;
}
/* Links im Header */
#p-navigation a, #p-personal a {
color: #fc997c !important;
}
#p-navigation a:hover, #p-personal a:hover {
color: #ffffff !important;
}
/* Seitenhintergrund */
body {
background-color: #1e1e1e;
color: #f4f4f4;
}
/* Infoboxen & Kategorien */
.table-infobox, .mw-portlet {
background-color: #2a1e1e;
border: 2px solid #962402;
color: #fc997c;
border-radius: 5px;
padding: 8px;
}
/* Standard-Links */
a, a:visited {
color: #ffb84d;
}
a:hover {
color: #ffecb3;
}
/* Buttons */
button, .mw-ui-button {
background-color: #962402;
color: #fc997c;
border: 1px solid #ffb84d;
}
button:hover, .mw-ui-button:hover {
background-color: #ffb84d;
color: #140c0c;
}
/* Überschriften */
h1, h2, h3, h4, h5, h6 {
color: #ffb84d;
text-shadow: 1px 1px 2px #140c0c;
}
/* Tabellen */
table {
border-collapse: collapse;
}
th, td {
border: 1px solid #962402;
padding: 4px 8px;
}