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: Reverted
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;
}

Revision as of 09:34, 30 October 2024

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