Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Knowledge Base Consoles/styles.css: Difference between revisions

Template page
Created page with ".container { display: block; text-align: center; background: red; } .image img { max-width: 200px; height: auto; } @media screen and (min-width: 851px) { .container { display: grid; grid-auto-columns: minmax(0, 1fr); margin: 0; } .image { grid-row: 1; display: flex; justify-content: center; } .title { grid-row: 2; } }"
(No difference)

Revision as of 04:16, 30 September 2024

.container {
	display: block;
	text-align: center;
	background: red;
}

.image img {
	max-width: 200px;
	height: auto;
}

@media screen and (min-width: 851px) {
	.container {
		display: grid;
		grid-auto-columns: minmax(0, 1fr);
		margin: 0;
	}
	
	.image {
		grid-row: 1;
		display: flex;
		justify-content: center;
	}
	.title { 
		grid-row: 2; 
	}
}