MediaWiki:Common.css: Difference between revisions

From Sephardic Diaspora Wiki
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 */
}


/* Sidebar background color */
/* ===== 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 Purple */
     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;
}
}


/* Optional: make the sidebar text easier to read on dark background */
/* Hover state */
#mw-panel a,
.vectorTabs li a:hover {
#mw-panel .portal h3 {
    background-color: #7A2B52 !important; /* Slightly lighter purple */
     color: #fff !important;
     color: #FFD700 !important; /* Keep gold text */
}
}


/* Optional: change hover color for links in the sidebar */
/* Active tab */
#mw-panel a:hover {
.vectorTabs li.selected a,
     color: #FFD700 !important; /* gold hover for contrast */
.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;
}