MediaWiki:Vector.css: Difference between revisions

From PLC Wiki

No edit summary
Tag: Manual revert
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 */
/* Set the background color */
body {
    background-color: #f9f9f9;
}
/* Customize sidebar color */
#mw-panel {
    background-color: #444;
    color: #fff;
}
/* Modify the search bar style */
#p-search {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}
/* Customize the main content area */
.mw-body {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
}

Revision as of 10:28, 30 October 2024

/* All CSS here will be loaded for users of the Vector skin */
/* Set the background color */
body {
    background-color: #f9f9f9;
}

/* Customize sidebar color */
#mw-panel {
    background-color: #444;
    color: #fff;
}

/* Modify the search bar style */
#p-search {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

/* Customize the main content area */
.mw-body {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
}