21 lines
471 B
CSS
21 lines
471 B
CSS
|
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
|
||
|
body {
|
||
|
background-color: rgb(50, 50, 50);
|
||
|
color: white;
|
||
|
font-family: "IBM Plex Mono", monospace;
|
||
|
white-space: nowrap;
|
||
|
padding: 1rem 2rem;
|
||
|
}
|
||
|
#mv, #ui, #chartA, #chartB {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
#error-tempA, #error-tempB {
|
||
|
color: red !important;
|
||
|
}
|
||
|
.chart-container {
|
||
|
position: relative;
|
||
|
height: 40vh;
|
||
|
width: 80vw;
|
||
|
}
|