MediaWiki:Common.css: Difference between revisions

From Instructional Technologies
No edit summary
No edit summary
Line 2: Line 2:
* {
* {
font-family: Tahoma, System sans-serif;  
font-family: Tahoma, System sans-serif;  
}
/*Body styling*/
.vector-body h2 {
    margin-top: 1.25em;
    font-size: 1.5em;
}
.mw-body h1, .mw-body-content h1, .mw-body-content h2 {
    margin-bottom: 0.25em;
    padding-left: 10px;
    font-family: Tahoma, system sans-serif;
    line-height: 1.5;
}
}



Revision as of 17:22, 4 January 2023

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

/*Body styling*/
.vector-body h2 {
    margin-top: 1.25em;
    font-size: 1.5em;
}
.mw-body h1, .mw-body-content h1, .mw-body-content h2 {
    margin-bottom: 0.25em;
    padding-left: 10px;
    font-family: Tahoma, system sans-serif; 
    line-height: 1.5;
}

/* Heading styles */
h1 {
	color: #FFF;
	font-weight: bold;
	text-align: left;
	padding: 10.0px;
	border-radius: 5.0px;
	background-color: #2B6777;
	overflow: auto;
}

h2 {
	color: rgb(0,0,0);
	font-weight: bold;
	text-align: left;
	margin-left: 8px;
	padding: 8.0px;
	border-radius: 5.0px;
	background-color: rgb(200,216,228);
	overflow: auto;
}

h3 {
	font-family: Verdana;
	color: rgb(255,255,255);
	font-size: 1.25em;
	font-weight: bold;
	text-align: left;
	margin-left: 12px;
	padding: 8.0px;
	border-radius: 10.0px;
	background-color: rgb(60,124,110);
	overflow: auto;
}

h4 {
	font-family: Verdana;
	color: rgb(60,124,110);
	font-size: 1.0em;
	font-weight: bold;
	text-align: left;
	margin-left: 16px;
	padding: 5.0px;
	border-radius: 7.0px;
	border-style: solid;
	border-width: 2.0px;
	border-color: rgb(242,242,242);
	overflow: auto;
}

h5, h6 {
	font-family: Verdana;
	color: #000;
	font-size: 1.0em;
	font-weight: bold;
	text-align: left;
	margin-left:16px;
	padding: 5.0px;
	overflow: auto;
}
/* Horizontal line style */
hr {
	border: 3.0px solid rgb(200,216,228);
}