MediaWiki:Vector.css

From Enderscrolls
Revision as of 10:01, 18 September 2025 by Elo (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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;
}