MediaWiki:Common.css: Difference between revisions

From UO Icebound
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Change the background color of the entire page */
/* Change the background color of the entire page */
body {
body {
     background-color: #111111 ; /* Dark background color */
     background-color: #111111; /* Dark background color */
     color: #AFACA8; /* Light font color */
     color: #AFACA8; /* Light font color */
}
/* Change the main page title */
.firstHeading {
    background-color: #111111; /* Background color (matches the body) */
    color: #AFACA8; /* Text color */
    padding: 10px; /* Optional: Add some padding */
}
/* Change the color and background of all headings (H1-H6) */
h1, h2, h3, h4, h5, h6 {
    color: #AFACA8; /* Text color */
    background-color: #111111; /* Background color */
    padding: 5px; /* Optional: Add some padding */
}
/* Change the color of section headlines */
.mw-headline {
    color: #AFACA8; /* Text color */
    background-color: #111111; /* Background color */
    padding: 5px; /* Optional: Add some padding */
}
}


/* Change link colors */
/* Change link colors */
a {
a {
     color: #5C6969; /* Link color */
     color: #AFACA8; /* Link color */
}
}


/* Change link hover color */
/* Change link hover color */
a:hover {
a:hover {
     color: #5C6969; /* Link hover color */
     color: #ffffff; /* Light color on hover for visibility */
}
}


/* Change background color of the content area */
/* Change background color of the content area */
.mw-body {
.mw-body {
     background-color: #121212 ; /* Slightly different background for the content */
     background-color: #111111; /* Slightly different background for the content */
}
}


/* Change sidebar background color and text */
#mw-panel {
    background-color: #111111; /* Background color */
    color: #AFACA8; /* Text color */
}


#mw-panel
/* Change tabs above pages (like view, edit, etc.) */
{
.vectorTabs {
     background-color: #111111 ;
     background-color: #111111; /* Background color */
     color: #AFACA8;
     color: #AFACA8; /* Text color */
}
}

Revision as of 15:16, 8 October 2024

/* Change the background color of the entire page */
body {
    background-color: #111111; /* Dark background color */
    color: #AFACA8; /* Light font color */
}

/* Change the main page title */
.firstHeading {
    background-color: #111111; /* Background color (matches the body) */
    color: #AFACA8; /* Text color */
    padding: 10px; /* Optional: Add some padding */
}

/* Change the color and background of all headings (H1-H6) */
h1, h2, h3, h4, h5, h6 {
    color: #AFACA8; /* Text color */
    background-color: #111111; /* Background color */
    padding: 5px; /* Optional: Add some padding */
}

/* Change the color of section headlines */
.mw-headline {
    color: #AFACA8; /* Text color */
    background-color: #111111; /* Background color */
    padding: 5px; /* Optional: Add some padding */
}

/* Change link colors */
a {
    color: #AFACA8; /* Link color */
}

/* Change link hover color */
a:hover {
    color: #ffffff; /* Light color on hover for visibility */
}

/* Change background color of the content area */
.mw-body {
    background-color: #111111; /* Slightly different background for the content */
}

/* Change sidebar background color and text */
#mw-panel {
    background-color: #111111; /* Background color */
    color: #AFACA8; /* Text color */
}

/* Change tabs above pages (like view, edit, etc.) */
.vectorTabs {
    background-color: #111111; /* Background color */
    color: #AFACA8; /* Text color */
}