worldwideportal/styles.css

88 lines
1.6 KiB
CSS
Raw Permalink Normal View History

@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;
}
.vpanelwrapper {
display: grid;
grid-template-rows: 1fr 4px 1fr;
width: 100%;
height: 100%;
2024-07-21 17:01:56 +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;
height: 100%;
2024-07-21 17:01:56 +10:00
}
.toplevel .xterm .xterm-rows {
font-family: "JetBrainsMono-Regular", monospace, serif;
font-variant-ligatures: none;
}
.editornav {
color: white;
}
.editorarea {
color: white;
min-width: 1px;
min-height: 1px;
}
.cm-editor {
min-width: 1px;
min-height: 1px;
}