.clickable {
	cursor: pointer;
}

.display-none {
	display: none;
}

.chan-post-pic {
	max-width: 300px;
	max-height: 150px;
}

.chan-post {
	font-family: garamond serif;
	font-size: 15px;	
	margin-top: 35px;
	border:1px solid silver;
	background-color: rgba(255,255,255,0.7);
/*	background-color: rgba(0.7,0.7,0.7,0.1); */
	padding: 10px;
}

body {
	background-image: url("/static/bf.png");
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}

select {
	font-family: inherit;
	font-size: inherit;
}

footer {
/*	position: fixed;
	bottom: 0; */
	width: 100%;
}

textarea {
	resize: vertical !important;
	font-family: monospace !important;
	font-family: inherit;
	font-size: inherit;
}

#textLivePad, #textLivePadSyntax {
	margin: 0px;
	padding: 5px;
	border: 1px solid silver;
	width: 100%;
	height: 100%;
	font-size: inherit;
	font-family: monospace;
	line-height: inherit;
	position: absolute;
	top: 0;
	left: 0;
	overflow-x: auto;
	overflow-y: scroll;
	white-space: pre;
}

#textLivePad {
	z-index: 1;
	resize: none !important;
	color: transparent;
	background: transparent;
	caret-color: royalblue;
}

#textLivePadSyntax {
	z-index: 0;
}

.input-field input:focus + label {
     color: indigo !important;
}
.input-field input:focus {
	border-bottom: 1px solid indigo !important;
	box-shadow: 0 1px 0 0 indigo !important;
}
