mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
9173bff1ba
Restrict element types and global styling to improve embedability
55 lines
698 B
SCSS
55 lines
698 B
SCSS
.inset {
|
|
margin: 5px 10px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: auto;
|
|
}
|
|
|
|
.heading {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.subHeading {
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.debugger {
|
|
font-size: 12px;
|
|
width: 590px;
|
|
}
|
|
|
|
.debugger pre {
|
|
font-size: 9px;
|
|
background: white;
|
|
color: black;
|
|
padding: 3px;
|
|
margin: 2px;
|
|
border: 1px inset;
|
|
}
|
|
|
|
.debugger button,
|
|
.debugger input {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.debugger input[type="text"] {
|
|
border: 1px inset;
|
|
}
|
|
|
|
.debugger hr {
|
|
color: #c4c1a0;
|
|
}
|