/*
		
	GwyddionGames Tables Style Sheet
	Author:	JP Dhabolt
	Date: 8/29/2015
	
	Filename:			tables.css
	Supporting Files:
	
*/

/* General Styles */

section {
	border: none;
}

/* Table Styles */

table {
	border: 5px solid black;
	width: 100%;
}

th {
	border: 1px solid black;
	font-weight: bold;
	font-size: 2em;
}

td {
	border: 1px solid black;
	vertical-align: middle;
}

tr {
	height: 200px;
}

tr:nth-of-type(even) {
	background-color: rgba(0,100,0,0.7);
	color: orange;
}

tr:nth-of-type(odd) {
	background-color: rgba(255,165,0,0.7);
	color: rgb(0,100,0);
}

tr:first-of-type {
	height: 50px;
}

caption {
	color: orange;
	font-weight: bold;
	font-size: 2em;
}

/* Image Styles */

td img {
	height: 200px;
	margin: 0px;
}