MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 14: | Line 14: | ||
} | } | ||
body { | |||
background-color: #66023C !important; | |||
color: white !important; /* Text color for contrast */ | |||
} | |||
#content { | |||
background-color: #66023C !important; | |||
color: white !important; /* Keep text visible */ | |||
} | |||
/* | /* ===== HEADER & TOP BAR ===== */ | ||
#mw-page-base, | |||
#mw-head-base, | |||
#mw-head, | |||
#p-personal, | |||
.vector-menu-tabs { | |||
background-color: #66023C !important; | |||
} | |||
/* ===== SIDEBAR ===== */ | |||
#mw-panel { | #mw-panel { | ||
background-color: #66023C; /* Tyrian | background-color: #66023C !important; | ||
} | |||
/* ===== LINKS ===== */ | |||
a { | |||
color: #FFD700 !important; /* Gold for contrast */ | |||
} | |||
a:visited { | |||
color: #FFB700 !important; | |||
} | |||
/* ===== FOOTER ===== */ | |||
#footer { | |||
background-color: #66023C !important; | |||
color: white !important; | |||
} | |||
/* Tab background for active and inactive states */ | |||
.vectorTabs li a, | |||
.vectorTabs li a:visited { | |||
background-color: #66023C !important; /* Tyrian purple */ | |||
color: #FFD700 !important; /* Gold text */ | |||
border: none !important; | |||
} | } | ||
/* | /* Hover state */ | ||
.vectorTabs li a:hover { | |||
# | background-color: #7A2B52 !important; /* Slightly lighter purple */ | ||
color: # | color: #FFD700 !important; /* Keep gold text */ | ||
} | } | ||
/* | /* Active tab */ | ||
.vectorTabs li.selected a, | |||
color: # | .vectorTabs li.selected a:visited { | ||
background-color: #4E012B !important; /* Darker purple for active */ | |||
color: #FFD700 !important; | |||
} | } |
Revision as of 17:21, 12 August 2025
/* CSS placed here will be applied to all skins */ /* Resize the site logo */ .mw-wiki-logo { background-size: contain !important; width: 160px !important; /* adjust width */ height: 160px !important; /* adjust height */ } /* Center it nicely */ .mw-wiki-logo { background-position: center !important; background-repeat: no-repeat !important; } body { background-color: #66023C !important; color: white !important; /* Text color for contrast */ } #content { background-color: #66023C !important; color: white !important; /* Keep text visible */ } /* ===== HEADER & TOP BAR ===== */ #mw-page-base, #mw-head-base, #mw-head, #p-personal, .vector-menu-tabs { background-color: #66023C !important; } /* ===== SIDEBAR ===== */ #mw-panel { background-color: #66023C !important; } /* ===== LINKS ===== */ a { color: #FFD700 !important; /* Gold for contrast */ } a:visited { color: #FFB700 !important; } /* ===== FOOTER ===== */ #footer { background-color: #66023C !important; color: white !important; } /* Tab background for active and inactive states */ .vectorTabs li a, .vectorTabs li a:visited { background-color: #66023C !important; /* Tyrian purple */ color: #FFD700 !important; /* Gold text */ border: none !important; } /* Hover state */ .vectorTabs li a:hover { background-color: #7A2B52 !important; /* Slightly lighter purple */ color: #FFD700 !important; /* Keep gold text */ } /* Active tab */ .vectorTabs li.selected a, .vectorTabs li.selected a:visited { background-color: #4E012B !important; /* Darker purple for active */ color: #FFD700 !important; }