|
|
(136 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| /* CSS placed here will be applied to all skins */ | | /* CSS placed here will be applied to all skins */ |
|
| |
|
| /* Text elements in white */ | | /* Configure Numbering scheme */ |
| body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, span, blockquote, pre, code, th, td, caption, label, input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select, button, .option, .mw-parser-output {
| |
| color: #ffffff !important;
| |
| } | | } |
| | | ol { |
| /* Page background */
| | list-style-type: decimal; |
| body {
| |
| background-color: #27292d !important;
| |
| }
| |
| | |
| /* Content background */
| |
| #content, #content #bodyContent, #content #mw-content-text, #content #mw-indicator-mw-helplink, #content #mw-panel, #content #footer, #content #footer #footer-info, #content #footer #footer-places, #content #footer #footer-icons, #content #footer #footer-copyright {
| |
| background-color: #1f2024 !important;
| |
| }
| |
| | |
| /* Links */
| |
| a, a:visited {
| |
| color: #ffffff !important;
| |
| } | | } |
| | | ol li > ol { |
| /* Hover effect for links */
| | list-style-type: lower-alpha; |
| a:hover {
| |
| color: #cccccc !important;
| |
| } | | } |
| | | ol li > ol li > ol { |
| /* Hover effect for buttons */
| | list-style-type: lower-roman; |
| button:hover {
| |
| background-color: #444444 !important;
| |
| color: #ffffff !important;
| |
| } | | } |
| | | /* Underline all links */ |
| /* Border color */ | | a { |
| .border {
| | text-decoration: underline; |
| border-color: #ffffff !important; | |
| } | | } |
|
| |
|
| /* Header background */ | | /* Load FontAwesome */ |
| #mw-head {
| | @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); |
| background-color: #27292d !important;
| |
| }
| |
| | |
| /* mw-code and mw-css background */
| |
| .mw-code, .mw-css {
| |
| background-color: #131416 !important;
| |
| }
| |
| | |
| /* mw-normal-catlinks background */
| |
| .mw-normal-catlinks, .toc, .toccolours {
| |
| background-color: #27292d !important;
| |
| padding: 10px; /* Adjust padding as needed */
| |
| }
| |
| | |
| /* Tabs */ | |
| .vector-menu-tabs-legacy a, .vector-menu-tabs-legacy .selected { | |
| background-color: #1f2024 !important; /* Background color */
| |
| color: #ffffff !important; /* Text color */
| |
| }
| |
| | |
| .vector-menu-tabs-legacy a:hover {
| |
| background-color: #4b4e54 !important; /* Hover color */
| |
| }
| |
| | |
| /* Edit form */ | |
| .mw-editform .editOptions {
| |
| background-color: #1f2024 !important;
| |
| }
| |
| | |
| /* Text input widget */ | |
| .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input { | |
| background-color: #27292d !important;
| |
| color: #ffffff !important; /* Sets text color to white */
| |
| }
| |
| | |
| /* Edit text box */
| |
| .mw-editform #wpTextbox1 { | |
| background-color: #1f2024 !important;
| |
| }
| |
| | |
| /* Dropdown handle normal and hover effect */
| |
| .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle, | |
| .oo-ui-dropdownWidget.oo-ui-widget-enabled .oo-ui-dropdownWidget-handle:hover {
| |
| background-color: #27292d !important; /* Dark color based on your color scheme */
| |
| }
| |
| | |
| /* Indicator Down Element Color */
| |
| .oo-ui-indicatorElement-indicator .oo-ui-indicator-down {
| |
| color: #ffffff !important; /* Sets color to white */
| |
| }
| |
| | |
| /* Dark background with white text for specific widget */
| |
| .oo-ui-widget.oo-ui-widget-enabled.oo-ui-labelElement.oo-ui-optionWidget.oo-ui-decoratedOptionWidget.oo-ui-menuOptionWidget {
| |
| background-color: #27292d !important; /* Dark background */
| |
| color: #ffffff !important; /* White text */
| |
| }
| |
| | |
| /* Background color for search profile tabs */
| |
| .mw-search-profile-tabs {
| |
| background-color: #27292d !important; /* Setting the color to #27292d */
| |
| }
| |
| | |
| /* mw-changeslist-legend background and text color */
| |
| .mw-changeslist-legend {
| |
| background-color: #1f2024 !important; /* Consistent dark background */
| |
| color: #ffffff !important; /* White text color */
| |
| }
| |
| | |
| /* Vector menu dropdown item background */
| |
| .vector-menu-dropdown .mw-list-item a:not(.vector-icon) {
| |
| background-color: #1f2024 !important; /* Dark background */
| |
| color: #ffffff !important; /* White text */
| |
| }
| |
| | |
| /* Dark mode style for mw-widget-dateInputWidget-handle */
| |
| .mw-widget-dateInputWidget-handle {
| |
| background-color: #1f2024 !important; /* Dark background */
| |
| color: #ffffff !important; /* White text */
| |
| }
| |