<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
	height: 100%;
	width: 100%;
	font-family: sans-serif;
}
#canvas {
	border: 1px solid #000;
	display: inline-block;
	height: 400px;
	background-image: url(images/alpha.gif);
	background-repeat: repeat;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
canvas {
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
#bottom-bar {
	background-color: #777;
	color: #FFF;
	padding: 4px 0px 2px 4px;
	border-top: 2px solid #FFF;
	width: 100%;
}
#screen {
	border: 3px solid #AAA;
	border-top-width: 0px;
	border-left-width: 0px;
	display: inline-block;
}
#top-bar {
	background-color:#777;
	color:#FFF;
	padding: 2px 4px 3px 0px;
	text-align: right;
	width: 100%;
}
#selected-tab {
	background-color: #EE6;
	color: #000;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
#debug-area {
	height: 30%;
	background-color:#AAA;
}
#left-pane {
	float:left;
	display: inline-block;
	height: 100%;
}
#running-indicator {
	float: left;
	padding-left: 7px;
	color: #0F0;
	font-family: monospace;
	font-size: 155%;
	font-weight: bold;
}
#tabs {
	margin-top: 4px;
	display: inline-block;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.tab {
	background-color: #24F;
	color: #FFF;
	font-weight: bold;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	display: inline-block;
	padding-left: 2px;
	padding-right: 4px;
	border: 1px solid #000;
	border-bottom-width: 0px;
}
#right-pane {
	float: right;
	width: 59%;
	height: 100%;
}
#console {
background-color: #000;
color:#FFF;
font-family: monospace;
font-size: 90%;
display: block;
padding: 2px;
height: 70%;
overflow-y: auto;
}
.console-log {
	color: #5AF;
}
.console-error {
	color: #F34;
}
#left-pane {
	display: inline-block;
	height: 100%;
	width: 41%;
}
#coords {
	font-family: monospace;
	font-size: 115%;
}
#x-coord {
	color: #FF0;
}
#y-coord {
	color: #5FF;
}
#tab-contents {
	background-color: #EE6;
	border-left: 1px solid #111;
	border-bottom: 1px solid #111;
	padding: 0.5%;
	height: 94%;
}
#objects {
	background-color: #CCC;
	padding: 0.5%;
	height: 23%;
	width: 95.5%;
	overflow-y: scroll;
	overflow-x: auto;
}
#scripts-pane {
	height: 100%;
	background-color: #EEF;
}
.script-url {
	font-style: italic;
	font-family: monospace;
	font-size: 90%;
	float: right;
}
.script-item {
	border-bottom-color: #000 1px solid;
	background-color: #CCC;
	padding: 3px;
}
#images-pane {
	padding-top: 2px;
	padding-left: 3px;
	height: 100%;
	background-color: #EEF;
	overflow: auto;
}
.image-url {
	font-style: italic;
	font-family: monospace;
	font-size: 90%;
	float: right;
}
.image-item {
	border-bottom-color: #000 1px solid;
	background-color: #CCC;
	padding: 3px;
}
.image-view {
	border: 1px solid #000;
}
.code {
	width: 99%;
	height: 100%;
}
.CodeMirror {
   		border: 1px solid #eee;
 		height: 99%;
 		width: 99%;
}
.popup-window {
	border: 1px solid #000;
	position: absolute;
	top: 0px;
	left: 0px;
	display: inline-block;
	background-color: #EEE;
	z-index: 9;
}
.popup-title {
	text-align: left;
	width: 100%;
	border-bottom: 1px solid #000;
	font-weight: bold;
	background-color: #22F;
	color: #FFF;
	font-family: monospace;
	padding: 0.5%;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.popup-close {
	display: inline-block;
	font-size: 11px;
	background-color: #F00;
	padding: 2px;
	float: right;
	margin-right: 0.5%;
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}</pre></body></html>