MediaWiki:Common.css: Difference between revisions
From The Elite Wiki
HarryCoupe (talk | contribs) No edit summary |
HarryCoupe (talk | contribs) No edit summary |
||
(23 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
@import url("skin.css"); | @import url("skin.css"); | ||
/* Default skin for navigation boxes */ | /* Default skin for navigation boxes */ | ||
table.navbox { /* Navbox container style */ | table.navbox { /* Navbox container style */ | ||
width: 100%; | width: 100%; | ||
margin: auto; | margin: auto; | ||
clear: both; | clear: both; | ||
font-size: | font-size: 66%; | ||
text-align: center; | text-align: center; | ||
} | } | ||
.navbox-title, | .navbox-title, | ||
.navbox-abovebelow, | .navbox-abovebelow, | ||
Line 34: | Line 18: | ||
padding-right: 1em; | padding-right: 1em; | ||
} | } | ||
.navbox-group { /* Group style */ | .navbox-group { /* Group style */ | ||
white-space: nowrap; | white-space: nowrap; | ||
text-align: | text-align: center; | ||
font-weight: bold; | font-weight: bold; | ||
padding-left: 1em; | padding-left: 1em; | ||
padding-right: 1em; | padding-right: 1em; | ||
} | } | ||
Line 74: | Line 32: | ||
margin: 0; | margin: 0; | ||
padding: 4px; | padding: 4px; | ||
text-align: center; | text-align: center; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
Line 112: | Line 69: | ||
font-weight: normal; | font-weight: normal; | ||
font-size: 90%; | font-size: 90%; | ||
} | |||
.StuffImage{ | |||
width: auto; | |||
height: 100%; | |||
max-height: 37vh; | |||
} | } | ||
/* End */ | /* End */ | ||
Latest revision as of 11:46, 26 April 2022
/* CSS placed here will be applied to all skins */
@import url("skin.css");
/* Default skin for navigation boxes */
table.navbox { /* Navbox container style */
width: 100%;
margin: auto;
clear: both;
font-size: 66%;
text-align: center;
}
.navbox-title,
.navbox-abovebelow,
table.navbox th {
text-align: center; /* Title and above/below styles */
padding-left: 1em;
padding-right: 1em;
}
.navbox-group { /* Group style */
white-space: nowrap;
text-align: center;
font-weight: bold;
padding-left: 1em;
padding-right: 1em;
}
/* Code for div-based collapsing
* From [[wikipedia:MediaWiki:Common.css]] */
div.NavFrame {
margin: 0;
padding: 4px;
text-align: center;
border-collapse: collapse;
font-size: 95%;
}
div.NavFrame + div.NavFrame {
border-top-style: none;
border-top-style: hidden;
}
div.NavPic {
background-color: #fff;
margin: 0;
padding: 2px;
float: left;
}
div.NavFrame div.NavHead {
height: 1.6em;
font-weight: bold;
background-color: #F3A957; /* Level 1 color */
position: relative;
}
div.NavFrame p,
div.NavFrame div.NavContent,
div.NavFrame div.NavContent p {
font-size: 100%;
}
div.NavEnd {
margin: 0;
padding: 0;
line-height: 1px;
clear: both;
}
a.NavToggle {
position: absolute;
top: 0;
right: 3px;
font-weight: normal;
font-size: 90%;
}
.StuffImage{
width: auto;
height: 100%;
max-height: 37vh;
}
/* End */