Difference between revisions of "Template:Navbox/styles.css"

From Nookipedia, the Animal Crossing wiki
(Creating styles sheet)
 
m (increasing size of secondary list by 5%)
Line 29: Line 29:
 
}
 
}
 
.mw-body-content .hlist li li {
 
.mw-body-content .hlist li li {
font-size: 80%;
+
font-size: 85%;
 
}
 
}
 
.mw-body-content .hlist li li:first-child::before {
 
.mw-body-content .hlist li li:first-child::before {

Revision as of 04:51, May 18, 2024

/*==================================================
[[Category:Navbox templates]]
Converts ul list to a vertical row
Code imported from Minecraft Wiki, licensed under CC-BY-NC-SA 3.0
The list of authors can be found here: https://minecraft.wiki/w/MediaWiki:Gadget-site-styles.css?action=history
==================================================*/

.mw-body-content .hlist ul {
	display: inline;
	margin: 0;
	padding: 0;
	font-size: 0.95em;
}
.mw-body-content .hlist li {
	display: inline;
}
.mw-body-content .hlist li:not(:last-child) {
	padding-right: 0.286em;
}
.mw-body-content .hlist li:not(:last-child)::after {
	content: "";
	display: inline-block;
	position: relative;
	left: 0.286em;
	bottom: 0.214em;
	background-color: #000;
	height: 3px;
	width: 3px;
}
.mw-body-content .hlist li li {
	font-size: 85%;
}
.mw-body-content .hlist li li:first-child::before {
	content: "(";
	font-weight: normal;
}
.mw-body-content .hlist li li:last-child::after {
	content: ")";
	font-weight: normal;
}
.mw-body-content .hlist li li li {
	font-size: x-small;
}