
/*
    Final Project
     
	Firehouse Grill and Pub
	Author: Ola Vincent
	Date: August 4, 2014  
	Filename:         fhtablesmenu.css
	Supporting Files: 
*/

/*  Styles for table  */


table-responsive {
	position: relative;
	/*background: white;*/
	background: #EFF7ED;
	width: 1100px;
}

thead {
	background-color: rgb(2, 0, 0);
	color: black;
	font-size:18px;
}


table tbody tr td {
	border: 4px outset rgb(102, 153, 51);
}



tr{
	padding: 5px 0px 5px 10px;
	margin: 10px 15px;
	margin-left:30px;
	margin:right:auto;
	background-color: #bdd0c3;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
}


 td {
	border: 1px solid green;
}



/* Style for Media Queries */

@media only screen and (min-width : 700px) and (max-width : 1000px)
{
table-responsive {
	position: relative;
	background: #EFF7ED;
	width: 600px;
}
}


@media only screen and (min-width : 500px) and (max-width : 700px)
{
table-responsive {
	position: relative;
	background: #EFF7ED;
	width: 400px;
}
}

@media only screen and (min-width : 250px) and (max-width : 500px)
{
table-responsive {
	position: relative;
	background: #EFF7ED;
	width: 250px;
}
}
