Array

MediaWiki:Common.css: Difference between revisions

(added function to remove automatic numbering in table of contents)
(trying to remove bullet points from table of contents)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


.tocnumber { display: none; }
/* Removing the numbers and bullet points from table of contents */
.tocnumber {display: none}
::marker {display:none}


/* <source lang="css"> */
/* <source lang="css"> */

Revision as of 02:36, 6 April 2022

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

/* Removing the numbers and bullet points from table of contents */
.tocnumber {display: none}
::marker {display:none}

/* <source lang="css"> */

/* {{header}} */
table.headertemplate {
	width:100%;
	text-align:center;
	font-size:0.9em;
}
.headertemplate .header_backlink,
.headertemplate .header_forelink {
	width:20%;
	font-size:0.9em;
	line-height:normal;
}
.header_notes {
	width:100%;
	font-size:0.9em;
}
.headertemplate .header_title { width: 60%; }
.headertemplate .header_backlink { text-align:left; }
.headertemplate .header_forelink { text-align:right; }



/* </source> */