Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.
/* hide the edit section button */
h2 .mw-editsection,
h3 .mw-editsection {
	display: none;
}

/* increase the font size to xxx-large */
h2 .mw-headline {
	font-size: var(--font-size-xxx-large);
}

/* increase the font size to x-large */
h3 .mw-headline {
	font-size: var(--font-size-x-large);
}

h2, h3 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: var(--space-md);
}

/* typography for header */
h2 .mw-headline,
h3 .mw-headline {
	text-align: center;
	font-weight: bold;
	flex: 0 2 auto;
}

h2::before,
h2::after {
	content: '';
	border-top: 1px solid var(--color-base--emphasized);
	flex: 1 1 100px;
}

h3::before,
h3::after {
	content: '';
	border-top: 1px dashed var(--color-base--emphasized);
	flex: 1 1 100px;
}