/*
      IT 270 Final Project Website

      Of Love and Pixels
      Author:  Sarah Leiknes
      Date:   03/23/2016

      Filename:         tables.css
      Supporting files: schedule.htm
*/

/* Styles for the schedule table */

table.schedule {
	border: 10px outset rgb(255, 0, 0);
	border-collapse: collapse;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	width: 65%;
	position: right;
}

table.schedule td {
	border: 1px solid gray;
}

table.schedule th {
	border: 1px solid gray;
	color: black;
}

/* Table Header Styles */

table.schedule thead {
	background-color: rgb(255, 0, 0);
	color: white;
	color: rgba(255, 255, 255, 0.5);
}

table.schedule thead tr {
	height: 50px;
}

/* Table body styles */

table.schedule tbody tr {
	height: 40px;
}

table.schedule tbody td {
	padding: 5px;
	vertical-align: top;
}

/* Styles for the first column */

table.schedule col.firstCol {
	background-color: rgb(255, 255, 192);
	width: 7%;
}

/* Styles for the remaining columns */

table.schedule col.dayCols {
	width: 13%;
}

/* Styles for the table caption */

table.schedule caption {
	caption-side: bottom;
	text-align: right;
}