MediaWiki:Vector-dark.css: Difference between revisions
Appearance
Cdjensen94 (talk | contribs) No edit summary |
Cdjensen94 (talk | contribs) No edit summary |
||
Line 125: | Line 125: | ||
--color-progressive: #ff851b; /* Bright Orange */ | --color-progressive: #ff851b; /* Bright Orange */ | ||
--color-destructive: #ff4500; /* Burnt Orange */ | --color-destructive: #ff4500; /* Burnt Orange */ | ||
} | |||
/* Additional tweaks for form fields */ | /* Additional tweaks for form fields */ | ||
.oo-ui-fieldLayout, | .oo-ui-fieldLayout, | ||
Line 224: | Line 224: | ||
background-color: #ffb84d; | background-color: #ffb84d; | ||
} | } | ||
:root, .skin-vector, .skin-invert, .notheme { | :root, .skin-vector, .skin-invert, .notheme { | ||
Line 1,441: | Line 1,440: | ||
flex-direction: column; | flex-direction: column; | ||
} | } | ||
} | |||
nav { | |||
display: block; /* Ensure it behaves as a block element */ | |||
margin: 10px 0; /* Add vertical spacing */ | |||
padding: 10px; /* Add inner spacing */ | |||
background-color: #f9f9f9; /* Optional: light background */ | |||
border-radius: 5px; /* Optional: rounded corners */ | |||
border: 1px solid #ccc; /* Optional: subtle border */ | |||
} | |||
/* Adjust navigation links inside nav */ | |||
nav a { | |||
margin-right: 10px; /* Space between links */ | |||
text-decoration: none; /* Remove underlines */ | |||
color: #007BFF; /* Link color */ | |||
} | |||
nav a:hover { | |||
text-decoration: underline; /* Hover effect */ | |||
} | } |