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: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
Blanked the page
Tags: Blanking Manual revert
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* 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 */
}

Latest revision as of 09:00, 21 December 2024