mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-05 11:43:22 +01:00
46 lines
597 B
CSS
46 lines
597 B
CSS
|
.debugContainer {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 500;
|
||
|
background-color: #f0f;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#debug_textArea {
|
||
|
position:absolute;
|
||
|
bottom: 0;
|
||
|
/*width: 800px; */
|
||
|
z-index: 500;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.debugBtn {
|
||
|
width: 25px;
|
||
|
height: 25px;
|
||
|
background-color: #03b;
|
||
|
float:left;
|
||
|
}
|
||
|
|
||
|
.agentInfo {
|
||
|
background: #fff;
|
||
|
border: 1px #333 solid;
|
||
|
display: none;
|
||
|
float:left;
|
||
|
opacity: .7;
|
||
|
}
|
||
|
|
||
|
.agentInfoToggle {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
#debug_display {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
display: none;
|
||
|
background-color: #fff;
|
||
|
opacity: .7;
|
||
|
color: #000;
|
||
|
}
|