Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Module:Hatnote/styles.css: Difference between revisions

From Amaranth Legacy, available at amaranth-legacy.community
Content deleted Content added
No edit summary
No edit summary
Line 15: Line 15:
.hatnote1 > :first-child {
.hatnote1 > :first-child {
flex: 0 2 auto;
flex: 0 2 auto;
margin: 0 var(--space-md);
margin-right: var(--space-md);
}
}


Line 39: Line 39:
.hatnote2 > :last-child {
.hatnote2 > :last-child {
flex: 0 2 auto;
flex: 0 2 auto;
margin: 0 var(--space-md);
margin: 0 var(--space-sm);
}
}



Revision as of 18:42, January 13, 2025

/* no images */
.hatnote0 {
	text-align: center;
}

/* one image */
.hatnote1 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	text-align: left;
}

.hatnote1 > :first-child {
	flex: 0 2 auto;
	margin-right: var(--space-md);
}

.hatnote1 img {
	max-width: 100%;
	height: 100%;
}

.hatnote1 > :last-child {
	flex: 1 1 fit-content;
}

/* two images */
.hatnote2 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	text-align: center;
}

.hatnote2 > :first-child,
.hatnote2 > :last-child {
	flex: 0 2 auto;
	margin: 0 var(--space-sm);
}

.hatnote2 img {
	max-width: 100%;
	height: 100%;
}

.hatnote2 > :nth-child(2) {
	flex: 1 1 fit-content;
}