@charset "utf-8";
/* CSS Document
Designer: KLP
Date: 8/9/21
File: yahtzee_dicelayout.css
Path: Path: OD\Subjects\Programming\JavaScript\Projects\YahtzeeJS2021-22\YahtzeeJS-Stage4

Styles for dice layout

*/
div#diceLayout {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	border-radius: 10px;
	padding: 10px;
	padding-bottom: 2px;
	margin-top: 20px;
}

div#diceLayout div#info {
	width: 50%;
	margin-bottom: 10px;
	padding-right: 20px;
}

div#diceLayout div#info p {
	margin-bottom: 1px;
	text-align: right;
	margin-top: 0px;
}

div#diceLayout div#info p span {
	margin-left: 20px;
	text-align: right;
}

div#diceLayout input {
	margin-top: 5px;
	float: right;
}

div#diceLayout table {
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}

div#diceLayout table img {
	width: 100%;
	height: auto;
}

p#msgPara{
	margin-left: auto;
	margin-right: auto;
	font-style:italic;
	width: 80%;
	text-align:center;
	margin-top: 0px;
	margin-bottom: 0px;
}

p.encourage{
	color: green;
}

p.warn{
	color: red;
	font-weight: bold;
}


