apple2js/js/components/css/Debugger.module.css
Will Scullin 466a7eed78
Cheap and cheerful debugger (#135)
* Cheap and cheerful debugger

* Try to manage focus
2022-06-19 19:42:34 -07:00

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;
}