You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
282 lines
4.8 KiB
CSS
282 lines
4.8 KiB
CSS
.level {
|
|
height: 100%;
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.gutter {
|
|
background-color: #eee;
|
|
|
|
background-repeat: no-repeat;
|
|
background-position: 50%;
|
|
}
|
|
|
|
.gutter.gutter-vertical {
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
|
|
}
|
|
|
|
.gutter.gutter-horizontal {
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
|
|
}
|
|
|
|
.inventory-panel, .exercise-panel, .doc-panel, .introduction-panel {
|
|
height: 100%;
|
|
overflow: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.infoview {
|
|
padding-top: 1em;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.infoview, .exercise-statement {
|
|
padding-left: .5em;
|
|
padding-right: .5em;
|
|
}
|
|
|
|
.conclusion {
|
|
padding: 1em;
|
|
}
|
|
|
|
.infoview {
|
|
padding-top: 0em;
|
|
}
|
|
|
|
.exercise {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
|
|
.codeview {
|
|
flex: 1 1 auto;
|
|
min-height: 192px;
|
|
|
|
}
|
|
|
|
.exercise h4 {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.input-mode-switch {
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
}
|
|
|
|
.doc-panel {
|
|
background: #fafafa;
|
|
}
|
|
|
|
.doc-panel li {
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.12); /* This should be teh same colour as `divider` in Inventory.tsx */
|
|
}
|
|
|
|
.doc-panel li:first-of-type {
|
|
border-top: 1px solid rgb(0, 0, 0, 0.12); /* This should be teh same colour as `divider` in Inventory.tsx */
|
|
}
|
|
|
|
/* fix as Mui seems to set this to `nowrap`. */
|
|
.MuiAccordionDetails-root {
|
|
white-space: normal;
|
|
}
|
|
|
|
/* TODO: Adjust Mathjax styling. 1em vertical is excessive. */
|
|
mjx-container[jax="CHTML"][display="true"] {
|
|
margin: 0.2em 0 !important;
|
|
}
|
|
|
|
|
|
/* Styling tables for Markdown */
|
|
.chat-panel table, .chat-panel th, .chat-panel td {
|
|
/* border: 1px solid rgb(0, 0, 0, 0.12); */
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.chat-panel th, .chat-panel td {
|
|
padding-left: .5em;
|
|
padding-right: .5em;
|
|
}
|
|
|
|
span.katex-display {
|
|
margin: 0;
|
|
}
|
|
|
|
p, table {
|
|
margin-block-start: 1em;
|
|
margin-block-end: 1em;
|
|
margin-inline-start: 0px;
|
|
margin-inline-end: 0px;
|
|
}
|
|
|
|
/* Prevent white spaces break inside a table. */
|
|
td code {
|
|
white-space:nowrap;
|
|
}
|
|
|
|
/* Styling in the editor while typing abbreviations such as "\alpha" */
|
|
.abbreviation {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Styling in the left margin of the editor when processing */
|
|
.processing {
|
|
background: linear-gradient(
|
|
to right,
|
|
rgba(255, 165, 0, 1) 0%,
|
|
rgba(255, 165, 0, 1) 30%,
|
|
transparent 30%,
|
|
transparent 100%
|
|
);
|
|
}
|
|
|
|
/* Styling in the left margin of the editor on error */
|
|
.glyph-margin-error {
|
|
background: rgba(255, 0, 0, 1);
|
|
}
|
|
|
|
/***************************************/
|
|
/* TODO: For development purposes only */
|
|
/***************************************/
|
|
/* .doc-panel {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
.main-panel {
|
|
border: 1px solid rgb(41, 112, 0);
|
|
}
|
|
|
|
.info-panel {
|
|
border: 1px solid rgb(230, 122, 0);
|
|
}
|
|
|
|
.chat-panel {
|
|
border: 1px solid rgb(192, 18, 178);
|
|
}
|
|
|
|
.exercise {
|
|
border: 1px solid rgb(102, 243, 67);
|
|
}
|
|
|
|
.codeview {
|
|
border: 1px solid rgb(98, 148, 255);
|
|
}
|
|
|
|
.main-grid {
|
|
border: 1px solid rgb(255, 0, 0);
|
|
margin: 1px;
|
|
} */
|
|
|
|
.exercise {
|
|
height: 100%;
|
|
}
|
|
|
|
.chat {
|
|
flex: 1;
|
|
overflow-y: scroll;
|
|
margin-left: .5em;
|
|
margin-right: .5em;
|
|
}
|
|
|
|
.chat-panel {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.chat-panel .button-row {
|
|
/* width:100%; */
|
|
margin-left: .5em;
|
|
margin-right: .5em;
|
|
min-height: 2.5em;
|
|
border-top: 0.1em solid #aaa;
|
|
}
|
|
|
|
.chat-panel .btn {
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
margin-left: .5rem;
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
/* .exercise-panel {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 100%;
|
|
} */
|
|
|
|
.commandline-interface {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.command-line {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.commandline-interface .content {
|
|
flex: 1 1 auto;
|
|
overflow-y: scroll;
|
|
padding: .5em;
|
|
}
|
|
|
|
/* TODO: Create a nice style and move this to a better place */
|
|
|
|
.exercise .command {
|
|
/* background-color: rgb(167, 167, 167); */
|
|
border: 1px solid #bbb;
|
|
background-color: #eee;
|
|
padding: .5rem;
|
|
border-radius: .5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.exercise .step {
|
|
/* background-color: #e6f0f4; */
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
border-radius: 0.5em;
|
|
padding: 0.5em;
|
|
/* border: 3px dotted rgb(88, 131, 24); */
|
|
}
|
|
|
|
.chat .message {
|
|
margin-left: .5em;
|
|
margin-right: .5em;
|
|
}
|
|
|
|
.exercise .step.selected, .chat .selected {
|
|
/* border: 3px solid #5191d1; */
|
|
box-shadow: .0em .0em .4em .1em var(--clr-primary);
|
|
}
|
|
|
|
.introduction-panel {
|
|
max-width: 900px;
|
|
width: 80%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.impressum {
|
|
background-color: #fff;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 1;
|
|
padding: .5rem;
|
|
}
|