MediaWiki:Common.css: Difference between revisions

From retromux
Jump to navigation Jump to search
Dread (talk | contribs)
Created page with "→‎CSS placed here will be applied to all skins: →‎Default tab appearance: .tabContainerTabs ul li { background-color: #3e2a67; →‎Dark purple: color: #ffca85; →‎Amber text: border-radius: 5px; padding: 5px 10px; margin-right: 5px; } →‎Active tab (selected): .tabContainerTabs ul li.current { background-color: #f28f38; →‎Warm gold: color: #1a0f2b; →‎Dark blue: font-weight: bold; } →‎Hover effect: .tabContainerTabs u..."
 
Dread (talk | contribs)
Tag: Replaced
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Default tab appearance */
.tabContainerTabs ul li {
    background-color: #3e2a67; /* Dark purple */
    color: #ffca85; /* Amber text */
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
}
/* Active tab (selected) */
.tabContainerTabs ul li.current {
    background-color: #f28f38; /* Warm gold */
    color: #1a0f2b; /* Dark blue */
    font-weight: bold;
}
/* Hover effect */
.tabContainerTabs ul li:hover {
    background-color: #7157a3; /* Mystic violet */
    color: #ffffff; /* White text */
}

Revision as of 21:27, 7 March 2025

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