From Wikipedia, the free encyclopedia
Content deleted Content added
|
|
|
||
| Line 26: | Line 26: | ||
|
color: #cccccc; |
color: #cccccc; |
||
|
} |
|||
|
/* Hide the default Wikipedia logo */ |
|||
|
.mw-logo { |
|||
|
visibility: hidden; |
|||
|
} |
|||
|
.mw-logo { |
|||
|
background-image: url(“https://your-image-url-here/your-new-logo.png”); |
|||
|
background-size: 100% auto; /* Adjusts image size to fit the space */ |
|||
|
background-repeat: no-repeat; |
|||
|
width: 50px; /* Set your logo’s width */ |
|||
|
height: 50px; /* Set your logo’s height */ |
|||
|
} |
} |
||
|
/* Apply terminal theme styling to the infobox, sidebar, and headers. |
/* Apply terminal theme styling to the infobox, sidebar, and headers. |
||
|
Group common styles together for better maintainability. */ |
Group common styles together for better maintainability. */ |
||
|
.table, .infobox, |
.table, .infobox, |
||
|
.infobox .infobox-title, .infobox-above, |
.infobox .infobox-title, .infobox-above, |
||
|
.infobox th, |
.infobox th, |
||
|
.vector-sitenavigation, |
.vector-sitenavigation, |
||
|
.vector-sitenavigation .sidebar-heading { |
.vector-sitenavigation .sidebar-heading { |
||
Latest revision as of 22:50, 14 October 2025
/*
=============================================
== GLOBAL STYLES: Terminal-style Dark Theme ==
=============================================
*/
/* Apply the dark background, green text, and monospace font universally */
body {
background-color: #000000 !important;
color: #00ff00 !important;
font-family: "Courier New", "Lucida Console", monospace !important;
}
/*
=========================
== WIKIPEDIA COMPONENT STYLES ==
=========================
*/
.mw-panel {
background-color: #000000;
color: #00ff00 !important;
}
/* Change the color of the navigation links when hovered over */
.mw-panel .mw-portlet a:hover {
color: #cccccc;
}
/* Apply terminal theme styling to the infobox, sidebar, and headers.
/* Group common styles together for better maintainability. */
.table, .infobox,
.infobox .infobox-title, .infobox-above,
.infobox th, .infobox vevent,
.vector-sitenavigation,
.vector-sitenavigation .sidebar-heading {
background-color: #000000;
color: #ff0000 !important;
font-family: "Courier New", "Lucida Console", monospace !important;
}
/* Ensure the sidebar list uses the correct theme colors */
.vector-sitenavigation .sidebar-list {
background-color: #000000;
color: #00ff00 !important;
}
/* Ensure other page elements (content, header, footer) use the theme */
.mw-body-content,
.vector-header-container,
.mw-footer {
background-color: #000000 !important;
color: #00ff00 !important;
}
/* Ensure links are green, both unvisited and visited */
a,
a:visited {
color: #00b300 !important;
}
/* Ensure main page title and section headings are green with the monospace font */
.mw-page-title-main,
.mw-body h1,
.mw-body h2,
.mw-body h3,
.mw-body h4,
.mw-body h5,
.mw-body h6 {
background-color: #000000 !important;
color: #00ff00 !important;
font-family: "Courier New", "Lucida Console", monospace !important;
}

