Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
 
(201 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Set mw-head background color to match body */
/* Configure Numbering scheme */
#mw-head {
    background-color: #27292d !important;
}
}
 
ol {
/* Set sidebar background color to match mw-head */
list-style-type: decimal;  
 
body {
    background-color: #27292d !important;
}
}
 
ol li > ol {  
/* Change sidebar links and labels color to white */
list-style-type: lower-alpha;  
#mw-panel a,
#mw-panel h5 {
    color: #ffffff !important;
}
 
/* Change sidebar links and labels color to purple when clicked */
#mw-panel a:active,
#mw-panel a:hover,
#mw-panel a:focus,
#mw-panel h5:hover {
    color: ##ffffff !important;
}
}
 
ol li > ol li > ol {
/* Change sidebar menu headings (h3) color to white */
list-style-type: lower-roman;  
#mw-panel h3 {
    color: #ffffff !important;
}
}
 
/* Underline all links */
/* Change footer text color to white */
a {
#footer,
     text-decoration: underline;
#footer-info-lastmod,
#footer-places {
     color: #ffffff !important;
}
}


To change the text color in the #nm-navigation element to white, you can use the following CSS:
/* Load FontAwesome */
 
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
css
 
/* Change text color in nm-navigation to white */
#nm-navigation {
    color: #ffffff !important;
}

Latest revision as of 02:23, 13 November 2024

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

/* Configure Numbering scheme */
}
ol { 
	list-style-type: decimal; 
}
ol li > ol { 
	list-style-type: lower-alpha; 
}
ol li > ol li > ol { 
	list-style-type: lower-roman; 
}
/* Underline all links */
a {
    text-decoration: underline;
}

/* Load FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');