Difference between revisions of "MediaWiki:Common.css"

From Filtered, Archived, Gaslit Wiki
Jump to navigation Jump to search
Line 15: Line 15:
 
     background-color: #191919;  
 
     background-color: #191919;  
 
     color: #e6e6e6 !important; /* Force text color */
 
     color: #e6e6e6 !important; /* Force text color */
 +
    border: 2px solid #1e90ff; /* Blue border */
 
}
 
}
  
Line 27: Line 28:
 
#p-navigation {  
 
#p-navigation {  
 
     background-color: #202020;  
 
     background-color: #202020;  
 +
    border-bottom: 2px solid #1e90ff; /* Blue bottom border */
 
}
 
}
  
Line 44: Line 46:
 
.mw-parser-output .toc {
 
.mw-parser-output .toc {
 
     background-color: #343434;  
 
     background-color: #343434;  
     border: 1px solid #444241;  
+
     border: 2px solid #1e90ff; /* Blue border */
 
}
 
}
  
Line 50: Line 52:
 
/* HEADING STYLES            */
 
/* HEADING STYLES            */
 
/* ========================= */
 
/* ========================= */
 
+
h1, h2, h3 {
h1 {
 
 
     color: #e6e6e6 !important; /* Force heading colors */
 
     color: #e6e6e6 !important; /* Force heading colors */
}
+
     border-bottom: 2px solid #1e90ff; /* Blue border under headings */
 
+
     padding-bottom: 5px; /* Space between heading and content */
h2 {
 
     color: #e6e6e6 !important; /* Force Heading Colors */
 
}
 
 
 
h3 {
 
     color; #e6e6e6 !important; /* Force Heading Colors */
 
 
}
 
}
  
Line 79: Line 74:
 
#mw-head {
 
#mw-head {
 
     background-color: #202020;  
 
     background-color: #202020;  
 +
    border-bottom: 2px solid #1e90ff; /* Blue bottom border */
 
}
 
}
  
Line 95: Line 91:
  
 
.notable-members th, .notable-members td {
 
.notable-members th, .notable-members td {
     border: 2px solid #e6e6e6;  
+
     border: 2px solid #1e90ff; /* Blue border for table cells */
 
     color: #e6e6e6 !important; /* Force cell text color */
 
     color: #e6e6e6 !important; /* Force cell text color */
 
}
 
}
Line 113: Line 109:
 
/* GRADIENT MENU STYLES      */
 
/* GRADIENT MENU STYLES      */
 
/* ========================= */
 
/* ========================= */
/* Change background for the "Read," "Edit," and "View history" links */
 
 
.ca-menu {
 
.ca-menu {
 
     background: linear-gradient(to right, #252525, rgba(144, 183, 249, 0.5)); /* Fade effect */
 
     background: linear-gradient(to right, #252525, rgba(144, 183, 249, 0.5)); /* Fade effect */
 
}
 
}
  
/* Change text color for the links */
 
 
.ca-menu a {
 
.ca-menu a {
 
     color: #90b7f9 !important; /* Set the text color */
 
     color: #90b7f9 !important; /* Set the text color */
Line 136: Line 130:
 
/* Base tab style */
 
/* Base tab style */
 
.vectorTabs li {
 
.vectorTabs li {
     border: none !important; /* Remove borders */
+
     border: 2px solid #1e90ff !important; /* Blue border */
 
     margin: 0 !important; /* Remove margin */
 
     margin: 0 !important; /* Remove margin */
 
     padding: 0 !important; /* Remove padding */
 
     padding: 0 !important; /* Remove padding */
Line 146: Line 140:
 
     color: #e6e6e6 !important;
 
     color: #e6e6e6 !important;
 
     padding: 5px 10px !important; /* Adjust padding as needed */
 
     padding: 5px 10px !important; /* Adjust padding as needed */
     border: none !important; /* Ensure no borders */
+
     border: none !important; /* No border on links */
 
     border-radius: 0 !important; /* No rounded corners */
 
     border-radius: 0 !important; /* No rounded corners */
 
     text-decoration: none !important;
 
     text-decoration: none !important;
Line 188: Line 182:
 
/* Clear any potential issues with the container */
 
/* Clear any potential issues with the container */
 
.vectorTabs {
 
.vectorTabs {
    border: none !important; /* Ensure no border on the tab container */
 
 
     padding: 0; /* Remove padding */
 
     padding: 0; /* Remove padding */
     margin: 1; /* Remove margin */
+
     margin: 0; /* Remove margin */
 
     box-shadow: none !important; /* Ensure no shadow */
 
     box-shadow: none !important; /* Ensure no shadow */
 
}
 
}

Revision as of 06:42, 5 May 2025

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

/* ========================= */
/* BODY STYLES               */
/* ========================= */
body { 
    background: #202020; 
    color: #e6e6e6; /* Force text color */
}

/* ========================= */
/* CONTENT STYLES            */
/* ========================= */
#content { 
    background-color: #191919; 
    color: #e6e6e6 !important; /* Force text color */
    border: 2px solid #1e90ff; /* Blue border */
}

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

/* ========================= */
/* NAVIGATION MENU STYLES    */
/* ========================= */
#p-navigation { 
    background-color: #202020; 
    border-bottom: 2px solid #1e90ff; /* Blue bottom border */
}

/* Change color for all links in the navigation menu */
#p-navigation a {
    color: #90b7f9 !important; /* Set the default link color */
}

/* Change hover color for all links in the navigation menu */
#p-navigation a:hover {
    color: #955bc2; /* Set the hover color for links */
}

/* ========================= */
/* TABLE OF CONTENTS STYLES  */
/* ========================= */
.mw-parser-output .toc {
    background-color: #343434; 
    border: 2px solid #1e90ff; /* Blue border */
}

/* ========================= */
/* HEADING STYLES            */
/* ========================= */
h1, h2, h3 {
    color: #e6e6e6 !important; /* Force heading colors */
    border-bottom: 2px solid #1e90ff; /* Blue border under headings */
    padding-bottom: 5px; /* Space between heading and content */
}

/* ========================= */
/* LINK STYLES               */
/* ========================= */
a {
    color: #90b7f9; /* Set the default link color */
}

a:hover {
    color: #955bc2; /* Set the hover color for links */
}

/* ========================= */
/* TOP BAR STYLES            */
/* ========================= */
#mw-head {
    background-color: #202020; 
    border-bottom: 2px solid #1e90ff; /* Blue bottom border */
}

#mw-head a {
    color: #90b7f9; /* Force link color in top bar */
    padding: 5px 10px;
}

