mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
466a7eed78
* Cheap and cheerful debugger * Try to manage focus
57 lines
655 B
CSS
57 lines
655 B
CSS
.debugger pre {
|
|
font-size: 9px;
|
|
background: white;
|
|
color: black;
|
|
padding: 3px;
|
|
margin: 2px;
|
|
border: 1px inset;
|
|
}
|
|
|
|
.debugger input {
|
|
border: 1px inset;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.inset {
|
|
margin: 5px 10px;
|
|
width: auto;
|
|
}
|
|
|
|
.heading {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.controls {
|
|
padding: 3px 0;
|
|
margin: 2px 0;
|
|
}
|
|
|
|
.subHeading {
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.zeroPage {
|
|
width: 50em;
|
|
}
|
|
|
|
.trace {
|
|
width: 50em;
|
|
}
|
|
|
|
.stack {
|
|
width: 10em;
|
|
}
|