Template:Story info/styles.css: Difference between revisions

Template page
Content added Content deleted
(ChaoticShadow changed the content model of the page Template:Story chapter/styles.css from "wikitext" to "Sanitized CSS")
Tag: content model change
No edit summary
Line 1: Line 1:
.story-chapter {
.story-chapter {
display: flex;
justify-content: center;
gap: 0 20px;
flex-wrap: wrap;
}

.story-chapter > div {
box-shadow: 2px 3px #00cdba;
padding: 20px;
border-radius: 10px;
margin: 20px 3px 20px 0;
border: 2px solid #00cdba;
}

.story-chapter .chapter-info {
justify-content: center;
display: flex;
flex: 3 1 400px;
gap: 20px;
flex-wrap: wrap;
}

.story-chapter .translation-info {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
flex-basis: 300px;
}
}

Revision as of 08:14, 15 April 2022

.story-chapter {
	display: flex;
	justify-content: center;
	gap: 0 20px;
	flex-wrap: wrap;
}

.story-chapter > div {
	box-shadow: 2px 3px #00cdba;
	padding: 20px;
	border-radius: 10px;
	margin: 20px 3px 20px 0;
	border: 2px solid #00cdba;
}

.story-chapter .chapter-info {
	justify-content: center;
	display: flex;
	flex: 3 1 400px;
	gap: 20px;
	flex-wrap: wrap;
}

.story-chapter .translation-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	flex-basis: 300px;
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.