﻿/* General Stuff */

html {
	height: 100%;
	min-height: 100%;
	min-height: 100vh;
	min-width: 1280px;
}

body {
	height: 100%;
	min-height: 100%;
	min-height: 100vh;
	min-width: 1280px;
	margin: 0 0;
	padding: 0 0;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 150%;
	color: #000000;
	background-color: #ecf2f5;
}

#frmMaster {
	display: block;
	height: 100%;
	min-height: 100%;
	min-height: 100vh;
}

textarea {
	resize: none;
}

/* Wrappers */

.dashboard {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
}

.page-outer {
	display: flex;
	flex-grow: 1;
	flex-direction: row;
}

.page-inner {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}

/* Header */

header {
	flex-grow: 0;
	width: 100%;
	color: #FFFFFF;
	background-color: #004080;
}

header .container-fluid {
}

header .logo {
	width: 18rem;
	min-width: 18rem;
	padding: 1.5rem 1.5rem;
	background-color: rgba(0,0,0,0.25);
}

/* Sidebar */

aside {
	background-color: #FFFFFF;
	width: 18rem;
	min-width: 18rem;
	padding: 1rem 1rem;
	font-size: 18px;
	line-height: 150%;
	border-right: 1px solid rgba(0,0,0,.125);
}

aside .nav-link,
aside .nav-link:visited {
	color: #000000;
	border: 0 none;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
	border-radius: 0.25rem;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}

aside .nav-link:hover {
	color: #000000;
	background-color: #EEEEEE;
}

/* Main */

main {
	flex-grow: 1;
	flex-direction: column;
	padding: 1.5rem 1.5rem;
}

main > .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

/* Footer */

footer {
	flex-grow: 0;
	width: 100%;
	padding: 0 1.5rem 1.5rem 1.5rem;
	font-size: 16px;
	line-height: 100%;
	color: #606060;
	text-align: right;
}

/* Sites */

.sites-header li.page-item,
.sites-footer li.page-item {
	min-width: 3.0rem;
	text-align: center;
}

/* Site Display */

.sites {
	padding-top: 0.5rem;
}

.site {
	margin-bottom: 1rem;
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 0.375rem;
	-moz-border-radius: 0.375rem;
	border-radius: 0.375rem;
	transition: background-color linear 1000ms;
}

.site:nth-child(2n+1) {
	background-color: #F0F0F0;
}

.site:last-child {
	margin-bottom: 0.5rem;
}

.site.has-comment {
	background-color: #D1E7DD;
}

.site .site-header {
	padding: 0.75rem 0.75rem 0.75rem 1.5rem;
	color: #FFFFFF;
	background-color: #0054A8;
	transition: background-color linear 1000ms;
	-webkit-border-radius: 0.375rem 0.375rem 0 0;
	-moz-border-radius: 0.375rem 0.375rem 0 0;
	border-radius: 0.375rem 0.375rem 0 0;
}

.site.has-comment .site-header {
	background-color: #198754;
}

.site .site-header a:not(.btn),
.site .site-header a:not(.btn):visited {
	color: #FFFF00;
	text-decoration: none;
}

.site .site-header a:not(.btn):hover {
	color: #FFFF00;
	text-decoration: none;
}

.site .site-header .site-url {
	font-size: 110%;
	font-weight: bold;
}

.site .site-header .site-host {
	font-size: 90%;
	font-style: italic;
}

.site .site-content {
	padding: 1.5rem 1.5rem;
}

.site .site-content .form-fields {
	border-right: 2px solid rgba(0,0,0,0.25);
}

.site .site-content .site-title {
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	font-weight: bold;
	border-bottom: 2px solid rgba(0,0,0,0.25);
}