/* 
* @Author: Mikkel Bundgaard
* @Date:   2016-01-18 19:23:06
* @Last Modified by:   Maaggel
* @Last Modified time: 2016-01-22 01:43:53
*/

html {
    overflow: auto;
}
body {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 0px;
    padding: 0px;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(50,50,50,0.8); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(50,50,50,0.4); 
}


body {
	background-color: #000;
	font-family: "Courier New", Courier, monospace;
	color: #FFF;
	font-size: 12px;
}
#domainLabel {
	position: fixed;
	top: 3px;
	right: 7px;
	color: #666;
}
#noteLabel {
	position: fixed;
	top: 18px;
	right: 7px;
	color: #666;
}
table {
	width: 100%;
	color: #CAB993;
}
table.original {
	color: #FFF;
}
table tr {
	margin: 0px 5p;
	padding: 0px;
	display: block;
	vertical-align: top;
}
table tr td {
	min-width: 80px;
	word-break: break-all;
}
table tr td.date {
	color: #7F7F7F;
}
table tr.format-header td {
	padding-top: 10px;
}
table tr.format-header td.message .header {
	font-weight: bold;
	padding: 3px;
	color: #F9F9F9;
	background-color: #094660;
}
table tr.format-header td.message .header.headercolor-1 {
	background-color: #520a5f;
}
table tr.format-header td.message .header.headercolor-2 {
	background-color: #13600b;
}
table tr.format-header td.message .header.headercolor-3 {
	background-color: #940a0d;
}
table tr.format-header td.message .header.headercolor-4 {
	background-color: #8a8400;
}
#clearButton {
	position: fixed;
	top: 9px;
	right: 20px;
	background-color: #000;
	border: 2px solid #005E00;
	color: #005E00;
	font-weight: bold;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 0px 5px rgba(0,0,0,1);
	box-shadow: 0px 0px 0px 5px rgba(0,0,0,1);
	cursor: pointer;
}
#clearButton:hover {
	border: 2px solid #00A600;
	color: #00A600;
}
#cmd {
	width: 100%;
    box-sizing: border-box;
    border: none;
    background: none;
	background-color: #000;
	font-family: "Courier New", Courier, monospace;
	color: #FFF;
	font-size: 12px;
	padding: 3px 3px 3px 80px;
	outline: none;
}
#trackHolder {
	min-height: calc(100% - 10px);
}
#trackHolder .state {
	color: #FD8A3E;
	font-weight: bold;
}
#trackHolder .state.true {
	color: #5CB900;
}
#trackHolder .state.false {
	color: #CE0000;
}
#trackHolder .error {
	color: #CE0000;
}
#trackHolder .success {
	color: #2fce00;
}
#trackHolder .warning {
	color: #ce8600;
}
#trackHolder .prompt {
	color: #5E8DDD;
}
#trackHolder .value {
	color: #800080;
}
#trackHolder .output {
	color: #00E0EC;
}
#trackHolder .strong {
	font-weight: bold;
}

pre {margin: 0; padding: 0; }
.string { color: #659f1a; }
.number { color: #a16a94; }
.boolean { color: #99cf50; }
.null { color: #CCC; }
.key { color: #1e8cba; }

@media screen and (max-width: 480px) {
	body {
		font-size: 10px;
	}
	table tr td {
		min-width: 60px;
	}
	#cmd {
		padding: 3px 3px 3px 60px;
		font-size: 10px;
	}
}