More actions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
/* Dark | /* Common.css - Dark Theme for Star Citizen Skin */ | ||
/* | /* General body styling */ | ||
body { | body { | ||
background-color: # | background-color: #1B1B1B; /* Dark background */ | ||
color: # | color: #C52A2A; /* Dark red main text */ | ||
} | } | ||
/* Links */ | /* Links */ | ||
a { | a { | ||
color: # | color: #C52A2A; /* Dark red for links */ | ||
} | } | ||
a:hover { | a:hover { | ||
color: # | 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: # | background-color: #FFFFFF; /* White background for input */ | ||
color: # | 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: # | background-color: #C52A2A; /* Dark red background for buttons */ | ||
color: # | color: #FFFFFF; /* White text on buttons */ | ||
border: | border: none; /* Remove default border */ | ||
padding: | 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 */ | |||
background-color: # | |||
} | } | ||
/* | /* Heading styles */ | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
color: # | color: #C52A2A; /* Dark red for headings */ | ||
/* | |||
} | } | ||
/* | /* Code blocks */ | ||
pre, code { | |||
background-color: #333333; /* Dark background for code */ | |||
background-color: # | color: #FFFFFF; /* White text in code */ | ||
color: # | border-radius: 5px; /* Rounded corners */ | ||
padding: 10px; /* Spacing inside code blocks */ | |||
} | } | ||
/* | /* Navigation elements */ | ||
#mw-navigation { | |||
color: # | background-color: #282828; /* Darker background for navigation */ | ||
} | } | ||
#mw-footer { | |||
background-color: #282828; /* Darker footer */ | |||
color: # | |||
} | } |
Revision as of 13:30, 20 December 2024
/* 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 */ }