@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Case Problem 1

   Tables Style Sheet
   Author: Landin Jones
   Date: 10/29/2023  

   Filename:         mi_tables.css

*/

/* Table Styles */

table {
	background: linear-gradient(to bottom, rgb(190, 215, 255), black);
	border: 5px solid gray;
}

th, td {
	border: 3px solid gray;
	line-height: 1.4em;
	padding: 8px;
}

th {
	background-color: black;
	color: rgb(130, 210, 255);
	font-weight: normal;
}

td {
	color: white;
	font-size: 0.9em;
	text-align: top;
}

/* Column Styles */

col#firstCol {
	column-width: 24%;
}

col#dataCols {
	column-width: 19%;
}

/* Table Header Styles */

thead {
	height: 60px;
}

table thead tr:first-child th:first-of-type {
	font-size: 2em;
}

table thead tr:first-child th:not(:first-of-type) {
	background-color: transparent;
	color: black;
}
	













