MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* Haupthintergrundfarbe */ | |||
body.skin-vector { | |||
background-color: #1c1c1c; | |||
color: #ffffff; | |||
} | |||
/* Links */ | |||
body.skin-vector a { | |||
color: #7a3ed6; | |||
text-decoration: none; | |||
} | |||
body.skin-vector a:hover { | |||
text-decoration: underline; | |||
} | |||
/* Buttons */ | |||
body.skin-vector .mw-ui-button { | |||
background-color: #7a3ed6; | |||
color: #ffffff; | |||
border: none; | |||
border-radius: 0.3em; | |||
padding: 0.5em 1em; | |||
font-weight: bold; | |||
transition: background-color 0.2s ease; | |||
} | |||
body.skin-vector .mw-ui-button:hover { | |||
background-color: #5c2fa3; | |||
} | |||
/* Panels / Boxen */ | |||
body.skin-vector .mw-body { | |||
background-color: #1c1c1c; | |||
color: #e0e0e0; | |||
} | |||
/* Überschriften */ | |||
body.skin-vector h1, | |||
body.skin-vector h2, | |||
body.skin-vector h3, | |||
body.skin-vector h4, | |||
body.skin-vector h5, | |||
body.skin-vector h6 { | |||
color: #ffffff; | |||
} | |||
/* Icons (falls verwendet) */ | |||
body.skin-vector .vector-icon { | |||
fill: #7a3ed6; | |||
} | |||
Revision as of 10:01, 18 September 2025
/* Haupthintergrundfarbe */
body.skin-vector {
background-color: #1c1c1c;
color: #ffffff;
}
/* Links */
body.skin-vector a {
color: #7a3ed6;
text-decoration: none;
}
body.skin-vector a:hover {
text-decoration: underline;
}
/* Buttons */
body.skin-vector .mw-ui-button {
background-color: #7a3ed6;
color: #ffffff;
border: none;
border-radius: 0.3em;
padding: 0.5em 1em;
font-weight: bold;
transition: background-color 0.2s ease;
}
body.skin-vector .mw-ui-button:hover {
background-color: #5c2fa3;
}
/* Panels / Boxen */
body.skin-vector .mw-body {
background-color: #1c1c1c;
color: #e0e0e0;
}
/* Überschriften */
body.skin-vector h1,
body.skin-vector h2,
body.skin-vector h3,
body.skin-vector h4,
body.skin-vector h5,
body.skin-vector h6 {
color: #ffffff;
}
/* Icons (falls verwendet) */
body.skin-vector .vector-icon {
fill: #7a3ed6;
}