13 lines
926 B
CSS
13 lines
926 B
CSS
body { margin:0px; padding:0px; overflow:hidden; font-family:"input_mono_regular",courier,monospace; background:000; -webkit-app-region: drag; -webkit-user-select: none; font-size:12px;}
|
|
*:focus {outline: none; }
|
|
|
|
yu { display:block; }
|
|
|
|
:root { --background: "#222"; --f_high: "#fff";--f_med: "#777";--f_low: "#444";--f_inv: "#000";--b_high: "#000";--b_med: "#affec7";--b_low: "#000";--b_inv: "#affec7"; }
|
|
|
|
#ronin { background:var(--b_low); height: 100vh; width:100vw; }
|
|
#ronin #commander { z-index: 9000; top: 15px; position: absolute; transition: all 150ms; left: 15px; width: calc(50vw - 60px); height: calc(100vh - 60px); padding: 15px; border-right: 1px solid #333;}
|
|
#ronin #commander textarea { background: none; width: 100%; height: calc(100vh - 75px); resize: none; font-size: 12px;color: white; }
|
|
#ronin #commander div#status { color:#555; }
|
|
|
|
#ronin canvas#surface { background:red; position: absolute; left:50vw; } |