MediaWiki:Common.css: Difference between revisions

From Noe's Woes
Jump to: navigation, search
No edit summary
No edit summary
Line 7: Line 7:
}
}


/* Links */
/* Links - Brighter Blue */
a {
a {
color: #1e90ff; /* Bright blue for links */
color: #56b1f7; /* Brighter blue for links */
}
}


a:visited {
a:visited {
color: #636363; /* Slightly dimmer color for visited links */
color: #8c8c8c; /* Slightly dimmer color for visited links */
}
}


a:hover {
a:hover {
color: #4fa3f7; /* Lighter blue when hovering over links */
color: #85c1f7; /* Even lighter blue when hovering over links */
}
}


Line 28: Line 28:
/* Sidebar */
/* Sidebar */
#p-sidebar {
#p-sidebar {
background-color: #1f1f1f; /* Same dark*
background-color: #1f1f1f; /* Same dark background for sidebar */
color: #e0e0e0; /* Light text in the sidebar */
}

/* Footer */
#footer {
background-color: #1f1f1f; /* Dark background for footer */
color: #e0e0e0; /* Light text in the footer */
}

/* Content Section */
#content {
background-color: #181818; /* Dark background for content */
color: #e0e0e0; /* Light text color */
}

/* Article Links */
#content a {
color: #56b1f7; /* Brighter blue links in content */
}

#content a:hover {
color: #85c1f7; /* Lighter blue hover effect for links */
}

/* Tables */
table {
background-color: #202020; /* Dark background for tables */
color: #e0e0e0; /* Light text in table rows */
}

table th,
table

Revision as of 12:48, 23 March 2025

/* Dark Mode Global Styles */

/* General Body Styles */
body {
    background-color: #121212;  /* Very dark background */
    color: #e0e0e0;  /* Light gray text */
}

/* Links - Brighter Blue */
a {
    color: #56b1f7; /* Brighter blue for links */
}

a:visited {
    color: #8c8c8c; /* Slightly dimmer color for visited links */
}

a:hover {
    color: #85c1f7;  /* Even lighter blue when hovering over links */
}

/* Navigation Bar (Top Menu) */
#p-navigation {
    background-color: #1f1f1f;  /* Dark background for the navigation bar */
    color: #e0e0e0;  /* Light text in the navigation */
}

/* Sidebar */
#p-sidebar {
    background-color: #1f1f1f;  /* Same dark background for sidebar */
    color: #e0e0e0;  /* Light text in the sidebar */
}

/* Footer */
#footer {
    background-color: #1f1f1f;  /* Dark background for footer */
    color: #e0e0e0;  /* Light text in the footer */
}

/* Content Section */
#content {
    background-color: #181818;  /* Dark background for content */
    color: #e0e0e0;  /* Light text color */
}

/* Article Links */
#content a {
    color: #56b1f7;  /* Brighter blue links in content */
}

#content a:hover {
    color: #85c1f7;  /* Lighter blue hover effect for links */
}

/* Tables */
table {
    background-color: #202020;  /* Dark background for tables */
    color: #e0e0e0;  /* Light text in table rows */
}

table th,
table