therminator/data/style.css

82 lines
1.3 KiB
CSS
Raw Normal View History

@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");
2023-12-23 17:49:32 +00:00
* {
font-family: "IBM Plex Mono", monospace;
}
body {
background-color: rgb(50, 50, 50);
color: white;
padding: 1rem 2rem;
}
2023-12-19 20:45:27 +00:00
#du,
#cu {
2023-12-18 13:49:09 +00:00
display: inline-block;
2023-12-19 20:45:27 +00:00
padding-right: 3rem;
}
2023-12-23 17:49:32 +00:00
button {
background-color: white;
border: 1px rgb(0, 0, 0);
color: rgb(0, 0, 0);
text-align: center;
text-decoration: none;
display: inline-block;
}
2023-12-23 17:49:32 +00:00
input {
background-color: rgb(70, 70, 70);
border: none;
color: white;
padding: 5px 0;
padding-left: 5px;
font-size: 15px;
}
select {
border: 1px black;
background-color: white;
color: black;
padding: 5px;
}
button:disabled,
button[disabled] {
display: none;
}
#record, #recInfo {
display: inline-grid;
grid-template-columns: auto 1fr;
grid-gap: 10px;
align-items: center;
}
#timedCheck {
display: inline-block;
}
#timedCheck label {
padding-left: 8px;
}
#timedSettings {
display: none;
padding: 0 9.5rem;
}
2023-12-18 13:49:09 +00:00
#error-tempA,
#error-tempB {
color: red !important;
}
2023-12-18 13:49:09 +00:00
.chart-container {
position: relative;
2023-12-18 13:49:09 +00:00
height: 20vh;
width: 40vw;
padding: 1em;
}
2023-12-23 17:49:32 +00:00
@keyframes blink {
50% {
opacity: 0.0;
}
}
.blinking {
animation: blink 1s step-start 0s infinite;
}