/*
Description:
    Contains all the styles for the winning wheel page.
    
Verison History:
    2012-01-28, Douglas McKechie
    - Created based off earlier version.
    
    2015-09-26, Douglas McKechie
    - Minor updates for the 2.0 winwheel example.
*/

html
{
	height: 100%
}

body
{
    font-family: arial;
	background-color: #000000;
	color: #ffffff;
	padding: 10px;
-	height: 95%;
}

h1
{
	font-size: 5em;
	color: yellow;
	margin: 5px;
}

div.board
{
	text-align: center;
	padding: 10px;
	height: 80%;
}

.board div.header 
{
	-background-color: #aaaaaa;
	padding: 10px;
}

.board div.buttons 
{
	-background-color: #cccccc;
	height: 80%;
	padding: 10px;
}

.board div.header div
{
	background-color: #0000ff;
	display: inline-block;
	padding: 2px;
	border: 5px solid #000000;
	width: 18%;	
	height: 20%;
	line-height: 70px;
	color: #ffd300;
	margin: 0px;
	font-size: 24px;
	font-weight: bold;
}

div.board div.button
{
	background-color: #0000ff;
	cursor: pointer;
	display: inline-block;
	padding: 2px;
	border: 5px solid #000000;
	width: 18%;	
	height: 120px;
	line-height: 110px;
	color: #ffd300;
	margin: 0px;
	font-size: 30px;
}

div.button
{
	background-color: #cccccc;
	cursor: pointer;
	display: inline-block;
	padding: 10px;
	border: 1px solid #333333;
	text-align: center;
	color: #000000;
}

/* Do some css reset on selected elements */
p
{
    margin: 0;
}


#message
{
	font-size: 24;
	height: 24px;
}

#todo
{
	font-weight: bold;
}


table.wall td
{
	width: 40px;
	height:40px;
	text-align: center;
	font-weight: bold;
}

table.letters td
{
	width: 40px;
	height:40px;
	text-align: center;
	background-color: #cccccc;
	cursor: pointer;
}

table.result td
{
	padding: 10px;
	text-align: center;
	border:1px solid #333333;	
	width: 100px;
}

/* Styles for the power selection controls */
table.power
{
    background-color: #cccccc;
    cursor: pointer;
    border:1px solid #333333;
}

table.power th
{
    background-color: white;
    cursor: default;
}

td.pw1
{
    background-color: #6fe8f0;
}

td.pw2
{
    background-color: #86ef6f;
}

td.pw3
{
    background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable
{
    cursor: pointer;
}

/* Other misc styles */
.margin_bottom
{
    margin-bottom: 5px;
}

#timer
{
	position: absolute;
	right: 20px;
	top: 20px
}