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

From Nookipedia, the Animal Crossing wiki
m (increasing size of secondary list by 5%)
(PanchamBro changed the content model of the page Template:Navbox/styles.css from "Sanitized CSS" to "CSS")
Tag: content model change
(No difference)

Revision as of 05:00, 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;
}