User:FakerofDeadlock/common.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Global background and text color */
/* Global background and text color */
body, #content, #bodyContent, .mw-body, .mw-body-content, .mw-page-container {
body, #content, #bodyContent, .mw-body, .mw-body-content, .mw-page-container {
     background-color: #f4e2d0 !important;  /* Tan background */
     background-color: #f3e2c7 !important;  /* Lighter tan background */
     color: #333333 !important;  /* Dark text */
     color: #3a2e2b !important;  /* Dark brown text */
}
}


/* Sidebar specific styling (already applied, but included for completeness) */
/* Sidebar specific styling */
#mw-panel {
#mw-panel, .vector-menu-content {
     background-color: #f4e2d0 !important;
     background-color: #d1bfa3 !important; /* Darker tan/brown sidebar */
     color: #333333 !important;
     color: #3a2e2b !important; /* Dark brown text */
}
}


/* Header styling */
/* Header styling */
#p-logo, .page-header, .mw-header {
#p-logo, .page-header, .mw-header {
     background-color: #f4e2d0 !important;
     background-color: #f3e2c7 !important;
     color: #333333 !important;
     color: #3a2e2b !important;
}
}


/* Ensure all headings use the correct color */
/* Ensure all headings use the correct color */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
     color: #333333 !important;
     color: #3a2e2b !important;
}
}


Line 33: Line 33:
/* Footer and other containers */
/* Footer and other containers */
#footer, .footer, .mw-footer, .footer-places {
#footer, .footer, .mw-footer, .footer-places {
     background-color: #f4e2d0 !important;
     background-color: #f3e2c7 !important;
     color: #333333 !important;
     color: #3a2e2b !important;
}
}


/* Input and form fields */
/* Input and form fields */
input, textarea, select {
input, textarea, select {
     background-color: #f4e2d0 !important;
     background-color: #f3e2c7 !important;
     color: #333333 !important;
     color: #3a2e2b !important;
}
}


/* Ensure tables and infoboxes are styled */
/* Ensure tables and infoboxes are styled */
table, th, td {
table, th, td {
     background-color: #f4e2d0 !important;
     background-color: #f3e2c7 !important;
     color: #333333 !important;
     color: #3a2e2b !important;
}
}


/* Special elements like navigation boxes */
/* Special elements like navigation boxes */
.navbox, .toc, .infobox, .wikitable {
.navbox, .toc, .infobox, .wikitable {
     background-color: #f4e2d0 !important;
     background-color: #f3e2c7 !important;
     color: #333333 !important;
     color: #3a2e2b !important;
}
}

Revision as of 20:38, 30 August 2024

/* Global background and text color */
body, #content, #bodyContent, .mw-body, .mw-body-content, .mw-page-container {
    background-color: #f3e2c7 !important;  /* Lighter tan background */
    color: #3a2e2b !important;  /* Dark brown text */
}

/* Sidebar specific styling */
#mw-panel, .vector-menu-content {
    background-color: #d1bfa3 !important;  /* Darker tan/brown sidebar */
    color: #3a2e2b !important;  /* Dark brown text */
}

/* Header styling */
#p-logo, .page-header, .mw-header {
    background-color: #f3e2c7 !important;
    color: #3a2e2b !important;
}

/* Ensure all headings use the correct color */
h1, h2, h3, h4, h5, h6 {
    color: #3a2e2b !important;
}

/* Styling for links */
a {
    color: #8b4513 !important;  /* SaddleBrown links */
}

a:visited {
    color: #a0522d !important;  /* Sienna visited links */
}

/* Footer and other containers */
#footer, .footer, .mw-footer, .footer-places {
    background-color: #f3e2c7 !important;
    color: #3a2e2b !important;
}

/* Input and form fields */
input, textarea, select {
    background-color: #f3e2c7 !important;
    color: #3a2e2b !important;
}

/* Ensure tables and infoboxes are styled */
table, th, td {
    background-color: #f3e2c7 !important;
    color: #3a2e2b !important;
}

/* Special elements like navigation boxes */
.navbox, .toc, .infobox, .wikitable {
    background-color: #f3e2c7 !important;
    color: #3a2e2b !important;
}