Difference between revisions of "MediaWiki:Common.css"

From SCA Lochac
Jump to navigation Jump to search
Line 110: Line 110:
 
   width: 15em;
 
   width: 15em;
 
   height: 15em;
 
   height: 15em;
   top: -15em;
+
   top: -14.75em;
 
}
 
}
 
.mw-wiki-logo{
 
.mw-wiki-logo{

Revision as of 11:23, 23 July 2019

/* CSS placed here will be applied to all skins */
/* section-based ol numbering*/

body {
  counter-reset: h2Counter h3Counter h4Counter tableCounter;
}

.rulesNumbering h2 {
  counter-reset: h3Counter h4Counter;
  counter-increment: h2Counter;
}
.rulesNumbering h2:before {
  content: counter(page) "." counter(h2Counter) " ";
}

/* this is required to stop the 'contents' heading in the ToC from becoming '1 contents' */
#toctitle h2 {
counter-increment: none;
}
#toctitle h2:before {
  content: none;
}

.rulesNumbering h3 {
  counter-reset: h4Counter;
  counter-increment: h3Counter;
}
.rulesNumbering h3:before {
  content: counter(page) "." counter(h2Counter) "." counter(h3Counter) " ";
}

.rulesNumbering h4 {
  counter-increment: h4Counter;
}
.rulesNumbering h4:before {
  content: counter(page) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) " ";
}

/* styling for ordered lists */
.rulesNumbering ol {
  list-style-type: decimal;
}

.rulesNumbering ol>li>ol{
  list-style-type: lower-alpha;
}
.rulesNumbering ol>li>ol>li>ol{
  list-style-type: lower-roman;
}

.rulesNumbering ul{
  text-indent: 0px;
  list-style-type: circle;
}
.rulesNumbering ul>li>ul {
  text-indent: 0px;
  list-style-type: circle;
}
.rulesNumbering ul>li>ul>li>ul {
  text-indent: 0px;
  list-style-type: circle;
}

 caption:before {
  counter-increment: tableCounter;
  content: "Table ".counter(page) "." counter(tableCounter);
}


/* Giving table borders */
table.withBorders {
  border-collapse: collapse;
}
.withBorders, .withBorders th, .withBorders td {
  border: 2px solid black;
}

/* hide toolbox initially */
div#p-tb {
  visibility: hidden;
}


/* page styling */

div#mw-panel{
  margin-top:4em;
  width:15em;
  font-size: 1em;
}

div#content{
  margin-left: 16em;
}
div#left-navigation{
  margin-left: 16em;
  margin-top: 12.5em;
}
div#right-navigation{
  margin-top: 12.5em;
}
div#footer{
  margin-left: 16em;
}
div#mw-head-base {
  margin-left: 16em;
  height:15em;
}
div#p-logo {
  width: 15em;
  height: 15em;
  top: -14.75em;
}
.mw-wiki-logo{
   width: 15em !important;
   height: 15em !important;
}
div#mw-panel div.portal div.body ul li {
  font-size: 0.875em;
}
#p-personal{
  background: white;
}