Template

Tabloid header/styles.css

From Dogcraft Wiki

< Template:Tabloid header
Revision as of 00:18, 27 January 2024 by Xpmodder (talk | contribs) (Created page with "#tabloid { padding: 1rem 15%; →‎display:grid; grid-template-columns: 1fr 1fr;: column-gap: 1rem; text-align: justify; column-count: 2; } #tabloid div:nth-of-type(3n-2) { grid-column:span 2; } @media screen and (max-width: 1000px) { #tabloid { column-count: 1; } } @media screen and (max-width: 450px) { #tabloid { padding: 1rem 0; } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#tabloid {
	padding: 1rem 15%;
	/*display:grid;
	grid-template-columns: 1fr 1fr;*/
	column-gap: 1rem;
	text-align: justify;
	column-count: 2;
}

#tabloid div:nth-of-type(3n-2) {
	grid-column:span 2;
}

@media screen and (max-width: 1000px) {
	#tabloid {
		column-count: 1;
	}
}

@media screen and (max-width: 450px) {
	#tabloid {
		padding: 1rem 0;
	}
}