2024-09-19 22:55:09 +10:00
|
|
|
@font-face {
|
|
|
|
font-family: "JetBrainsMono-Regular";
|
|
|
|
src: url("JetBrainsMono-Regular.woff2");
|
|
|
|
}
|
2024-10-11 10:02:38 +11:00
|
|
|
:root {
|
|
|
|
--bs-heading-color: var(--bs-gray-100);
|
|
|
|
}
|
|
|
|
.modal {
|
|
|
|
--bs-modal-color: var(--bs-gray-100);
|
|
|
|
}
|
2024-07-21 17:01:56 +10:00
|
|
|
html {
|
|
|
|
position: absolute;
|
|
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
border: solid black 10px;
|
|
|
|
margin: 0px;
|
|
|
|
background-color: black;
|
|
|
|
position: absolute;
|
|
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
|
|
}
|
2024-08-21 21:28:27 +10:00
|
|
|
.vpanelwrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 1fr 4px 1fr;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-07-21 17:01:56 +10:00
|
|
|
}
|
2024-08-21 21:28:27 +10:00
|
|
|
.hpanelwrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 4px 1fr;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.dragging.vpanelwrapper {
|
|
|
|
cursor: row-resize;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.dragging.hpanelwrapper {
|
|
|
|
cursor: col-resize;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.vdivider {
|
|
|
|
min-height: 4px;
|
|
|
|
background: grey;
|
|
|
|
cursor: row-resize;
|
|
|
|
}
|
|
|
|
.hdivider {
|
|
|
|
min-height: 4px;
|
|
|
|
background: grey;
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
.vpanel {
|
|
|
|
min-width: 0px;
|
|
|
|
min-height: 0px;
|
|
|
|
}
|
|
|
|
.hpanel {
|
|
|
|
min-width: 0px;
|
|
|
|
min-height: 0px;
|
2024-07-21 17:01:56 +10:00
|
|
|
}
|
|
|
|
.toplevel {
|
|
|
|
position: absolute;
|
|
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
|
|
}
|
|
|
|
.hterminal {
|
|
|
|
min-width: 10px;
|
|
|
|
min-height: 10px;
|
|
|
|
border: solid grey 1px;
|
|
|
|
padding: 2px;
|
2024-08-21 21:28:27 +10:00
|
|
|
height: 100%;
|
2024-07-21 17:01:56 +10:00
|
|
|
}
|
2024-09-19 22:55:09 +10:00
|
|
|
.toplevel .xterm .xterm-rows {
|
|
|
|
font-family: "JetBrainsMono-Regular", monospace, serif;
|
|
|
|
font-variant-ligatures: none;
|
|
|
|
}
|
2024-10-05 19:28:39 +10:00
|
|
|
.editornav {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.editorarea {
|
|
|
|
color: white;
|
2024-10-12 00:02:11 +11:00
|
|
|
min-width: 1px;
|
|
|
|
min-height: 1px;
|
|
|
|
}
|
|
|
|
.cm-editor {
|
|
|
|
min-width: 1px;
|
|
|
|
min-height: 1px;
|
2024-10-05 19:28:39 +10:00
|
|
|
}
|
2024-11-22 23:52:49 +11:00
|
|
|
.htmlview {
|
|
|
|
margin: 10px;
|
|
|
|
min-width: 1px;
|
|
|
|
min-height: 1px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2024-12-09 23:01:27 +11:00
|
|
|
.termtreewrapper {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
min-height: 1px;
|
|
|
|
}
|