MediaWiki:Mbhh.css: Difference between revisions

From MENACE Official Wiki
mNo edit summary
mNo edit summary
Line 5: Line 5:
url(/MENACE/skins/MBHH/resources/images/shade-bottom.png?ff4a7),
url(/MENACE/skins/MBHH/resources/images/shade-bottom.png?ff4a7),
url(/MENACE/skins/MBHH/resources/images/game_bgs/MENACE.jpg?c288c3);
url(/MENACE/skins/MBHH/resources/images/game_bgs/MENACE.jpg?c288c3);
color: black; /* This sets the font color */
}
background-color: black;
 
#content {
    background-color: black;
}
}


Line 26: Line 28:
   p, td, li, dd, caption {
   p, td, li, dd, caption {
     color: #bcb096; /* game color for text is a green #778467, but it kinda distonates too much in the wiki */
     color: #bcb096; /* game color for text is a green #778467, but it kinda distonates too much in the wiki */
}
/* Change sidebar background color */
#mw-panel {
    background-color: #f0f0f0; /* Replace with your desired background color */
}
}


Line 37: Line 34:
#mw-panel .portlet,  
#mw-panel .portlet,  
#mw-panel .mw-portlet-body {
#mw-panel .mw-portlet-body {
     color: #333333; /* Replace with your desired text color */
     color: #c8b36c; /* Replace with your desired text color */
}
}



Revision as of 03:50, 20 October 2025

/* All CSS here will be loaded for users of the MBHH skin */
body {
background-image: url(/MENACE/skins/MBHH/resources/images/shade-right.png?9ba42),
url(/MENACE/skins/MBHH/resources/images/shade-left.png?30070),
url(/MENACE/skins/MBHH/resources/images/shade-bottom.png?ff4a7),
url(/MENACE/skins/MBHH/resources/images/game_bgs/MENACE.jpg?c288c3);
}

#content {
    background-color: black;
}

h1, h2, h3, strong, b, th {
    color: white;
}

a, a:link, .toctogglelabel {
    color: #c7aa3f;
}
a:active, a:hover, a:visited:hover, .toctogglelabel:hover {
    color: #c8b36c;
    text-decoration: underline;
}
a:visited {
    color: #c8b36c;
}

  p, td, li, dd, caption {
    color: #bcb096; /* game color for text is a green #778467, but it kinda distonates too much in the wiki */
}

/* Change sidebar text color */
#mw-panel .portal, 
#mw-panel .portlet, 
#mw-panel .mw-portlet-body {
    color: #c8b36c; /* Replace with your desired text color */
}

/* Change links color in the sidebar */
#mw-panel a {
    color: #c8b36c; /* Replace with your desired link color */
}

/* Optional: Change link color on hover */
#mw-panel a:hover {
    color: #c8b36c; /* Replace with your desired hover color */
}