MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Krayfishkarl (talk | contribs) No edit summary |
Krayfishkarl (talk | contribs) No edit summary |
||
| Line 32: | Line 32: | ||
{ | { | ||
background-color: RGB(238, 208, 223); | background-color: RGB(238, 208, 223); | ||
} | |||
/* SEARCH BOX MODIFICATION */ | |||
/* SEARCH BOX Edits the physical look of the box, change the RGBA values to get the box easily visible. Also accept HTML standard colors, RGB, or #HEX. Color changes the text color in the box when typing. */ | |||
#simpleSearch input{ | |||
background-color: rgba(255,255,255,0.45); | |||
border: 2px solid rgba(59,88,191,1); | |||
color: rgb(40,40,40); | |||
} | |||
/* SEARCH BOX Placeholder text color when the search box is empty. */ | |||
#simpleSearch input::placeholder{ | |||
color: white; | |||
} | } | ||
Revision as of 19:28, 1 January 2022
/* CSS placed here will be applied to all skins */
/* Infobox alignment*/
.infobox { float: right; }
/* Hide Main Page Title */
body.page-Main_Page h1 { display: none; }
/* ---Edits the top header--- */
div#mw-page-base {
background: none
}
/* -Background Border- */
html, body {
background: #cc99ff;
}
/* -Body Content- */
div.mw-body
{
background-color: RGB(238, 208, 223);
color: #000000;
}
div.mw-body-content
{
background-color: RGB(238, 208, 223);
}
table.mp-topbanner
{
background-color: RGB(238, 208, 223);
}
/* SEARCH BOX MODIFICATION */
/* SEARCH BOX Edits the physical look of the box, change the RGBA values to get the box easily visible. Also accept HTML standard colors, RGB, or #HEX. Color changes the text color in the box when typing. */
#simpleSearch input{
background-color: rgba(255,255,255,0.45);
border: 2px solid rgba(59,88,191,1);
color: rgb(40,40,40);
}
/* SEARCH BOX Placeholder text color when the search box is empty. */
#simpleSearch input::placeholder{
color: white;
}