MediaWiki:Common.css: Difference between revisions

From Rockford Makerspace
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: #toc { float: right };")
 
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
#toc { float: right };
#toc { float: right; }
 
.tooltype-Red {
background-color:pink;
padding:10px;
border:solid;
border-color:red;
width:200px;
}
 
.tooltype-Yellow {
background-color:lightyellow;
padding:10px;
border:solid;
border-color:orange;
width:200px;
}
 
.tooltype-Green {
background-color:palegreen;
padding:10px;
border:solid;
border-color:green;
width:200px;
}

Latest revision as of 16:14, 14 August 2023

/* CSS placed here will be applied to all skins */
#toc { float: right; }

.tooltype-Red {
	background-color:pink;
	padding:10px;
	border:solid;
	border-color:red;
	width:200px;
}

.tooltype-Yellow {
	background-color:lightyellow;
	padding:10px;
	border:solid;
	border-color:orange;
	width:200px;
}

.tooltype-Green {
	background-color:palegreen;
	padding:10px;
	border:solid;
	border-color:green;
	width:200px;
}