Toggle menu
9
0
4
180
sampsphere.com
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 13:30, 20 December 2024 by Subs (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Common.css - Dark Theme for Star Citizen Skin */

/* General body styling */
body {
    background-color: #1B1B1B; /* Dark background */
    color: #C52A2A; /* Dark red main text */
}

/* Links */
a {
    color: #C52A2A; /* Dark red for links */
}

a:hover {
    color: #FF6464; /* Lighter red on hover */
}

/* Input boxes and text areas - WHITE BACKGROUND, BLACK TEXT */
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="search"], textarea {
    background-color: #FFFFFF; /* White background for input */
    color: #000000; /* Black text in input */
    border: 1px solid #C52A2A; /* Dark red border */
    padding: 5px; /* Add some padding */
    border-radius: 4px; /* Slightly rounded corners */
}

/* Edit box specifically */
textarea {
    background-color: #FFFFFF; /* White background for the edit area */
    color: #FFF; /* Black text in the edit area */
}

/* Style for buttons */
button, input[type="submit"], input[type="button"] {
    background-color: #C52A2A; /* Dark red background for buttons */
    color: #FFFFFF; /* White text on buttons */
    border: none; /* Remove default border */
    padding: 8px 16px; /* Add some padding */
    cursor: pointer; /* Change cursor on hover */
}

button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #FF6464; /* Lighter red on hover for buttons */
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #C52A2A; /* Dark red for headings */
}

/* Code blocks */
pre, code {
    background-color: #333333; /* Dark background for code */
    color: #FFFFFF; /* White text in code */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Spacing inside code blocks */
}

/* Navigation elements */
#mw-navigation {
    background-color: #282828; /* Darker background for navigation */
}

#mw-footer {
    background-color: #282828; /* Darker footer */
}