Path: blob/main/projects/HexGL/libs/Editor_files/main.css
4627 views
body {1overflow: hidden;2font-family: "Ubuntu sans", Arial, sans-serif;3font-size: 14px;4color: #ddd;5line-height: 1em;6background: #1e1e1e;7}89#panel-center {10margin: 0;11position: absolute;12z-index: 20;13top: 0;14bottom: 0;15left: 200px;16right: 400px;17}1819#panel-left {20margin: 0;21position: absolute;22z-index: 10;23top: 0;24bottom: 0;25left: 0;26width: 200px;2728background: #191919;29}3031#panel-right {32margin: 0;33position: absolute;34z-index: 30;35top: 0;36bottom: 0;37right: 0;38width: 400px;3940background: #191919;41}4243#editor {44margin: 0;45position: absolute;46top: 0;47bottom: 50%;48left: 0;49right: 0;50z-index: 100;51}5253#diagram {54margin: 0;55position: absolute;56bottom: 0;57top: 50%;58left: 0;59right: 0;60z-index: 200;61}6263#editor-separator, #preview-separator {64margin: 0;65position: absolute;66top: 50%;67left: 0;68right: 0;69height: 3px;70z-index: 300;71background: #191919;72border-top: 1px solid #292929;73border-bottom: 1px solid #292929;74}75#preview-separator {76z-index: 400;77left: 3px;78}7980#left-separator {81margin: 0;82position: absolute;83top: 0;84bottom: 0;85right: 0;86width: 3px;87z-index: 300;88background: #191919;89}9091#right-separator {92margin: 0;93position: absolute;94top: 0;95bottom: 0;96left: 0;97width: 3px;98z-index: 300;99background: #191919;100}101102#preview {103margin: 0;104position: absolute;105top: 0;106bottom: 50%;107left: 3px;108width: 396px;109110background: #1e1e1e;111border-left: 1px solid #292929;112z-index: 210;113}114115#console {116margin: 0;117position: absolute;118bottom: 0;119top: 50%;120left: 0;121left: 3px;122width: 396px;123z-index: 220;124background: #1e1e1e;125border-left: 1px solid #292929;126}127128#console-text {129background: transparent;130border: none;131width: 100%;132height: 100%;133color: #666;134text-shadow: 0px 1px 1px #000000;135filter: dropshadow(color=#000000, offx=0, offy=1);136padding: 6px;137outline: none;138overflow: hidden;139scroll: none;140}141142#preview canvas {143background: #161616;144}145146#modules {147margin: 0;148position: absolute;149top: 0;150bottom: 0;151left: 0;152width: 196px;153154font-size: 13px;155156background: #1e1e1e;157border-right: 1px solid #292929;158}159160#modules ul {161-webkit-touch-callout: none;162-webkit-user-select: none;163-khtml-user-select: none;164-moz-user-select: none;165-ms-user-select: none;166user-select: none;167168list-style: none;169margin: 10px 0;170padding: 0;171}172173#modules li {174list-style: none;175line-height: 2.0em;176padding: 0 20px;177background: #1e1e1e;178cursor: pointer;179180text-shadow: 0px 1px 1px #000000;181filter: dropshadow(color=#000000, offx=0, offy=1);182}183184#modules li:hover {185background: #434343; /* Old browsers */186background: -moz-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* FF3.6+ */187background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888), color-stop(4%,#4e4e4e), color-stop(96%,#434343), color-stop(100%,#1e1e1e)); /* Chrome,Safari4+ */188background: -webkit-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* Chrome10+,Safari5.1+ */189background: -o-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* Opera 11.10+ */190background: -ms-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* IE10+ */191background: linear-gradient(to bottom, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* W3C */192193}194195#modules li.active {196background: #292929;197}198199#render200{201position: absolute;202z-index: 9999999;203}204205