Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.
Revision as of 16:14, April 2, 2025 by Tesinormed (talk | contribs) (Created page with ".hr-with-image { make this a flexbox: display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: var(--space-md); typography for header: text-align: center; font-weight: bold; only shrink: flex: 0 1 auto; } .hr-with-image::before, .hr-with-image::after { content: ''; border-top: 1px solid var(--color-emphasized); flex: 1 0 2rem; } .hr-with-image::before { margin-right: auto; } .hr-with-image::after { margin-left...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.hr-with-image {
	/* make this a flexbox */
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	/* typography for header */
	text-align: center;
	font-weight: bold;
	/* only shrink */
	flex: 0 1 auto;
}

.hr-with-image::before,
.hr-with-image::after {
	content: '';
	border-top: 1px solid var(--color-emphasized);
	flex: 1 0 2rem;
}

.hr-with-image::before {
	margin-right: auto;
}

.hr-with-image::after {
	margin-left: auto;
}