/***	docs.css :: The Base CSS for the Docs Site  ***/
/***	Copyright 2019-2021 Brick Mill Games, LLC, all rights reserved.	***/

/** @author Kenneth F. Guerin  */
/** @description The base CSS for the Docs site  */

@font-face { font-family: Ubuntu; src: url("/fonts/Ubuntu-Regular.ttf"); }
@font-face { font-family: Ubuntu; font-weight: 700; src: url("/fonts/Ubuntu-Bold.ttf"); }


body {
	background: #eee;
	font: 10pt 'Ubuntu', sans-serif;
	margin: 0;
	overflow: auto;
}

a {
	color: red;
	text-decoration: underline;
	cursor: pointer;
}
a:hover { background: rgba(0,0,0, 0.1); }

h1 { font-size: 14pt; }
h2 { font-size: 13pt; }
h3 { font-size: 12pt; }
h4 { font-size: 11pt; }
ul { padding-left: 3em; }

div.main {
	width: 100vw;
	height: 100vh;
	display: inline-grid;
	grid-template: auto 1fr / auto;
	overflow: auto;
}

div.header {
	width: 100%;
	font-size: 16pt;
	background: #344; /* #dfd7d2; */
	color: #eee;
	padding: 0.5em 2em;
	border-bottom: 1px solid black;
	text-shadow: 2px 2px black;
}
div.container {
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	overflow: auto;
}
div.container div { padding: 1em 2em; }
