mirror of
https://github.com/geohot/qira
synced 2025-02-21 00:44:42 +03:00
128 lines
1.7 KiB
CSS
128 lines
1.7 KiB
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
width: 400%; /* hella wide */
|
|
}
|
|
|
|
/* universal things */
|
|
input {
|
|
font-family: monospace;
|
|
}
|
|
|
|
td {
|
|
font-family: monospace;
|
|
}
|
|
|
|
body {
|
|
margin: 0px 0px 0px 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
#container2 {
|
|
/* wtf?? */
|
|
/* max-height: 15%;*/
|
|
}
|
|
|
|
/* controls */
|
|
|
|
#controls {
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.control {
|
|
font-family: monospace;
|
|
font-size: 12pt;
|
|
/*width: 165px;*/
|
|
border: 1px solid black;
|
|
/*padding: 2px;
|
|
margin: 3px;*/
|
|
}
|
|
|
|
#control_fork {
|
|
/*margin-left: 0px;
|
|
width: 50px;*/
|
|
}
|
|
|
|
#control_changeeditor {
|
|
/*margin-left: 0px;
|
|
width: 30px;
|
|
margin-right: 0px;*/
|
|
}
|
|
|
|
#control_analysis {
|
|
/*margin-left: 0px;
|
|
width: auto;
|
|
padding-left: 5px;
|
|
padding-right: 5px;*/
|
|
}
|
|
|
|
/* everything in the right panel */
|
|
|
|
#onlypanel {
|
|
width: 620px;
|
|
height: 100%;
|
|
/*background-color: #AAAAAA;*/
|
|
/*border: 1px solid black;*/
|
|
border-left: 1px solid black;
|
|
border-right: 1px solid black;
|
|
padding: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.panelthing {
|
|
border: 1px solid gray;
|
|
background-color: #DDDDDD;
|
|
}
|
|
|
|
/* instruction dump */
|
|
|
|
#static {
|
|
padding: 5px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#idump {
|
|
height: 270px;
|
|
/*padding: 5px;
|
|
overflow: hidden;
|
|
width: 614px;*/
|
|
|
|
padding: 5px;
|
|
overflow-y: hidden;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
|
|
.container {
|
|
background-color: #AAAAAA;
|
|
}
|
|
|
|
.container:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.col {
|
|
float: left;
|
|
}
|
|
|
|
#container0 {
|
|
height: 100%;
|
|
}
|
|
|
|
#vtimelinebox {
|
|
padding-top: 4px;
|
|
height: 100%;
|
|
width: 110px;
|
|
/*background-color: #AAAAAA;*/
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
box-sizing: border-box;
|
|
}
|
|
|