/*
   New Perspectives on HTML and CSS
   Tutorial 5
   Case Problem 1

   Sudoku Puzzle Table Style Sheet
   Author: Lana Colon
   Date:  3/14/2025

   Filename:         stable.css
   Supporting Files: green.jpg, gold.jpg

*/
/*table boarder collapse*/
.spuzzle,.subTable 
{
	border-collapse:collapse;
}

/*spuzzle table data styles*/
.spuzzle td
{
	border:5px outset gray;
}

/*spuzzle table head styles*/
.spuzzle thead
{
	font-size:12px;
	color:gray;
}

/* spuzzle table body styles*/
.spuzzle tbody th
{
	height:40px;
	color:gray;
}

/* subTable styles*/
.subTable td
{
	font-size:20px;
	color:blue;
	width:40px;
	height:40px;
	text-align:center;
	vertical-align:center;
	border:1px solid black;
}

/* goldbox cell styles*/
.goldbox td
{
	background-image:url("gold.jpg");
	background-position:50% 50%;
}

/*greenbox cell styles*/
.greenbox td
{
	background-image:url("green.jpg");
	background-position:50% 50%;
}


