/*
Theme: Blank Theme
Author: Thomas Heppner
Description: A complete blank theme with some sidebars.
Version: 0.0.1
*/

body {
	font-family: sans-serif;
	font-size: 1vw;
	margin: 0;
	padding: 0;
	height:100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li {
	margin: 0;
}
.theScreen {
	box-sizing: border-box;
	display: flex;
	background-size: cover;
}
.theContent {
	flex-grow: 1;
	font-size: 1.7em;
	background-repeat: no-repeat;
}

.theContent h1 {
	font-size: 2em;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.theContent h2 {
	font-size: 1.7em;
	margin-bottom: 0.4em;
}

.theContent h3 {
	font-size: 1.5em;
	margin-bottom: 0.4em;
}

.theContent p, .theContent li {
	margin-bottom: 0.4em;
	line-height: 1.3em; 
}

.theContent ul, .theContent ol {
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}

.theWall {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	z-index: 1000;
}

.theScreen {
	width: 100vw;
	height: 100vh;
	padding: 6vh 3vw;
}

.theOuterArea {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.theHeader {
	padding: 2vh;
	flex-grow: 0;
}

.theInnerArea {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
}
.theInnerArea > div {
	padding: 50px;
}

.theContent {
	flex-basis: 75%;
	flex-grow: 4;
}

.theWidgets {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-basis: 25%;
	flex-grow: 1;
}
.theWidgets .theWidget {
	background-color: rgba(0, 0, 0, .3);
	padding: 1vh;
	display: flex;
}

/*
 * Clock widget
 */
.clockWidget .clockWidget-time {
	padding: 0 0 3px 0;
	font-size: 3em;
	text-align: center;
}
.clockWidget .clockWidget-date {
	padding: 3px 0 0 0;
	font-size: 1.5em;
	text-align: center;
}

.newsWidget {
	display: flex;
	/*position: relative;*/
}
.newsWidget .display-container {
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.newsWidget h3.title {
	font-size: 1.5em;
	line-height: 1.3em;
	margin: 0 0 .2em 0;
	max-width: 100%;
	text-overflow: clip;
}
.newsWidget p.body {
	font-size: 1.3em;
	line-height: 1.2em;
	margin: 0 0 .2em 0;
}
.newsWidget p.source {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.1em;
	margin: 0 0 0 0;
}

.newsWidget .qrcode-container {
	background-color: white;
	color: #555555;
	display: flex;
	align-items: flex-end;
	width: 100%;
	/*
	position: absolute;
	bottom: 0px;
	*/
}
.newsWidget .qrcode-container > .qrcode {
	padding: 1em;
}
.newsWidget .qrcode-container > .qrcode > div {
	width: 7vw;
	height: 7vw;
}
.newsWidget .qrcode-container > .instructions {
	padding: 0 0 1em 0;
	font-size: 1.2em;
	line-height: 1.1em;
}

/*
.theContent {
	width: 100%;
	display: flex;
}
.theContent > .leftColumn {
	box-sizing: border-box;
	width: 60%;
	padding: 6vh 3vw;
}
.theContent > .rightColumn {
	box-sizing: border-box;
	width: 40%;
	padding: 6vh 3vw;
}

.theContent > .leftColumn {
	font-size: 3vh;
}

.theContent > .leftColumn h1 {
	font-size: 4vh;
	margin: 0 0 1vh 0;
}
.theContent > .leftColumn h2 {
	font-size: 3vh;
	margin: 0 0 1vh 0;
}

.theContent > .leftColumn p,
.theContent > .leftColumn li {
	margin: 0 0 1vh 0;
	line-height: 1.3em;
}

#news-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	opacity: 0;
}
#news-box > div:nth-child(1) {
	
}
#news-box h1 {
	font-size: 3vh;
	font-weight: bold;
	margin: 0 0 1vh 0;
	line-height: 1.3em;
	text-transform: uppercase;
}
#news-box p {
	font-size: 3vh;
	margin: 0 0 1vh 0;
	line-height: 1.3em;
}
#news-box p.smaller {
	font-size: 2vh;
	margin-bottom: 20px;
}

#qrcode {
	display: block;
	float: left;
	padding: 20px;
	margin: 0 2vw 0 0;
	background-color: white;
}

#news-box > div:nth-child(2) {
	display: flex;
	align-items: flex-end;
}
*/
