78 lines
1.3 KiB
CSS
78 lines
1.3 KiB
CSS
body {
|
|
background-color: darkolivegreen;
|
|
}
|
|
.panels {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.panels > div {
|
|
border: 1px solid black;
|
|
background-color: darkslategray;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
color: rgb(75, 185, 75);
|
|
}
|
|
.panels > div h2 {
|
|
background-color: gray;
|
|
border-bottom: 4px solid darkolivegreen;
|
|
color: black;
|
|
}
|
|
canvas {
|
|
background-color: black;
|
|
}
|
|
textarea, .raw-data {
|
|
background-color: rgb(41, 59, 10);
|
|
color: rgb(75, 185, 75);
|
|
width: 250px;
|
|
height: 75px;
|
|
font-size: x-small;
|
|
border: 1px solid grey;
|
|
overflow: auto;
|
|
font-family: monospace;
|
|
}
|
|
.bit-wrong {
|
|
font-weight: bolder;
|
|
color: red;
|
|
}
|
|
.bit-unexpected {
|
|
color: green;
|
|
}
|
|
ol {
|
|
overflow: auto;
|
|
height: 75px;
|
|
background-color: rgb(41, 59, 10);
|
|
color: rgb(75, 185, 75);
|
|
border: 1px solid grey;
|
|
font-size: x-small;
|
|
font-family: monospace;
|
|
width: 250px;
|
|
}
|
|
|
|
#selected-samples {
|
|
width: 200px;
|
|
}
|
|
.low-high-set {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: space-between;
|
|
}
|
|
.low-high-set .max {
|
|
color: yellow;
|
|
font-style: bold;
|
|
}
|
|
.low-high-set .highest {
|
|
color: rgb(207, 207, 21);
|
|
}
|
|
.low-high-set .low {
|
|
min-width: 45px;
|
|
text-align: center;
|
|
}
|
|
.low-high-set .info {
|
|
min-width: 45px;
|
|
text-align: right;
|
|
}
|
|
.low-high-set .high {
|
|
min-width: 45px;
|
|
text-align: center;
|
|
} |