/**
 * Wakefield RISC OS Computer Club
 * Show List Stylesheet
 * 
 * (c) Stephen Fryatt, 2016-2020
 */

/* Show List Sets. */

@media (max-width: 999px) {
	/* Below 1000px, we display the show entries as logo followed by text in a single column. */

	div.show-block {
		margin-left: auto;
		margin-right: auto;
	}

	div.show-entry {
		margin-bottom: 1em;
	}

	div.show-logo {
		text-align: center;
		vertical-align:top;
	}

	div.show-detail {
		text-align: left;
		vertical-align: top;
	}
}

@media (min-width: 1000px) {
	/* Above 1000px, we display logo to the left of text in two columns. */

	div.show-block {
		display: table;
		border-spacing: 1em;
	}

	div.show-entry {
		display: table-row;
	}

	div.show-logo {
		display: table-cell;
		text-align: center;
		vertical-align: top;
	}

	div.show-detail {
		display: table-cell;
		text-align: left;
		vertical-align: top;
	}
}
