|
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 */
| |
| }
| |