Difference between revisions of "User:Lordanubarak/vector.css"
Jump to navigation
Jump to search
Lordanubarak (talk | contribs) m |
Lordanubarak (talk | contribs) m |
||
Line 16: | Line 16: | ||
/* Tables - alternating row colors */ | /* Tables - alternating row colors */ | ||
.wikitable tbody tr:nth-child(odd) { | |||
background-color: #23272a; /* darker shade for odd rows */ | background-color: #23272a; /* darker shade for odd rows */ | ||
} | } | ||
.wikitable tbody tr:nth-child(even) { | |||
background-color: #2c2f33; /* slightly lighter shade for even rows */ | background-color: #2c2f33; /* slightly lighter shade for even rows */ | ||
} | } | ||
.wikitable { | |||
color: #ffffff; | color: #ffffff; | ||
border-color: #7289da; /* blue border to match links */ | border-color: #7289da; /* blue border to match links */ | ||
} | } | ||
/* | /* Category links (bottom bar) */ | ||
#catlinks { | |||
background-color: #23272a; /* dark | background-color: #23272a; /* dark shade for the bar */ | ||
color: #ffffff; | color: #ffffff; | ||
} | } | ||
#catlinks a { | |||
color: #7289da; /* blue links in the category section */ | |||
} | } | ||
Revision as of 21:23, 29 September 2024
/* Background color similar to GPT/Youtube/Discord dark mode */ body, .mw-body, #content { background-color: #2c2f33; /* dark gray shade */ color: #ffffff; /* white text */ } /* Links */ a { color: #7289da; /* Discord link color */ } /* Headers */ h1, h2, h3, h4, h5, h6 { color: #ffffff; /* white for headers */ } /* Tables - alternating row colors */ .wikitable tbody tr:nth-child(odd) { background-color: #23272a; /* darker shade for odd rows */ } .wikitable tbody tr:nth-child(even) { background-color: #2c2f33; /* slightly lighter shade for even rows */ } .wikitable { color: #ffffff; border-color: #7289da; /* blue border to match links */ } /* Category links (bottom bar) */ #catlinks { background-color: #23272a; /* dark shade for the bar */ color: #ffffff; } #catlinks a { color: #7289da; /* blue links in the category section */ }