MediaWiki: Common.css: Difference between revisions
From The Common People
								|  (Created page with "→CSS placed here will be applied to all skins:  body {     background-color: black;     color: #ADD8E6; →Light blue color:      font-family: Arial, Helvetica, sans-serif;     font-size: 200%; →Double the font size:  }  →Ensure links are visible on the dark background:  a {     color: #00BFFF; →Deep sky blue for links:  }  a:visited {     color: #87CEFA; →Light sky blue for visited links:  }  →Adjust headings if needed:  h1, h2, h3, h4, h5, h6 {     c...") | 
| (No difference) | 
Latest revision as of 15:04, 23 July 2024
/* CSS placed here will be applied to all skins */
body {
    background-color: black;
    color: #ADD8E6; /* Light blue color */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200%; /* Double the font size */
}
/* Ensure links are visible on the dark background */
a {
    color: #00BFFF; /* Deep sky blue for links */
}
a:visited {
    color: #87CEFA; /* Light sky blue for visited links */
}
/* Adjust headings if needed */
h1, h2, h3, h4, h5, h6 {
    color: #E0FFFF; /* Light cyan for headings */
}
/* Ensure input fields and buttons are readable */
input, select, textarea, button {
    background-color: #2F4F4F; /* Dark slate gray */
    color: #E0FFFF; /* Light cyan */
    font-size: 100%; /* Reset font size for form elements */
}
/* Adjust the search input if needed */
#searchInput {
    background-color: #2F4F4F;
    color: #E0FFFF;
}