MediaWiki:Vector.css: Difference between revisions

From PLC Wiki

(Created page with "→‎All CSS here will be loaded for users of the Vector skin: →‎Change background color: body { background-color: #f4f4f4; } →‎Customize the sidebar: #mw-panel { background-color: #333; color: #fff; } →‎Style the search box: #p-search { background-color: #eee; border: 1px solid #ccc; } →‎Hide the footer icons: #footer-icons { display: none; }")
 
No edit summary
Tag: Manual revert
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* All CSS here will be loaded for users of the Vector skin */
/* Change background color */
body {
    background-color: #f4f4f4;
}
/* Customize the sidebar */
#mw-panel {
    background-color: #333;
    color: #fff;
}
/* Style the search box */
#p-search {
    background-color: #eee;
    border: 1px solid #ccc;
}
/* Hide the footer icons */
#footer-icons {
    display: none;
}

Latest revision as of 10:38, 30 October 2024

/* All CSS here will be loaded for users of the Vector skin */