therminator/data/style.css
2023-12-18 15:49:09 +02:00

40 lines
646 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;
padding: 1rem 2rem;
}
#mv,
#ui {
display: inline-block;
}
#error-tempA,
#error-tempB {
color: red !important;
}
.chart-container {
position: relative;
height: 20vh;
width: 40vw;
padding: 1em;
}
#chart-small {
display: initial;
}
#chart-large {
display: none;
}
@media only screen and (min-width: 1480px) {
#chart-small {
display: none;
}
#chart-large {
display: initial;
}
}