28 lines
1.6 KiB
CSS
28 lines
1.6 KiB
CSS
body { margin:0px; padding:0px; overflow:hidden; font-family:"input_mono_medium",courier,monospace;}
|
|
*:focus {outline: none; }
|
|
|
|
canvas:hover { cursor: crosshair;}
|
|
|
|
#ronin { width:100%; height:100%; overflow:hidden; background:#000; background-image:url(../media/grid_20.png);}
|
|
#surface { width:100vw; height:100vh; overflow:hidden; position:fixed; left:0px; top:0px; background:#efefef; border-radius:3px;}
|
|
#surface .layer { position:absolute; top:0px; left:0px; width:100%; height:100%;}
|
|
#overlay { position:absolute; z-index:1000;}
|
|
#widget { color:#efefef; position:absolute; font-size:10px; line-height:30px;}
|
|
#widget .cursor { float:right;}
|
|
|
|
#commander { display:none; z-index: 2000; position:fixed; }
|
|
#commander.visible { display:block; }
|
|
#commander.hidden { display:none; }
|
|
#commander input { background:black; padding:5px 15px; position:fixed; bottom:0; color:white; font-size:12px; left:0; border:0; width:calc(100vw); cursor:pointer; display:block;}
|
|
#commander input:before { content:"input"; color:red;}
|
|
|
|
#commander_hint { background: black;position: fixed;bottom: 27px;padding: 5px 15px 0 15px;line-height: 17px;font-size: 10px;width: 100vw;color: #999;}
|
|
#commander_hint .module { color:#ffffff; display:inline-block; margin-right:10px;}
|
|
#commander_hint .param { font-style: italic;}
|
|
#commander_hint .param:after { content:", "; }
|
|
#commander_hint .param:last-child:after { content:"";}
|
|
#commander_hint .value { color:#ff0000;}
|
|
#commander_hint .value:after { content:", "; color:#999; }
|
|
#commander_hint .value:last-child:after { content:"";}
|
|
#commander_hint .variable_key { color:#ccc; font-weight:bold;}
|
|
#commander_hint .variable_value { color:#ccc;} |