/* ========================= */
/* NOTABLE MEMBERS STYLES     */
/* ========================= */
.notable-members {
    background-color: #343434 !important; 
    color: #e6e6e6 !important; 
}

.notable-members th, .notable-members td {
    border: 2px solid #1e90ff; /* Blue border for table cells */
    color: #e6e6e6 !important; /* Force cell text color */
}

/* ========================= */
/* TOOLS SECTION STYLES      */
/* ========================= */
#p-tb a {
    color: #90b7f9; /* Set the default link color */
}

#p-tb a:hover {
    color: #955bc2; /* Set the hover color for links */
}

/* ========================= */
/* GRADIENT MENU STYLES      */
/* ========================= */
.ca-menu {
    background: linear-gradient(to right, #252525, rgba(144, 183, 249, 0.5)); /* Fade effect */
}

.ca-menu a {
    color: #90b7f9 !important; /* Set the text color */
}

/* ============================= */
/* Change color of visited links */
/* ============================= */
a:visited {
    color: #955bc2; /* Set the visited link color */
}

/* ========================================================================= */
/* THIS IS FOR THE "MAIN PAGE, VIEW, EDIT, READ" BARS ON THE TOP OF THE PAGE */
/* ========================================================================= */

/* Base tab style */
.vectorTabs li {
    border: 2px solid #1e90ff !important; /* Blue border */
    margin: 0 !important; /* Remove margin */
    padding: 0 !important; /* Remove padding */
}

/* Tab links */
.vectorTabs li a {
    background-color: #191919 !important; /* Dark base */
    color: #e6e6e6 !important;
    padding: 5px 10px !important; /* Adjust padding as needed */
    border: none !important; /* No border on links */
    border-radius: 0 !important; /* No rounded corners */
    text-decoration: none !important;
    display: inline-block; /* Ensure proper sizing */
    box-shadow: none !important; /* Remove shadows */
    transition: background-color 0.3s ease;
}

/* Hover effect */
.vectorTabs li a:hover {
    background-color: #212121 !important; /* Darker on hover */
    color: white !important;
}

/* Active tab style */
.vectorTabs li.selected a {
    background-color: #191919 !important;
    color: #cce4ff !important; /* Lighter text color */
    font-weight: bold !important;
}

/* Overlay effect for active tab */
.vectorTabs li.selected a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to top,
        rgba(30, 144, 255, 0.2),
        rgba(25, 25, 25, 0.8)
    );
    z-index: 0;
}

/* Ensure text is above the overlay */
.vectorTabs li.selected a > * {
    position: relative;
    z-index: 1;
}

/* Clear any potential issues with the container */
.vectorTabs {
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    box-shadow: none !important; /* Ensure no shadow */
}