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

Styles for the overall app
Added adjustments to masthead: button to toggle styles
*/

/*----- body styles -----------------------------------------------------------*/
body{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	background-color: blanchedalmond;
	margin: 0px;

}
/*----- masthead styles -----------------------------------------------------------*/
#masthead{
	height: 100px;
	background-color: black;
	color: white;
	padding-top: 10px;
	border-bottom: thick #3BB300 solid;
}
#masthead #mastheadText{
/*	width: 70%;*/
	float: left;
}

#masthead img#cssImgBtn{
	float: right;
	cursor: pointer;
}

#mastheadText h1, h3{
	margin: 0px;
}

#mastheadText h1{
	margin-top: 20px;
}

#masthead #mastheadIcon{
	float: left;
	margin-right: 0px;
	height: 100px;
	cursor:pointer;
}

#mastheadText h3{
	margin-top: 5px;
	font-style: italic;
}

/*----- appContent styles -----------------------------------------------------------*/
#appContent{
	margin-left: 50px;
	margin-right: 50px;
	margin-top: 20px;
	font-size: 1.2em;
}

details div{
	width: 500px;
	margin-top: 2px;
	padding: 10px;
	background-color: white;
	padding-bottom: 5px;
	border-radius: 20px;
}

a {
	font-weight: bolder;
	color:brown;
	text-decoration: none;
}

/*--- form stuff ---*/
fieldset {
	background-color: white;
	padding: 20px;
	border-radius: 20px;
}

form {
	margin-bottom: 20px;
	max-width: 500px;
	margin: 0px auto 20px auto;
}

form label {
	display: block;
	color: #888;
}

/*--- stats table styles ---*/
table#statsTable tr td:first-child{
	text-align: right;
	padding-right:10px;
	background-color: pink;
}

table#statsTable tr td{
	padding: 2px;
	text-align: right;
	padding-left:20px;
	background-color: gold;
}

p#previousScoresPara{
	width: auto;
}

/*--- rollBtn styles ---*/
input#rollBtn.primaryBtn {
	padding: 10px;
	color: white;
	border-radius: 10px;
}

input#rollBtn.ready{
	background-color: #FF4F2F; 
}

input#rollBtn.active{
	background-color: #3BB300; 
}

input#rollBtn.inactive{
	background-color: lightgray;
	cursor:default;
}
   
/*----- widget styles -----------------------------------------------------------*/
.clickable{
	cursor:pointer;
}

