MediaWiki:Common.css: Difference between revisions

From Instructional Technologies
No edit summary
No edit summary
Line 1: Line 1:
.sidebar-toc-title {
visibility: hidden;
}
/*Paragraph style*/
/*Paragraph style*/
* {
* {
font-family: Tahoma, System sans-serif;  
font-family: Tahoma, System sans-serif;  
}
}


/*Body styling*/
/*Body styling*/
Line 9: Line 14:
}
}


/*TOC container font size*/
html .mw-table-of-contents-container  {
font-size: 85%;
}


/* Heading and section styles*/
/* Heading and section styles*/
Line 22: Line 23:
h3 {
h3 {
overflow: auto;
overflow: auto;
margin-left: 5px;
}
}


h4, h5, h6 {
h4, h5, h6 {
overflow: auto;
overflow: auto;
margin-left: 10px;
}
}


Line 81: Line 80:
hr {
hr {
border-top: 1px  solid rgb(200,216,228);
border-top: 1px  solid rgb(200,216,228);
}
/*TOC container styling*/
html .mw-table-of-contents-container  {
font-size: 85%;
}
}

Revision as of 16:35, 11 January 2023

.sidebar-toc-title {
	visibility: hidden;
}

/*Paragraph style*/
* {
	font-family: Tahoma, System sans-serif; 
}


/*Body styling*/
html {
	font-size: 125%;
}


/* Heading and section styles*/
h2 {
	overflow: auto;
	font-weight: bold;
}

h3 {
	overflow: auto;
}

h4, h5, h6 {
	overflow: auto;
}

h2, h3, h4, h5, h6 {
	padding-top: 1.5em;
}

.mw-body-content h2 {
	line-height:1.85;
}

.vector-body h3 {
    margin-bottom: 0;
   	line-height: 1.25;
	font-size: 1.25em;
	padding-bottom: .5em;
}

.vector-body h4 {
    margin-bottom: 0;
	line-height: 1.25;
	font-size: 1.25em;
	padding-bottom: .5em;
}

.vector-body h5, .vector-body h6 {
    margin-bottom: 0;
	line-height: 1.25;
	font-size: 1.15em;
	padding-bottom: .5em;
}


/* Horizontal line styles*/
h2 {
    border-bottom: 6px solid #66D09A;
}
h3 {
    border-bottom: 5px solid #D5E6B1;
}
h4 {
    border-bottom: 4px solid #F8A97A;
}

h5 {
    border-bottom: 3px solid #F8A97A;
}

h6 {
    border-bottom: 2px solid #F8A97A;
}

hr {
	border-top: 1px  solid rgb(200,216,228);
}


/*TOC container styling*/
html .mw-table-of-contents-container  {
	font-size: 85%;
}