/* wview CSS settings */

/* Global */

body {
	height: 480px;
	background-color: black;
	font-family: gill sans;
	text-align: center;
	margin: 0 0 0 0;
	color: #54A7FF;
}	

a {
	text-decoration: none;
	color: #54A7FF;
}

h1 {
	font-size: 12px;
	font-family: verdana, tahoma, sans-serif;
	font-weight: bold;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	color: #FFFFFF;
}

h2 {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 200;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	color: #FFFFFF;
}

h3 {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	color: #FFFFFF;
}

div#container {
	box-sizing: border-box;
	position: fixed;
	border: none;
	padding: 0 0 0 0;
	border-radius: 12px;
}

/* DIVs are named by their percentage of the view */
/* 																								*/

div.seventies {
	box-sizing: border-box;
	background-color: #222277;
	width: 70%;
	height: 94px;
	float: left;
	font-size: 70px;
	line-height: 1;	
	padding: 5px;
	border: 1px solid #244857;
	border-radius: 10px;
}

/* thirties are half the height of seventies so they can be doubled up */
div.thirties {
	box-sizing: border-box;
	background-color: #222277;
	float: left;
	position: relative;
	font-size: 20px;
	width: 30%;
	height: 47px;
	padding: 3px 2px 10px 5px;
	border: 1px solid #244857;
	border-radius: 10px;
}

div.fifties {
	box-sizing: border-box;
	background-color: #222277;
	position: relative;
	float: left;
	font-size: 25px;
	width: 50%;
	height: 56px;
	padding: 3px 0px 8px 10px;
	border: 1px solid #244857;
	border-radius: 10px;
}

div.fiftylinks {
	box-sizing: border-box;
	float: left;
	background-color: #54A7FF;
	text-transform: uppercase;
	font-size: 18px;
	width: 50%;
	height: 45px;
	padding: 12px 10px 12px 10px;
	-webkit-box-shadow: inset 0 0 25px #000;
	box-shadow: inset 0 0 25px #000;
	border-radius: 15px;
}

.fiftylinks a {
	color: #244857;
}

div.hundredlinks {
	box-sizing: border-box;
	float: left;
	background-color: #5595A7;
	text-transform: uppercase;
	font-size: 18px;
	width: 100%;
	height: 45px;
	padding: 12px 10px 12px 10px;
	-webkit-box-shadow: inset 0 0 25px #000;
	box-shadow: inset 0 0 25px #000;
	border-radius: 15px;
}

/* attributes of the time highs were hit */

.time {
	position: absolute;
	display: block;
	right: -7px;
	bottom: 13px;
	font-size: 12px;
	opacity: 0.5;
	font-weight: 100;
	color: #696969;
	-webkit-transform: rotate(90deg);
}

/* if you want to change the color of hi/lo temps */
.high {
	color: #FF0000;
}

.low {
	color: #0000FF;
}

/* I found the units to be too large at full size */
.unit {
	font-size: 50%;
}

