Template:Memory card/styles.css: Difference between revisions

From Love and Deepspace Wiki
Content added Content deleted
(Created page with ".memory-card { max-width: 350px; background: #eee; border: none; border-radius: 10px; box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1); } .memory-card-header { max-height: 175px; overflow: hidden; border-radius: 10px; } .memory-card-section__header { font-size: 1.1em; font-weight: bold; padding: 1em 1em 0 1em; text-align: center; } .memory-card-section { padding: 0 1em 1em 1em; display: grid; grid-gap: 0.5em; grid-template-columns: repeat(6, 1fr); }")
 
No edit summary
Line 16: Line 16:
font-size: 1.1em;
font-size: 1.1em;
font-weight: bold;
font-weight: bold;
padding: 1em 1em 0 1em;
padding: 0.5em 1em;
text-align: center;
text-align: center;
}
}

Revision as of 22:36, 5 February 2024

.memory-card {
	max-width: 350px;
	background: #eee;
	border: none;
	border-radius: 10px;
	box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1);
}

.memory-card-header {
	max-height: 175px;
	overflow: hidden;
	border-radius: 10px;
}

.memory-card-section__header {
	font-size: 1.1em;
	font-weight: bold;
	padding: 0.5em 1em;
	text-align: center;
}

.memory-card-section {
	padding: 0 1em 1em 1em;
	display: grid;
	grid-gap: 0.5em;
	grid-template-columns: repeat(6, 1fr);
}