Difference between revisions of "MediaWiki:Common.css"

From S.H.O.
Jump to: navigation, search
Line 2: Line 2:
  
 
body.page-HQ.action-view h1.firstHeading, body.page-HQ.action-submit h1.firstHeading { display: none; }
 
body.page-HQ.action-view h1.firstHeading, body.page-HQ.action-submit h1.firstHeading { display: none; }
 +
 +
#content {
 +
    color:#000000;
 +
    font: large Verdana,Tahoma;
 +
    font-size:123%;
 +
    margin: 2.3em 1.0em 0 10.5em;  /* top right bottom left */
 +
    border-right: 1px solid #aaaaaa;
 +
}
  
 
.tocnumber { display: none; }
 
.tocnumber { display: none; }
Line 15: Line 23:
 
   border-right: 1px solid #A7D7F9;
 
   border-right: 1px solid #A7D7F9;
 
}
 
}
 +
 
/* Prevent sidewards scrolling in pre elements */
 
/* Prevent sidewards scrolling in pre elements */
 
pre {
 
pre {

Revision as of 13:11, 23 April 2016

/* CSS placed here will be applied to all skins */

body.page-HQ.action-view h1.firstHeading, body.page-HQ.action-submit h1.firstHeading { display: none; }

#content {
    color:#000000;
    font: large Verdana,Tahoma;
    font-size:123%;
    margin: 2.3em 1.0em 0 10.5em;  /* top right bottom left */
    border-right: 1px solid #aaaaaa;
}

.tocnumber { display: none; }

/* Fix sidebar */
div#mw-panel { position: fixed;
  overflow: auto;
  top: 0px;
  bottom: 0px;
  height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #F6F6F6;
  border-right: 1px solid #A7D7F9;
}

/* Prevent sidewards scrolling in pre elements */
pre {
  overflow: auto;
  max-height: 25em;
}