Difference between revisions of "MediaWiki:Common.css"

From Filtered, Archived, Gaslit Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  
/* Changes the background color of the bottom and left of each page, up to behind half of the logos: */
+
/* Set body text color */
 
body {  
 
body {  
 
     background: #252525;  
 
     background: #252525;  
     color: #e5e5e5; /* Change the default text color */
+
     color: #e6e6e6 !important; /* Force text color */
 
}
 
}
  
Line 10: Line 10:
 
#content {  
 
#content {  
 
     background-color: #252525;  
 
     background-color: #252525;  
 +
    color: #e6e6e6 !important; /* Force text color */
 
}
 
}
  
Line 17: Line 18:
 
}
 
}
  
/* Background color of the title of the navigation menu in the left column */
+
/* Navigation menu */
 
#p-navigation {  
 
#p-navigation {  
 
     background-color: #252525;  
 
     background-color: #252525;  
 
}
 
}
  
/* Changes color for contents table on main page */
+
/* Table of contents */
 
.mw-parser-output .toc {
 
.mw-parser-output .toc {
     background-color: #343434; /* Change to your desired background color */
+
     background-color: #343434;  
     border: 1px solid #444241; /* Optional: change border color */
+
     border: 1px solid #444241;  
 
}
 
}
  
/* Heading colors */
+
/* Headings */
 
h1, h2, h3 {
 
h1, h2, h3 {
     color: #e5e5e5; /* Change heading colors */
+
     color: #e6e6e6 !important; /* Force heading colors */
 
}
 
}
  
/* Link colors */
+
/* Links */
 
a {
 
a {
     color: #90b7f9; /* Change link color */
+
     color: #90b7f9;  
 
}
 
}
 
a:hover {
 
a:hover {
     color: #c70039; /* Change hover color for links */
+
     color: #c70039;  
 
}
 
}
  
 
/* Top bar */
 
/* Top bar */
 
#mw-head {
 
#mw-head {
     background-color: #252525; /* Change to your desired color */
+
     background-color: #252525;  
 
}
 
}
 
#mw-head a {
 
#mw-head a {
     color: #e5e5e5; /* Change link color in the top bar */
+
     color: #e6e6e6 !important; /* Force link color in top bar */
 
}
 
}
  
/* Change color for the “view, edit, history” bar */
+
/* View, edit, history bar */
 
#ca-view,  
 
#ca-view,  
 
#ca-edit,  
 
#ca-edit,  
 
#ca-history {
 
#ca-history {
     background-color: #7f7f7f; /* Change to your desired background color */
+
     background-color: #7f7f7f;  
     color: #e5e5e5; /* Change text color if needed */
+
     color: #e6e6e6 !important; /* Force text color */
 
}
 
}
  
 
/* Notable members table */
 
/* Notable members table */
 
.notable-members {
 
.notable-members {
     background-color: #343434 !important; /* Change to your desired color */
+
     background-color: #343434 !important;  
     color: #e5e5e5; /* Optional: set text color */
+
     color: #e6e6e6 !important;  
 
}
 
}
 
/* Changes color to grid lines for notable members */
 
 
.notable-members th, .notable-members td {
 
.notable-members th, .notable-members td {
     border: 2px solid #e6e6e6; /* Change this to your desired grid line color */
+
     border: 2px solid #e6e6e6;
 +
    color: #e6e6e6 !important; /* Force cell text color */
 
}
 
}

Revision as of 19:43, 4 May 2025

/* CSS placed here will be applied to all skins */

/* Set body text color */
body { 
    background: #252525; 
    color: #e6e6e6 !important; /* Force text color */
}

/* Background color of the content and title of pages */
#content { 
    background-color: #252525; 
    color: #e6e6e6 !important; /* Force text color */
}

/* Sets background color of the logo area  */
#p-logo { 
    background-color: #252525; 
}

/* Navigation menu */
#p-navigation { 
    background-color: #252525; 
}

/* Table of contents */
.mw-parser-output .toc {
    background-color: #343434; 
    border: 1px solid #444241; 
}

/* Headings */
h1, h2, h3 {
    color: #e6e6e6 !important; /* Force heading colors */
}

/* Links */
a {
    color: #90b7f9; 
}
a:hover {
    color: #c70039; 
}

/* Top bar */
#mw-head {
    background-color: #252525; 
}
#mw-head a {
    color: #e6e6e6 !important; /* Force link color in top bar */
}

/* View, edit, history bar */
#ca-view, 
#ca-edit, 
#ca-history {
    background-color: #7f7f7f; 
    color: #e6e6e6 !important; /* Force text color */
}

/* Notable members table */
.notable-members {
    background-color: #343434 !important; 
    color: #e6e6e6 !important; 
}
.notable-members th, .notable-members td {
    border: 2px solid #e6e6e6; 
    color: #e6e6e6 !important; /* Force cell text color */
}