MediaWiki:Mbhh.css: Difference between revisions

From Heroes of Might and Magic: Olden Era Official Wiki
No edit summary
No edit summary
 
(36 intermediate revisions by 2 users not shown)
Line 18: Line 18:
   color: dodgerblue !IMPORTANT;
   color: dodgerblue !IMPORTANT;
}
}
a.new {
a.new {
   color: palevioletred !IMPORTANT;
   color: palevioletred !IMPORTANT;
}
/*Selflinks are colored as normal text rather than links.*/
.mw-selflink {
    color: inherit !IMPORTANT;
    cursor: default;
}
}


.tabber__tab, a.tabber__tab, a.tabber__tab:visited {
.tabber__tab, a.tabber__tab, a.tabber__tab:visited {
margin-left: auto;
margin-left: 25px;
margin-right: auto;
margin-right: 25px;
width: 50%;
text-align: center;
text-align: center;
justify-content: center
justify-content: center;
}
}


.tabber {
.tabber__tabs {
    display: flex !important;
flex-wrap: wrap;
    flex-direction: column !important; /* Stack tabs vertically */
justify-content: center;
width: 100%;
}
}


.tabber .tabbertab {
/*Arrows at Special:RecentChanges*/
    display: block !important; /* Ensure each tab is treated as a block */
.mw-enhancedchanges-checkbox + * .mw-enhancedchanges-arrow {
    width: 100% !important; /* Full width of the container */
  background-color: #fff;
    margin-bottom: 5px !important; /* Add some space between tabs */
    box-sizing: border-box !important; /* Include padding in the width */
}
}


.tabbernav li a {
/*Sortable tables look same as usual wikitables*/
     padding: 0px 0.5em !important;
table.wikitable.sortable th {
     margin-left: 0px !important;
     background-color: inherit;
    color: #c8b36c;
     background-size: 28px 28px;
}
}

Latest revision as of 17:26, 29 April 2026

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

h1, h2, h3, strong, th {
    color: #c8b36c;
}

p, td, li, dd, b, caption {
    color: #bcb096;
}

a, a:link, .toctogglelabel {
   color: dodgerblue !IMPORTANT;
}

a.new {
   color: palevioletred !IMPORTANT;
}

/*Selflinks are colored as normal text rather than links.*/
.mw-selflink {
    color: inherit !IMPORTANT;
    cursor: default;
}

.tabber__tab, a.tabber__tab, a.tabber__tab:visited {
	margin-left: 25px;
	margin-right: 25px;
	text-align: center;
	justify-content: center;
}

.tabber__tabs {
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

/*Arrows at Special:RecentChanges*/
.mw-enhancedchanges-checkbox + * .mw-enhancedchanges-arrow {
   background-color: #fff;
}

/*Sortable tables look same as usual wikitables*/
table.wikitable.sortable th {
    background-color: inherit;
    color: #c8b36c;
    background-size: 28px 28px;
}