mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
29 lines
504 B
CSS
29 lines
504 B
CSS
.fileViewer {
|
|
width: 60em;
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.textViewer {
|
|
background: white;
|
|
font-family: monospace;
|
|
width: 57em;
|
|
padding: 1em;
|
|
height: 60vh;
|
|
line-height: 1em;
|
|
overflow-y: auto;
|
|
border: 2px inset #f0edd0;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.hiresPreview {
|
|
border: 2px inset #f0edd0;
|
|
width: 560px;
|
|
height: 384px;
|
|
min-width: 560px;
|
|
min-height: 384px;
|
|
}
|