Difference between revisions of "Common.css"
From PHCC
Line 6: | Line 6: | ||
#firstHeading { display:none; } | #firstHeading { display:none; } | ||
#tagline { display:none; } | #tagline { display:none; } | ||
+ | |||
+ | /* MB: Make headings look more like old theme, with hrule's under h2/h3's */ | ||
+ | h2:after | ||
+ | { | ||
+ | content:' '; | ||
+ | display:block; | ||
+ | border:2px solid black; | ||
+ | } | ||
+ | |||
+ | h3:after | ||
+ | { | ||
+ | content:' '; | ||
+ | display:block; | ||
+ | border:1px solid black; | ||
+ | } | ||
+ | |||
/* MB: copied from wikipedia, for *Extension:Usage_Statistics / | /* MB: copied from wikipedia, for *Extension:Usage_Statistics / |
Latest revision as of 04:28, 27 December 2016
/* <pre><nowiki> */
/* CSS placed here will be applied to all skins */
/* MB: hide page title, subtitle, and tagline (eg: "From PHCC") on each page */
#siteSub { display:none; }
#firstHeading { display:none; }
#tagline { display:none; }
/* MB: Make headings look more like old theme, with hrule's under h2/h3's */
h2:after
{
content:' ';
display:block;
border:2px solid black;
}
h3:after
{
content:' ';
display:block;
border:1px solid black;
}
/* MB: copied from wikipedia, for *Extension:Usage_Statistics /
/* Standard Navigationsleisten, aka box hiding thingy from .de. Documentation at [[Wikipedia:NavFrame]]. */
div.Boxmerge,
div.NavFrame {
margin: 0;
padding: 4px;
border: 1px solid #aaa;
text-align: center;
border-collapse: collapse;
font-size: 95%;
}
div.Boxmerge div.NavFrame {
border-style: none;
border-style: hidden;
}
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: #ccf;
position:relative;
}
div.NavFrame p {
font-size: 100%;
}
div.NavFrame div.NavContent {
font-size: 100%;
}
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%;
}
/* </nowiki></pre> */