Jump to content

The wiki is in the process of updating to the latest major game changes. Any contributions are appreciated!
Start here to learn how to edit and join our Discord server to make suggestions.

User:FakerofDeadlock/common.css: Difference between revisions

From The Deadlock Wiki
No edit summary
No edit summary
Line 1: Line 1:
body {
/* Global background and text color */
     background-color: #f4e2d0; /* Tan background */
body, #content, #bodyContent, .mw-body, .mw-body-content, .mw-page-container {
     color: #333333; /* Dark text */
     background-color: #f4e2d0 !important; /* Tan background */
     color: #333333 !important; /* Dark text */
}
}


/* Sidebar specific styling (already applied, but included for completeness) */
#mw-panel {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}
/* Header styling */
#p-logo, .page-header, .mw-header {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}
/* Ensure all headings use the correct color */
h1, h2, h3, h4, h5, h6 {
    color: #333333 !important;
}
/* Styling for links */
a {
a {
     color: #8b4513; /* SaddleBrown links */
     color: #8b4513 !important; /* SaddleBrown links */
}
}


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


/* Additional elements like headers, navigation bars, etc. */
/* Footer and other containers */
#footer, .footer, .mw-footer, .footer-places {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}
 
/* Input and form fields */
input, textarea, select {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}
 
/* Ensure tables and infoboxes are styled */
table, th, td {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}
 
/* Special elements like navigation boxes */
.navbox, .toc, .infobox, .wikitable {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}

Revision as of 20:36, 30 August 2024

/* Global background and text color */
body, #content, #bodyContent, .mw-body, .mw-body-content, .mw-page-container {
    background-color: #f4e2d0 !important;  /* Tan background */
    color: #333333 !important;  /* Dark text */
}

/* Sidebar specific styling (already applied, but included for completeness) */
#mw-panel {
    background-color: #f4e2d0 !important;
    color: #333333 !important;
}

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

/* Ensure all headings use the correct color */
h1, h2, h3, h4, h5, h6 {
    color: #333333 !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: #f4e2d0 !important;
    color: #333333 !important;
}

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

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

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